> ## Documentation Index
> Fetch the complete documentation index at: https://docs.versuno.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# versuno prompts init

> Scaffold the .versuno/ workspace directory in the current folder.

```
versuno prompts init
```

Creates a `.versuno/` directory in the current working directory and generates the standard folder structure for each asset type. Also writes a `.versuno/.gitignore` that excludes the ephemeral `.temp/` directory.

If `.versuno/` already exists the command exits without making any changes.

## Behaviour

Creates the following directories:

```
.versuno/
  contexts/
  prompts/
  personas/
  system-prompts/
  skills/
  projects/
  .temp/
  .gitignore   ← excludes .temp/
```

## Example

```bash theme={null}
cd my-project
versuno prompts init
# → Initialized .versuno/ in /path/to/my-project
```

## Next steps printed on success

```
versuno login
versuno teams list
versuno switch <team-id>
versuno prompts assets list
```
