v2.9.4 (#669)
Co-authored-by: Clément Drouin <clement.drouin@mistral.ai> Co-authored-by: Jean-Baptiste Muscat <jeanbaptiste.muscatdupuis@mistral.ai> Co-authored-by: JeroenvdV <JeroenvdV@users.noreply.github.com> Co-authored-by: Kim-Adeline Miguel <51720070+kimadeline@users.noreply.github.com> Co-authored-by: Mathias Gesbert <mathias.gesbert@mistral.ai> Co-authored-by: Paul Cacheux <paul.cacheux@mistral.ai> Co-authored-by: Pierre Rossinès <pierre.rossines@mistral.ai> Co-authored-by: Simon Van de Kerckhove <simon.vandekerckhove@mistral.ai> Co-authored-by: Val <102326092+vdeva@users.noreply.github.com> Co-authored-by: Vincent G <10739306+VinceOPS@users.noreply.github.com> Co-authored-by: allansimon-mistral <allan.simon@ext.mistral.ai> Co-authored-by: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
parent
71f373c60c
commit
4972dd5694
50 changed files with 2892 additions and 842 deletions
14
README.md
14
README.md
|
|
@ -219,7 +219,7 @@ Simply run `vibe` to enter the interactive chat loop.
|
|||
- **Tool Output Toggle**: Press `Ctrl+O` to toggle the tool output view.
|
||||
- **Todo View Toggle**: Press `Ctrl+T` to toggle the todo list view.
|
||||
- **Debug Console**: Press `Ctrl+\` to toggle the debug console.
|
||||
- **Auto-Approve Toggle**: Press `Shift+Tab` to toggle auto-approve mode on/off.
|
||||
- **Agent Selection**: Press `Shift+Tab` to cycle through agents (default, plan, ...).
|
||||
|
||||
You can start Vibe with a prompt using the following command:
|
||||
|
||||
|
|
@ -227,8 +227,6 @@ You can start Vibe with a prompt using the following command:
|
|||
vibe "Refactor the main function in cli/main.py to be more modular."
|
||||
```
|
||||
|
||||
**Note**: The `--auto-approve` flag automatically approves all tool executions without prompting. In interactive mode, you can also toggle auto-approve on/off using `Shift+Tab`.
|
||||
|
||||
### Trust Folder System
|
||||
|
||||
Vibe includes a trust folder system to ensure you only run the agent in directories you trust. When you first run Vibe in a new directory which contains a `.vibe` subfolder, it may ask you to confirm whether you trust the folder.
|
||||
|
|
@ -412,7 +410,15 @@ Vibe supports multiple ways to configure your API keys:
|
|||
|
||||
### Custom System Prompts
|
||||
|
||||
You can create custom system prompts to replace the default one (`prompts/cli.md`). Create a markdown file in the `~/.vibe/prompts/` directory with your custom prompt content.
|
||||
You can create `AGENTS.md` files to add custom instructions. You can also replace the entire system prompt.
|
||||
|
||||
Place `AGENTS.md` files in:
|
||||
- `~/.vibe/AGENTS.md` — user-level instructions for all projects
|
||||
- Project directories — project-specific instructions, loaded from cwd up to the trust root
|
||||
|
||||
Priority: closer directories override more distant ones. Instructions in `AGENTS.md` override the default system prompt. Files are only loaded for trusted folders.
|
||||
|
||||
Custom system prompts entirely replace the default one (`prompts/cli.md`). Create a markdown file in the `~/.vibe/prompts/` directory with your custom prompt content.
|
||||
|
||||
To use a custom system prompt, set the `system_prompt_id` in your configuration to match the filename (without the `.md` extension):
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue