@vibe-agent-toolkit/vat-development-agents 0.1.27 → 0.1.28-rc.2
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,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Fixed
|
|
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
|
+
|
|
10
13
|
## [0.1.27] - 2026-04-11
|
|
11
14
|
|
|
12
15
|
### Breaking
|
|
@@ -17,6 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
17
20
|
- `vat skills list npm:@scope/package` — inspect what skills are in an npm package without installing.
|
|
18
21
|
- `bun run pre-release` — pre-tag validation command that confirms CHANGELOG is stamped, no stale tags exist on remote, marketplace dry-run passes, and version section has content. Prevents failed CI publishes from unready state.
|
|
19
22
|
- `bun run bump-version` now auto-stamps CHANGELOG.md for stable versions — moves `[Unreleased]` content under a new `## [X.Y.Z] - date` heading. Safety guards: fails if `[Unreleased]` is empty, refuses to stamp if version already exists in CHANGELOG (prevents corruption from backward bumps or re-stamps). Skips for RC/prerelease versions.
|
|
23
|
+
- **Content-type routing** — auto-discovered files now route to `scripts/`, `templates/`, `assets/`, or `resources/` based on file extension instead of all going to `resources/`.
|
|
24
|
+
- **Skill files config** — declare `files` entries in `vibe-agent-toolkit.config.yaml` for build artifacts, unlinked files, or routing overrides. Supports default + per-skill merge with dest-based override. See `docs/guides/skill-files-and-routing.md`.
|
|
25
|
+
- **Deferred verification** — validation chain recognizes declared build artifacts at source time (deferred), enforces hard gates at build time (source must exist) and verify time (dest must exist in output).
|
|
26
|
+
- **`vat verify` files check** — post-build verification now confirms all `files[].dest` paths exist in the built output.
|
|
20
27
|
|
|
21
28
|
### Fixed
|
|
22
29
|
- **CHANGELOG check in pre-publish no longer skipped during `bun run validate`** — the CHANGELOG stamp check was incorrectly gated behind `--skip-git-checks` (a git check flag), but it's a content check. Now runs unconditionally.
|
|
@@ -6,23 +6,28 @@ Development agents and skills for building, testing, and distributing AI agent s
|
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### From the terminal
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
12
|
claude plugin marketplace add jdutton/vibe-agent-toolkit#claude-marketplace
|
|
13
13
|
claude plugin install vibe-agent-toolkit@vat-skills
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
+
### From within Claude Code
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
/plugin marketplace add jdutton/vibe-agent-toolkit#claude-marketplace
|
|
20
|
+
/plugin install vibe-agent-toolkit@vat-skills
|
|
21
|
+
```
|
|
22
|
+
|
|
16
23
|
### For your project (shared with team)
|
|
17
24
|
|
|
25
|
+
Add `--scope project` to write to `.claude/settings.json` (committed to git). Team members who clone the repo will be prompted to install the marketplace automatically.
|
|
26
|
+
|
|
18
27
|
```bash
|
|
19
28
|
claude plugin marketplace add jdutton/vibe-agent-toolkit#claude-marketplace --scope project
|
|
20
|
-
claude plugin install vibe-agent-toolkit@vat-skills
|
|
21
29
|
```
|
|
22
30
|
|
|
23
|
-
Project-scope writes to `.claude/settings.json` (committed to git). Team members
|
|
24
|
-
who clone the repo will be prompted to install the marketplace automatically.
|
|
25
|
-
|
|
26
31
|
### Update
|
|
27
32
|
|
|
28
33
|
```bash
|
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.28-rc.2",
|
|
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.
|
|
68
|
-
"@vibe-agent-toolkit/cli": "0.1.
|
|
67
|
+
"@vibe-agent-toolkit/agent-schema": "0.1.28-rc.2",
|
|
68
|
+
"@vibe-agent-toolkit/cli": "0.1.28-rc.2",
|
|
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.
|
|
73
|
+
"@vibe-agent-toolkit/resource-compiler": "0.1.28-rc.2",
|
|
74
74
|
"ts-patch": "^3.2.1",
|
|
75
75
|
"typescript": "^5.7.3"
|
|
76
76
|
},
|