Files
GLM-Tools-Skills-Agents/agents/community/toad/vtcode.dev.toml
uroma b60638f0a3 Add community skills, agents, system prompts from 22+ sources
Community Skills (32):
- jat: jat-start, jat-verify, jat-complete
- pi-mono: codex-cli, codex-5.3-prompting, interactive-shell
- picoclaw: github, weather, tmux, summarize, skill-creator
- dyad: 18 skills (swarm-to-plan, multi-pr-review, fix-issue, lint, etc.)
- dexter: dcf valuation skill

Agents (23):
- pi-mono subagents: scout, planner, reviewer, worker
- toad: 19 agent configs (Claude, Codex, Gemini, Copilot, OpenCode, etc.)

System Prompts (91):
- Anthropic: 15 Claude prompts (opus-4.6, code, cowork, etc.)
- OpenAI: 49 GPT prompts (gpt-5 series, o3, o4-mini, tools)
- Google: 13 Gemini prompts (2.5-pro, 3-pro, workspace, cli)
- xAI: 5 Grok prompts
- Other: 9 misc prompts (Notion, Raycast, Warp, Kagi, etc.)

Hooks (9):
- JAT hooks for session management, signal tracking, activity logging

Prompts (6):
- pi-mono templates for PR review, issue analysis, changelog audit

Sources analyzed: jat, ralph-desktop, toad, pi-mono, cmux, pi-interactive-shell,
craft-agents-oss, dexter, picoclaw, dyad, system_prompts_leaks, Prometheus,
zed, clawdbot, OS-Copilot, and more
2026-02-13 10:58:17 +00:00

63 lines
1.9 KiB
TOML

# Schema defined in agent_schema.py
# https://github.com/vinhnx/vtcode
identity = "vtcode.dev"
name = "VT Code"
short_name = "vtcode"
url = "https://github.com/vinhnx/vtcode"
protocol = "acp"
author_name = "Vinh Nguyen"
author_url = "https://github.com/vinhnx"
publisher_name = "Will McGugan"
publisher_url = "https://willmcgugan.github.io/"
type = "coding"
description = "Rust-based terminal coding agent with semantic code intelligence via Tree-sitter, ast-grep, and native Zed IDE integration via ACP."
tags = []
run_command."*" = "vtcode acp"
help = '''
# VT Code
**Semantic Coding Agent**
VT Code is a Rust-based terminal coding agent with semantic code intelligence and native support for the Agent Client Protocol.
## Key Features
- **Semantic Code Intelligence**:
- Tree-sitter integration for syntax-aware analysis
- ast-grep integration for semantic search
- Advanced token budget tracking
- **Multi-LLM Support**: Works with multiple LLM providers with automatic failover
- **Rich Terminal UI**: Real-time streaming in a beautiful TUI
- **Editor Integration**: Native support for Zed IDE via ACP
- **Security**: Defense-in-depth security model
## Smart Tools
- Built-in code analysis and refactoring
- File operations with semantic understanding
- Terminal command execution
- Lifecycle hooks for custom shell commands
## Agent Client Protocol (ACP)
VT Code integrates natively with Zed IDE and other ACP-compatible editors. The ACP standardizes communication between code editors and coding agents.
## Context Management
Efficient context curation with:
- Semantic search capabilities
- Token budget tracking
- Smart context window management
---
**GitHub**: https://github.com/vinhnx/vtcode
**Author**: Vinh Nguyen (@vinhnx)
'''
[actions."*".install]
command = "cargo install --git https://github.com/vinhnx/vtcode"
description = "Install VT Code via Cargo"