@vibe-agent-toolkit/vat-development-agents
v0.1.35
Published
VAT development agents - dogfooding the vibe-agent-toolkit
Maintainers
Readme
@vibe-agent-toolkit/vat-development-agents
VAT 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.
Agents
agent-generator
Status: Design Complete (Phase 1.5) Purpose: Helps users create new VAT agents through adaptive 4-phase conversation
Guides users through:
- GATHER - Understand problem and success criteria
- ANALYZE - Identify agent pattern, extract requirements
- DESIGN - Choose LLM, tools, prompts, resources
- GENERATE - Create validated agent package
resource-optimizer
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.
Package Structure
@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 manifestInstallation
As NPM Package
npm install @vibe-agent-toolkit/vat-development-agentsInstalling the Skill
This package includes a distributable Claude Code skill called vibe-agent-toolkit that provides guidance on using VAT for agent creation and development.
Install from npm:
vat skills install npm:@vibe-agent-toolkit/vat-development-agentsInstall from local directory (development):
vat skills install ./packages/vat-development-agentsVerify installation:
vat skills list --installedThe vibe-agent-toolkit skill will be installed to ~/.claude/plugins/vibe-agent-toolkit/ and will appear in Claude Code after restarting or running /reload-skills.
What the skill includes:
- VAT overview and use cases
- Agent creation guide (using agent-generator)
- CLI workflow documentation
- Links to agent authoring and orchestration guides
- Best practices for portable agents
Usage
As NPM Package
import agentGenerator from '@vibe-agent-toolkit/vat-development-agents/agents/agent-generator';Direct Agent Access
# Validate agent-generator's own manifest
cd packages/vat-development-agents
bun run validateDevelopment Status
| 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+ |
Keywords
vat-agent- Discoverable vianpm search vat-agentvibe-agent- Alternative namespaceagent-bundle- Contains multiple agentsdevelopment-tools- Developer tooling
License
MIT © VAT Team
