VAT development agents - dogfooding the vibe-agent-toolkit
npm install @vibe-agent-toolkit/vat-development-agentsVAT Development Agents - Dogfooding the vibe-agent-toolkit
This package contains agents used for developing the Vibe Agent Toolkit itself. These agents validate schemas, generate new agents, optimize resources, and more.
Status: Design Complete (Phase 1.5)
Purpose: Helps users create new VAT agents through adaptive 4-phase conversation
Guides users through:
1. GATHER - Understand problem and success criteria
2. ANALYZE - Identify agent pattern, extract requirements
3. DESIGN - Choose LLM, tools, prompts, resources
4. GENERATE - Create validated agent package
Status: Scoped (Phase 1.5)
Purpose: Analyzes agent resources for context efficiency
Identifies opportunities to improve agent resources following Anthropic's "smallest high-signal tokens" principle.
```
@vibe-agent-toolkit/vat-development-agents/
├── agents/
│ ├── agent-generator/ # Design complete
│ │ ├── agent.yaml # Validated manifest
│ │ ├── schemas/ # I/O schemas
│ │ ├── prompts/ # System/user prompts
│ │ ├── examples/ # Example usage
│ │ └── README.md # Full documentation
│ └── resource-optimizer/ # Scoped only
│ └── SCOPE.md # Design scope
└── package.json # NPM package manifest
`bash`
npm install @vibe-agent-toolkit/vat-development-agents
`javascript`
import agentGenerator from '@vibe-agent-toolkit/vat-development-agents/agents/agent-generator';
`bash`Validate agent-generator's own manifest
cd packages/vat-development-agents
bun run validate
| Agent | Phase | Status |
|-------|-------|--------|
| agent-generator | 1.5 - Design | ✅ Complete |
| resource-optimizer | 1.5 - Scope | ✅ Complete |
| schema-validator | Planned | 📋 Phase 2 |
| test-generator | Planned | 📋 Phase 2+ |
- vat-agent - Discoverable via npm search vat-agentvibe-agent
- - Alternative namespaceagent-bundle
- - Contains multiple agentsdevelopment-tools` - Developer tooling
-
MIT © VAT Team