@vibe-agent-toolkit/vat-development-agents 0.1.23-rc.7 → 0.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+
3
+ All notable changes to the vibe-agent-toolkit marketplace will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/).
7
+
8
+ ## [Unreleased]
9
+
10
+ ### Added
11
+ - Initial marketplace publish via `vat claude marketplace publish`
12
+ - Skills: vibe-agent-toolkit, distribution, resources, audit, authoring, debugging, install, org-admin
@@ -1,117 +1,47 @@
1
- # @vibe-agent-toolkit/vat-development-agents
1
+ # vibe-agent-toolkit Skills Marketplace
2
2
 
3
- **VAT Development Agents** - Dogfooding the vibe-agent-toolkit
3
+ Development agents and skills for building, testing, and distributing AI agent skills with [vibe-agent-toolkit](https://github.com/jdutton/vibe-agent-toolkit) (VAT).
4
4
 
5
- This package contains agents used for developing the Vibe Agent Toolkit itself. These agents validate schemas, generate new agents, optimize resources, and more.
5
+ **What you get:** 8 skills that teach Claude Code how to build portable agent skills, package them into Claude plugins, publish marketplaces, validate resources, and debug issues — all from within your editor.
6
6
 
7
- ## Agents
7
+ ## Install
8
8
 
9
- ### agent-generator
9
+ In Claude Code, run:
10
10
 
11
- **Status:** Design Complete (Phase 1.5)
12
- **Purpose:** Helps users create new VAT agents through adaptive 4-phase conversation
13
-
14
- Guides users through:
15
- 1. **GATHER** - Understand problem and success criteria
16
- 2. **ANALYZE** - Identify agent pattern, extract requirements
17
- 3. **DESIGN** - Choose LLM, tools, prompts, resources
18
- 4. **GENERATE** - Create validated agent package
19
-
20
- [Read full design →](./agents/agent-generator/README.md)
21
-
22
- ### resource-optimizer
23
-
24
- **Status:** Scoped (Phase 1.5)
25
- **Purpose:** Analyzes agent resources for context efficiency
26
-
27
- Identifies opportunities to improve agent resources following Anthropic's "smallest high-signal tokens" principle.
28
-
29
- [Read scope document →](./agents/resource-optimizer/SCOPE.md)
30
-
31
- ## Package Structure
32
-
33
- ```
34
- @vibe-agent-toolkit/vat-development-agents/
35
- ├── agents/
36
- │ ├── agent-generator/ # Design complete
37
- │ │ ├── agent.yaml # Validated manifest
38
- │ │ ├── schemas/ # I/O schemas
39
- │ │ ├── prompts/ # System/user prompts
40
- │ │ ├── examples/ # Example usage
41
- │ │ └── README.md # Full documentation
42
- │ └── resource-optimizer/ # Scoped only
43
- │ └── SCOPE.md # Design scope
44
- └── package.json # NPM package manifest
45
- ```
46
-
47
- ## Installation
48
-
49
- ### As NPM Package
50
-
51
- ```bash
52
- npm install @vibe-agent-toolkit/vat-development-agents
53
11
  ```
54
-
55
- ### Installing the Skill
56
-
57
- This package includes a distributable Claude Code skill called `vibe-agent-toolkit` that provides guidance on using VAT for agent creation and development.
58
-
59
- **Install from npm:**
60
- ```bash
61
- vat skills install npm:@vibe-agent-toolkit/vat-development-agents
62
- ```
63
-
64
- **Install from local directory (development):**
65
- ```bash
66
- vat skills install ./packages/vat-development-agents
12
+ claude plugin marketplace add jdutton/vibe-agent-toolkit#claude-marketplace-next
13
+ claude plugin install vibe-agent-toolkit@vat-skills
67
14
  ```
68
15
 
69
- **Verify installation:**
70
- ```bash
71
- vat skills list --installed
72
- ```
16
+ Then start a new Claude Code session. Skills appear as `/vibe-agent-toolkit:skill-name`.
73
17
 
74
- The `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`.
18
+ ## Skills
75
19
 
76
- **What the skill includes:**
77
- - VAT overview and use cases
78
- - Agent creation guide (using agent-generator)
79
- - CLI workflow documentation
80
- - Links to agent authoring and orchestration guides
81
- - Best practices for portable agents
20
+ | Skill | When to use |
21
+ |-------|-------------|
22
+ | **vibe-agent-toolkit** | Router — agent creation, CLI commands, skill packaging, getting started |
23
+ | **distribution** | Build pipeline, npm publishing, marketplace publishing, plugin install |
24
+ | **resources** | Resource collections, frontmatter validation, link checking |
25
+ | **audit** | Plugin and skill validation with `vat audit` |
26
+ | **authoring** | SKILL.md structure, agent architecture, orchestration patterns |
27
+ | **debugging** | Reproduce bugs, test local fixes, validate with full build pipeline |
28
+ | **install** | Install/uninstall architecture reference for all deployment surfaces |
29
+ | **org-admin** | Anthropic org administration (Enterprise/Team admins, requires admin API key) |
82
30
 
83
- ## Usage
31
+ ## How it works
84
32
 
85
- ### As NPM Package
33
+ This branch is a **Claude plugin marketplace** — a structured directory that Claude Code can install directly from GitHub. No npm account or registry needed.
86
34
 
87
- ```javascript
88
- import agentGenerator from '@vibe-agent-toolkit/vat-development-agents/agents/agent-generator';
89
- ```
35
+ The marketplace is built from the [main branch](https://github.com/jdutton/vibe-agent-toolkit) source using `vat build` and published with `vat claude marketplace publish`. See the [Marketplace Distribution Guide](https://github.com/jdutton/vibe-agent-toolkit/blob/main/docs/guides/marketplace-distribution.md) for how to build and publish your own marketplace.
90
36
 
91
- ### Direct Agent Access
37
+ ## Running VAT
92
38
 
93
39
  ```bash
94
- # Validate agent-generator's own manifest
95
- cd packages/vat-development-agents
96
- bun run validate
40
+ vat <command> # Global install
41
+ npx vibe-agent-toolkit <command> # npm (no install)
42
+ bunx vibe-agent-toolkit <command> # Bun (no install)
97
43
  ```
98
44
 
99
- ## Development Status
100
-
101
- | Agent | Phase | Status |
102
- |-------|-------|--------|
103
- | agent-generator | 1.5 - Design | ✅ Complete |
104
- | resource-optimizer | 1.5 - Scope | ✅ Complete |
105
- | schema-validator | Planned | 📋 Phase 2 |
106
- | test-generator | Planned | 📋 Phase 2+ |
107
-
108
- ## Keywords
109
-
110
- - `vat-agent` - Discoverable via `npm search vat-agent`
111
- - `vibe-agent` - Alternative namespace
112
- - `agent-bundle` - Contains multiple agents
113
- - `development-tools` - Developer tooling
114
-
115
45
  ## License
116
46
 
117
- MIT © VAT Team
47
+ MIT
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vibe-agent-toolkit",
3
3
  "description": "Development agents and skills for building with vibe-agent-toolkit",
4
- "version": "0.1.23-rc.7",
4
+ "version": "0.1.23",
5
5
  "author": {
6
6
  "name": "vibe-agent-toolkit contributors"
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-agent-toolkit/vat-development-agents",
3
- "version": "0.1.23-rc.7",
3
+ "version": "0.1.23",
4
4
  "description": "VAT development agents - dogfooding the vibe-agent-toolkit",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -64,13 +64,13 @@
64
64
  "postinstall": "vat claude plugin install --npm-postinstall || exit 0"
65
65
  },
66
66
  "dependencies": {
67
- "@vibe-agent-toolkit/agent-schema": "0.1.23-rc.7",
68
- "@vibe-agent-toolkit/cli": "0.1.23-rc.7",
67
+ "@vibe-agent-toolkit/agent-schema": "0.1.23",
68
+ "@vibe-agent-toolkit/cli": "0.1.23",
69
69
  "yaml": "^2.8.2"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@types/node": "^25.0.3",
73
- "@vibe-agent-toolkit/resource-compiler": "0.1.23-rc.7",
73
+ "@vibe-agent-toolkit/resource-compiler": "0.1.23",
74
74
  "ts-patch": "^3.2.1",
75
75
  "typescript": "^5.7.3"
76
76
  },