| Crates.io | deputy |
| lib.rs | deputy |
| version | 0.2.12 |
| created_at | 2025-07-04 09:10:23.641608+00 |
| updated_at | 2025-08-03 13:03:23.37415+00 |
| description | An experimental terminal-based AI coding assistant that integrates directly with your filesystem and shell. Deputy leverages agentic LLM systems to read code, manipulate files, execute shell commands, and navigate projects. It provides a modular, permissioned workflow for safe, contextual, and automated developer assistance, supporting both OpenAI and Anthropic backends. |
| homepage | |
| repository | https://github.com/hgrsd/deputy |
| max_upload_size | |
| id | 1737666 |
| size | 1,330,428 |
A terminal-based AI coding assistant that actually works with your files and shell.

Deputy gives you an AI assistant that can:
No copying and pasting code snippets. No switching between terminal and browser. Just tell it what you want and it gets on with it.
cargo install deputy
Set your API key:
export ANTHROPIC_API_KEY=your_key_here
# or
export OPENAI_API_KEY=your_key_here
cd your-project
deputy
That's it. Deputy will scan your project and you can start chatting.
deputy --provider openai --model gpt-4o # Use OpenAI instead
deputy --yolo # Skip permission prompts
deputy --base-url http://localhost:8080/v1 # Custom API endpoint
deputy --config ./my-config.md # Use custom configuration file
Deputy asks before doing potentially destructive things. You can:
--yolo mode to skip prompts entirelyYou can specify a custom configuration file using the --config option:
deputy --config ./path/to/my-config.md
When using --config, Deputy will read ONLY that file and ignore the default search locations.
If no custom config is specified, Deputy loads configuration files in priority order (first found wins):
DEPUTY.md in your project root~/.deputy/DEPUTY.md for global configAGENTS.md in your project rootCLAUDE.md in your project root~/.claude/CLAUDE.md for global configThese files contain instructions that Deputy will follow during your session.
Issues and PRs welcome.
MIT