@softspark/ai-toolkit 4.30.3 → 4.31.0
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 +34 -0
- package/README.md +10 -10
- package/app/.claude-plugin/plugin.json +1 -1
- package/app/agents/code-reviewer.md +14 -0
- package/app/agents/frontend-specialist.md +27 -24
- package/app/agents/infrastructure-validator.md +2 -2
- package/app/claude-app/skills/ai-toolkit-rules/SKILL.md +44 -1
- package/app/personas/frontend-lead.md +20 -12
- package/app/rules/claude-toolkit-rules.md +4 -1
- package/app/rules/edit-discipline.md +37 -0
- package/app/skills/app-builder/SKILL.md +37 -6
- package/app/skills/claude-toolkit-rules/SKILL.md +37 -0
- package/app/skills/design-engineering/SKILL.md +87 -102
- package/app/skills/design-engineering/reference/animation-recipes.md +67 -0
- package/app/skills/design-engineering/reference/component-craft.md +28 -0
- package/app/skills/documentation-standards/SKILL.md +1 -1
- package/app/skills/edit-discipline/SKILL.md +50 -0
- package/app/skills/git-conventions/SKILL.md +18 -0
- package/app/skills/output-mode/SKILL.md +41 -0
- package/app/skills/quality-gates/SKILL.md +23 -0
- package/app/skills/review/SKILL.md +10 -0
- package/kb/procedures/{ecosystem-sync-sop.md → sop-ecosystem-sync.md} +2 -2
- package/kb/procedures/{post-release-testing-sop.md → sop-post-release-testing.md} +3 -3
- package/kb/procedures/sop-pre-commit.md +96 -0
- package/kb/procedures/{release-preparation-sop.md → sop-release.md} +6 -6
- package/kb/reference/architecture-overview.md +1 -1
- package/kb/reference/copilot-compatibility.md +1 -1
- package/kb/reference/licensing.md +2 -2
- package/kb/reference/quick-wins-implementation-summary.md +1 -1
- package/kb/reference/supported-tools-registry.md +2 -2
- package/kb/troubleshooting/plugin-double-load.md +1 -1
- package/llms-full.txt +956 -849
- package/llms.txt +6 -5
- package/manifest.json +1 -1
- package/package.json +2 -1
- package/scripts/generate_toolkit_rules_skills.py +189 -0
- package/scripts/validate.py +1 -1
- /package/kb/procedures/{maintenance-sop.md → sop-maintenance.md} +0 -0
- /package/kb/procedures/{release-verification-sop.md → sop-release-verification.md} +0 -0
|
@@ -13,7 +13,7 @@ description: "Step-by-step checklist for preparing a new ai-toolkit release —
|
|
|
13
13
|
|
|
14
14
|
Complete checklist for preparing a new `@softspark/ai-toolkit` release.
|
|
15
15
|
Run this **before** tagging. After tagging and publishing, run the
|
|
16
|
-
[Release Verification SOP](release-verification
|
|
16
|
+
[Release Verification SOP](sop-release-verification.md) to smoke-test.
|
|
17
17
|
|
|
18
18
|
**Pipeline:**
|
|
19
19
|
```
|
|
@@ -32,10 +32,10 @@ git tag → CI publish → Release Verification SOP
|
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
# 0. Ecosystem sync (mandatory for minor/major releases; optional for patch)
|
|
35
|
-
# Full procedure: kb/procedures/ecosystem-sync
|
|
35
|
+
# Full procedure: kb/procedures/sop-ecosystem-sync.md
|
|
36
36
|
python3 scripts/ecosystem_doctor.py --format text > /tmp/eco-report.txt
|
|
37
37
|
cat /tmp/eco-report.txt
|
|
38
|
-
# If drift detected: stop here, follow ecosystem-sync
|
|
38
|
+
# If drift detected: stop here, follow sop-ecosystem-sync.md Phase 2-4 to
|
|
39
39
|
# classify each drift (A-F), update generators as needed, refresh snapshot,
|
|
40
40
|
# THEN resume this SOP.
|
|
41
41
|
python3 scripts/ecosystem_doctor.py --update # after all drift resolved
|
|
@@ -126,7 +126,7 @@ Output classifies every registered tool as **Clean**, **Drift**, or **Errored**.
|
|
|
126
126
|
|
|
127
127
|
### 0.2 Act on drift
|
|
128
128
|
|
|
129
|
-
For each drifting tool, follow [ecosystem-sync
|
|
129
|
+
For each drifting tool, follow [sop-ecosystem-sync.md](sop-ecosystem-sync.md) Phase 2-4:
|
|
130
130
|
|
|
131
131
|
| Drift class | Release impact |
|
|
132
132
|
|-------------|----------------|
|
|
@@ -195,7 +195,7 @@ The canonical version lives in `package.json`. These files **must** match:
|
|
|
195
195
|
|
|
196
196
|
| File | Field | When to update |
|
|
197
197
|
|------|-------|---------------|
|
|
198
|
-
| `kb/procedures/maintenance
|
|
198
|
+
| `kb/procedures/sop-maintenance.md` | frontmatter `version:` | If SOP content changed |
|
|
199
199
|
| `kb/reference/skills-catalog.md` | frontmatter `version:` | If skills added/removed |
|
|
200
200
|
| `kb/reference/agents-catalog.md` | frontmatter `version:` | If agents added/removed |
|
|
201
201
|
| `kb/reference/hooks-catalog.md` | frontmatter `version:` | If hooks changed |
|
|
@@ -591,7 +591,7 @@ This triggers `.github/workflows/publish.yml` which:
|
|
|
591
591
|
|
|
592
592
|
**Provenance is non-negotiable.** If `id-token: write` permission or the `--provenance` flag is missing from `publish.yml`, fix it BEFORE tagging — an unsigned release is a regression against the v2.8.0 standard.
|
|
593
593
|
|
|
594
|
-
**After CI completes:** Run the [Release Verification SOP](release-verification
|
|
594
|
+
**After CI completes:** Run the [Release Verification SOP](sop-release-verification.md)
|
|
595
595
|
to smoke-test the published package AND verify the provenance attestation landed on npm.
|
|
596
596
|
|
|
597
597
|
---
|
|
@@ -228,7 +228,7 @@ Three tiers determine how to approach a task:
|
|
|
228
228
|
|------|-------|-----------|-------|
|
|
229
229
|
| Task | `disable-model-invocation: true` | User via `/skill` only | 32 |
|
|
230
230
|
| Hybrid | (neither) | User via `/skill` + agent knowledge | 31 |
|
|
231
|
-
| Knowledge | `user-invocable: false` | Claude auto-loads |
|
|
231
|
+
| Knowledge | `user-invocable: false` | Claude auto-loads | 51 |
|
|
232
232
|
|
|
233
233
|
## Multi-Agent Execution
|
|
234
234
|
|
|
@@ -159,7 +159,7 @@ running the generators directly:
|
|
|
159
159
|
|
|
160
160
|
- `scripts/generate_copilot.py` / `generate_copilot_hooks.py` contract tests
|
|
161
161
|
(`tests/test_copilot.bats`, `tests/test_copilot_hooks.bats`).
|
|
162
|
-
- Release layout check in `kb/procedures/release-verification
|
|
162
|
+
- Release layout check in `kb/procedures/sop-release-verification.md` asserts the
|
|
163
163
|
`.github/{agents,skills,instructions,prompts,hooks}` surfaces.
|
|
164
164
|
- `validate.py --strict` + `audit_skills.py --ci` in CI.
|
|
165
165
|
|
|
@@ -131,7 +131,7 @@ MIT remnant would need each contributor's agreement.
|
|
|
131
131
|
|
|
132
132
|
It is a test rather than a checklist line on purpose. This project has two
|
|
133
133
|
same-day postmortems about SOPs that existed and were skipped; CI does not skip.
|
|
134
|
-
[Release Preparation](../procedures/release
|
|
134
|
+
[Release Preparation](../procedures/sop-release.md) Phase 5c runs the
|
|
135
135
|
same gate before tagging so a failure surfaces before the tag, not after.
|
|
136
136
|
|
|
137
137
|
## If the licence ever changes again
|
|
@@ -144,5 +144,5 @@ source, cross-verify against a second independent copy, and only then write
|
|
|
144
144
|
## Related
|
|
145
145
|
|
|
146
146
|
- [`LICENSE`](../../LICENSE), [`NOTICE`](../../NOTICE)
|
|
147
|
-
- [Release Preparation SOP](../procedures/release
|
|
147
|
+
- [Release Preparation SOP](../procedures/sop-release.md) — Phase 5c
|
|
148
148
|
- [Distribution Model](distribution-model.md) — what ships and where
|
|
@@ -53,7 +53,7 @@ Updated baseline docs:
|
|
|
53
53
|
- `kb/reference/skills-catalog.md`
|
|
54
54
|
- `kb/reference/plugin-pack-conventions.md`
|
|
55
55
|
- `kb/reference/claude-ecosystem-benchmark-snapshot.md`
|
|
56
|
-
- `kb/procedures/maintenance
|
|
56
|
+
- `kb/procedures/sop-maintenance.md`
|
|
57
57
|
|
|
58
58
|
## Validation Evidence
|
|
59
59
|
|
|
@@ -285,13 +285,13 @@ See [DSH Compatibility](./dsh-compatibility.md) for commands, topology, subscrip
|
|
|
285
285
|
2. Delete its section from this document.
|
|
286
286
|
3. Delete its snapshot entry from `benchmarks/ecosystem-doctor-snapshot.json` (or let the next `--update` prune it — currently not pruned automatically).
|
|
287
287
|
4. Decide whether to keep the generator (`scripts/generate_<tool>_*.py`) for backwards compatibility or delete it.
|
|
288
|
-
5. Remove references from `README.md`, `manifest.json` `description` field, and `kb/procedures/maintenance
|
|
288
|
+
5. Remove references from `README.md`, `manifest.json` `description` field, and `kb/procedures/sop-maintenance.md` `Supported editors` line.
|
|
289
289
|
|
|
290
290
|
---
|
|
291
291
|
|
|
292
292
|
## Related
|
|
293
293
|
|
|
294
|
-
- [Ecosystem Sync SOP](../procedures/ecosystem-sync
|
|
294
|
+
- [Ecosystem Sync SOP](../procedures/sop-ecosystem-sync.md) — how to use the doctor
|
|
295
295
|
- [MCP Editor Compatibility](./mcp-editor-compatibility.md) — MCP-specific subset
|
|
296
296
|
- `scripts/ecosystem_tools.json` — source of truth
|
|
297
297
|
- `scripts/ecosystem_doctor.py` — drift detector
|