@vibe-agent-toolkit/vat-development-agents 0.1.28 → 0.1.29-rc.1

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.
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Added
11
+ - **`vat verify --consistency-check`** — post-build verification that skill distribution config in `vibe-agent-toolkit.config.yaml` and `package.json` are consistent. Detects skills missing from `package.json`, orphaned entries, and publish opt-out mismatches. Runs automatically as part of `vat verify`.
12
+
13
+ ### Fixed
14
+ - **Discovery scanner no longer traverses git worktrees** — `.worktrees/` and `.claude/worktrees/` added to `PERFORMANCE_POISON` exclusions, preventing the crawler from physically walking into worktree copies of the repo during scans.
15
+ - **System tests no longer flaky from vitest worker timeout** — refactored `skills-list.system.test.ts` to run CLI spawns once in `beforeAll` instead of 5 redundant full-project scans. Same coverage, 70% faster (90s → 27s), eliminates the `onTaskUpdate` timeout.
16
+
10
17
  ## [0.1.28] - 2026-04-14
11
18
 
12
19
  ### Fixed
@@ -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.28",
4
+ "version": "0.1.29-rc.1",
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.28",
3
+ "version": "0.1.29-rc.1",
4
4
  "description": "VAT development agents - dogfooding the vibe-agent-toolkit",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -18,7 +18,8 @@
18
18
  "authoring",
19
19
  "audit",
20
20
  "debugging",
21
- "install"
21
+ "install",
22
+ "org-admin"
22
23
  ],
23
24
  "replaces": {
24
25
  "plugins": [
@@ -64,13 +65,13 @@
64
65
  "postinstall": "vat claude plugin install --npm-postinstall || exit 0"
65
66
  },
66
67
  "dependencies": {
67
- "@vibe-agent-toolkit/agent-schema": "0.1.28",
68
- "@vibe-agent-toolkit/cli": "0.1.28",
68
+ "@vibe-agent-toolkit/agent-schema": "0.1.29-rc.1",
69
+ "@vibe-agent-toolkit/cli": "0.1.29-rc.1",
69
70
  "yaml": "^2.8.2"
70
71
  },
71
72
  "devDependencies": {
72
73
  "@types/node": "^25.0.3",
73
- "@vibe-agent-toolkit/resource-compiler": "0.1.28",
74
+ "@vibe-agent-toolkit/resource-compiler": "0.1.29-rc.1",
74
75
  "ts-patch": "^3.2.1",
75
76
  "typescript": "^5.7.3"
76
77
  },