@softspark/ai-toolkit 4.0.0 → 4.0.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.
- package/CHANGELOG.md +20 -0
- package/README.md +6 -2
- package/app/.claude-plugin/plugin.json +1 -1
- package/kb/reference/architecture-overview.md +2 -2
- package/llms-full.txt +2 -2
- package/manifest.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## v4.0.1 — CI hotfix: README "What You Get" table counts (2026-05-06)
|
|
11
|
+
|
|
12
|
+
Patch release. Fixes CI failure on v4.0.0 main branch — three `tests/test_metadata_contracts.bats` cases failed because the `What You Get` table in `README.md` and the skill type table in `kb/reference/architecture-overview.md` still referenced pre-consolidation counts (32 task / 32 hybrid / 48 knowledge).
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **README.md `What You Get` table**: hybrid 32 → 30, knowledge 48 → 45 (task unchanged at 32; total 107).
|
|
17
|
+
- **`kb/reference/architecture-overview.md`**: same correction in the skill type table.
|
|
18
|
+
- **`manifest.json`**: skill subtype description updated from `(30 task + 31 hybrid + 46 knowledge)` to the correct `(32 task + 30 hybrid + 45 knowledge)`.
|
|
19
|
+
|
|
20
|
+
### Why
|
|
21
|
+
|
|
22
|
+
v4.0.0 release path missed these three count locations. They are gated by the metadata contract test suite, which I misread locally (the trailing `ok 1047` line is the *last test number*, not a pass count). Confirmed by re-running `bats tests/test_metadata_contracts.bats` directly, which shows three `not ok` failures.
|
|
23
|
+
|
|
24
|
+
### Process note
|
|
25
|
+
|
|
26
|
+
Lesson for future releases: always inspect `bats … 2>&1 | grep "^not ok"` rather than trusting tail of npm test. Updating the release-verification SOP separately.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
10
30
|
## v4.0.0 — Skill consolidation: 112 → 107, removes 5 overlapping skills (2026-05-06)
|
|
11
31
|
|
|
12
32
|
**Breaking release.** Five redundant skills removed; their substantive knowledge migrated into the surviving targets. Resolves the `/skills` listing truncation that v3.5.x partially addressed and removes user-facing overlap that made dispatch ambiguous.
|
package/README.md
CHANGED
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
+
## What's New in v4.0.1
|
|
18
|
+
|
|
19
|
+
CI hotfix for v4.0.0. Corrects skill subtype counts in `README.md` "What You Get" table and `kb/reference/architecture-overview.md` (hybrid 32 → 30, knowledge 48 → 45). The metadata contract tests caught the drift on CI; v4.0.0 release path missed three count locations. No skill catalog changes — see v4.0.0 below for the actual consolidation.
|
|
20
|
+
|
|
17
21
|
## What's New in v4.0.0
|
|
18
22
|
|
|
19
23
|
**Breaking release.** Skill catalog consolidated from 112 → 107: removes 5 redundant skills, merges their substantive knowledge into the surviving targets. Eliminates `/skills` truncation and removes overlap that confused agent dispatch.
|
|
@@ -138,8 +142,8 @@ See [CLI Reference](kb/reference/cli-reference.md) for all commands and options.
|
|
|
138
142
|
| Component | Count | Description |
|
|
139
143
|
|-----------|-------|-------------|
|
|
140
144
|
| `skills/` (task) | 32 | Slash commands: `/commit`, `/build`, `/deploy`, `/test`, `/mcp-builder`, ... |
|
|
141
|
-
| `skills/` (hybrid) |
|
|
142
|
-
| `skills/` (knowledge) |
|
|
145
|
+
| `skills/` (hybrid) | 30 | Slash commands with agent knowledge base |
|
|
146
|
+
| `skills/` (knowledge) | 45 | Domain knowledge auto-loaded by agents (includes 13 `<lang>-rules` skills) |
|
|
143
147
|
| `agents/` | 44 | Specialized agents across 10 categories |
|
|
144
148
|
| `hooks/` | 21 global + 5 skill-scoped | Quality gates, path safety, prompt governance, session lifecycle |
|
|
145
149
|
| `plugins/` | 11 packs | Opt-in domain bundles (security, research, frontend, enterprise, 6 language packs) |
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-toolkit",
|
|
3
3
|
"description": "Professional-grade Claude Code toolkit with persona presets, skill security auditor, expanded lifecycle hooks, experimental opt-in plugin packs, benchmark harvesting, and multi-tool support.",
|
|
4
|
-
"version": "4.0.
|
|
4
|
+
"version": "4.0.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SoftSpark",
|
|
7
7
|
"url": "https://github.com/softspark"
|
|
@@ -186,8 +186,8 @@ Three tiers determine how to approach a task:
|
|
|
186
186
|
| Type | Field | Invocation | Count |
|
|
187
187
|
|------|-------|-----------|-------|
|
|
188
188
|
| Task | `disable-model-invocation: true` | User via `/skill` only | 32 |
|
|
189
|
-
| Hybrid | (neither) | User via `/skill` + agent knowledge |
|
|
190
|
-
| Knowledge | `user-invocable: false` | Claude auto-loads |
|
|
189
|
+
| Hybrid | (neither) | User via `/skill` + agent knowledge | 30 |
|
|
190
|
+
| Knowledge | `user-invocable: false` | Claude auto-loads | 45 |
|
|
191
191
|
|
|
192
192
|
## Multi-Agent Execution
|
|
193
193
|
|
package/llms-full.txt
CHANGED
|
@@ -6274,8 +6274,8 @@ Three tiers determine how to approach a task:
|
|
|
6274
6274
|
| Type | Field | Invocation | Count |
|
|
6275
6275
|
|------|-------|-----------|-------|
|
|
6276
6276
|
| Task | `disable-model-invocation: true` | User via `/skill` only | 32 |
|
|
6277
|
-
| Hybrid | (neither) | User via `/skill` + agent knowledge |
|
|
6278
|
-
| Knowledge | `user-invocable: false` | Claude auto-loads |
|
|
6277
|
+
| Hybrid | (neither) | User via `/skill` + agent knowledge | 30 |
|
|
6278
|
+
| Knowledge | `user-invocable: false` | Claude auto-loads | 45 |
|
|
6279
6279
|
|
|
6280
6280
|
## Multi-Agent Execution
|
|
6281
6281
|
|
package/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.0.
|
|
2
|
+
"version": "4.0.1",
|
|
3
3
|
"components": {
|
|
4
4
|
"agents": {
|
|
5
5
|
"description": "44 specialized agents (orchestrator, backend, frontend, security, devops, etc.)",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"tags": ["core", "agents"]
|
|
10
10
|
},
|
|
11
11
|
"skills": {
|
|
12
|
-
"description": "107 skills (
|
|
12
|
+
"description": "107 skills (32 task + 30 hybrid + 45 knowledge)",
|
|
13
13
|
"path": "app/skills",
|
|
14
14
|
"target": ".claude/skills",
|
|
15
15
|
"type": "symlink",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softspark/ai-toolkit",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "AI coding toolkit: 107 skills, 44 agents, 12-editor write-through (Claude, Cursor, Windsurf, Copilot, Gemini, Cline, Roo, Aider, Augment, Antigravity, Codex, opencode), machine-enforced safety constitution, SARIF audit, signed npm provenance.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|