@vibe-agent-toolkit/vat-development-agents 0.1.28-rc.3 → 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,9 +7,17 @@ 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
|
+
|
|
17
|
+
## [0.1.28] - 2026-04-14
|
|
18
|
+
|
|
10
19
|
### Fixed
|
|
11
|
-
- **Skill bundler no longer silently bundles gitignored files** —
|
|
12
|
-
- **`isGitIgnored()` now handles symlinks in gitignored directories** — when `git check-ignore` fails with "beyond a symbolic link" (exit 128), walks up ancestor directories to detect if any parent is gitignored. Fixes false negatives for paths like `data/symlink/file.md` where `data/` is gitignored.
|
|
20
|
+
- **Skill bundler no longer silently bundles gitignored files** — when a SKILL.md links to files inside a gitignored directory (e.g., `data/`), those files are now excluded from the bundle instead of being silently packaged and published. This includes files reached through symlinks in gitignored directories (e.g., OneDrive/shared drive mounts). Previously required manual `excludeReferencesFromBundle` workarounds; now handled automatically.
|
|
13
21
|
|
|
14
22
|
## [0.1.27] - 2026-04-11
|
|
15
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibe-agent-toolkit/vat-development-agents",
|
|
3
|
-
"version": "0.1.
|
|
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.
|
|
68
|
-
"@vibe-agent-toolkit/cli": "0.1.
|
|
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.
|
|
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
|
},
|