Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/vinhnx/vtcode/copilot-instructionsgit clone --depth 1 https://github.com/vinhnx/VTCodeWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02722 | $0.02722 |
| Opus 5 | $0.01361 | $0.01361 |
| Sonnet 5 | $0.00544 | $0.00544 |
| Haiku 4.5 | $0.00272 | $0.00272 |
Grade C, and why
VTCode copilot-instructions.md scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- For operations that are potentially destructive (e.g., `git reset --hard`, `git push --force`, `rm -rf`), require explicit confirmation: supply `confirm=true` in the tool input or include an explicit `--confirm` flag. How it starts
The opening of the file, as written. The whole thing — 263 lines — stays where its author put it; the contents beside it link to each section on GitHub.
VT Code Agent Guidelines
VT Code: Rust terminal coding agent with modular architecture, multi-LLM support (OpenAI, Anthropic, Gemini), tree-sitter parsing for 6+ languages.
Build & Test Commands
# Preferred (faster with cargo-nextest)
cargo nextest run # Run all tests (3-5x faster)
cargo nextest run -p vtcode-core # Single package
cargo t # Alias for nextest run
cargo tq # Quick profile (no retries)
# Standard cargo commands
cargo check # Fast compile check
cargo clippy # Lint (strict Clippy rules)
cargo fmt # Format code
# Fallback (if nextest unavailable)
cargo ts # Alias for standard cargo test
Architecture & Key Modules
- Workspace:
crates/codegen/vtcode-core/(library) +src/main.rs(binary) + 9 workspace crates - Core:
llm/(multi-provider),tools/(trait-based),config/(TOML-based) - Integrations: Tree-sitter, PTY execution, ACP/MCP protocol, Gemini/OpenAI/Anthropic APIs
Code Style & Conventions
- Naming: snake_case functions/vars, PascalCase types (standard Rust)
- Error Handling:
anyhow::Result<T>+anyhow::Context; NOunwrap() - Constants: Use
crates/codegen/vtcode-core/src/config/constants.rs(never hardcode, especially model IDs) - Config: Read from
vtcode.tomlat runtime - Docs: Markdown ONLY in
./docs/; usedocs/models.jsonfor latest LLM models - Formatting: 4-space indentation, early returns, simple variable names
- Ownership first: Prefer owned values and borrows; reach for
Rc<T>/Arc<T>only when multiple owners genuinely need to keep data alive - Shared ownership:
Rc<T>is single-threaded;Arc<T>is for cross-thread/task sharing. Prefer immutable sharing beforeRefCell,Mutex, orRwLock - Cycles: Use
Weak<T>/Arc::downgrade()for back-references or task-parent links so shared graphs can drop cleanly
See Also
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 263 lines · 2,722 tokens per session scan C 0df4969dd082
VTCode copilot-instructions.md is an instructions file published in the GitHub repository vinhnx/VTCode (825 stars, last pushed 2d ago), licensed Apache-2.0. It adds 2,722 tokens to every session, about $0.0136 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
unifly AGENTS.md
Instructions for hyperb1iss/unifly, covering agents.md, what this repository is, quick command reference, the canonical "before commit" gate and individual gates.
unifly CLAUDE.md
Instructions for hyperb1iss/unifly, a project described as: 🌐 Elegant UniFi network management CLI & TUI - for humans and agents.
warp AGENTS.md
AGENTS.md instructions for warpdotdev/warp, covering agents.md, development commands, build and run, running with local warp-server and connect to server on default port 8080.
psmux AGENTS.md
Instructions for psmux/psmux, covering agent instructions and test isolation.
terminal-browser AGENTS.md
Instructions for zenbu-labs/terminal-browser, a project described as: A browser inside your terminal.
pixtuoid copilot-instructions.md
Instructions for IvanWng97/pixtuoid, covering github copilot instructions — pixtuoid, architecture invariants (never break these), conventions and build & test.