@vibe-agent-toolkit/vat-development-agents 0.1.28-rc.2 → 0.1.28-rc.3
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.
|
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
### Fixed
|
|
11
11
|
- **Skill bundler no longer silently bundles gitignored files** — `walkLinkGraph` now checks `isGitIgnored()` before bundling linked files. Gitignored targets are excluded with reason `'gitignored'`, preventing accidental data leaks when SKILL.md links reference files in gitignored directories (e.g., `data/`).
|
|
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.
|
|
12
13
|
|
|
13
14
|
## [0.1.27] - 2026-04-11
|
|
14
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibe-agent-toolkit/vat-development-agents",
|
|
3
|
-
"version": "0.1.28-rc.
|
|
3
|
+
"version": "0.1.28-rc.3",
|
|
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.28-rc.
|
|
68
|
-
"@vibe-agent-toolkit/cli": "0.1.28-rc.
|
|
67
|
+
"@vibe-agent-toolkit/agent-schema": "0.1.28-rc.3",
|
|
68
|
+
"@vibe-agent-toolkit/cli": "0.1.28-rc.3",
|
|
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.28-rc.
|
|
73
|
+
"@vibe-agent-toolkit/resource-compiler": "0.1.28-rc.3",
|
|
74
74
|
"ts-patch": "^3.2.1",
|
|
75
75
|
"typescript": "^5.7.3"
|
|
76
76
|
},
|