@softspark/ai-toolkit 4.18.0 → 4.19.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 +37 -0
- package/README.md +10 -8
- package/app/.claude-plugin/plugin.json +1 -1
- package/app/plugins/README.md +5 -5
- package/benchmarks/ecosystem-doctor-snapshot.json +8 -8
- package/bin/ai-toolkit.js +1 -1
- package/kb/history/completed/rtk-pack-retirement-20260727.md +168 -0
- package/kb/procedures/post-release-testing-sop.md +217 -0
- package/kb/procedures/release-preparation-sop.md +12 -4
- package/kb/reference/plugin-pack-conventions.md +24 -15
- package/llms-full.txt +433 -304
- package/llms.txt +2 -1
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/scripts/audit_skills.py +1 -1
- package/scripts/generate_cursor_hooks.py +44 -0
- package/scripts/generate_gemini_hooks.py +44 -0
- package/scripts/install.py +14 -1
- package/scripts/plugin.py +270 -36
- package/scripts/uninstall.py +29 -0
- package/app/plugins/rtk-pack/README.md +0 -123
- package/app/plugins/rtk-pack/hooks/rewrite.sh +0 -79
- package/app/plugins/rtk-pack/plugin.json +0 -60
- package/app/plugins/rtk-pack/scripts/init.py +0 -252
- package/app/plugins/rtk-pack/scripts/status.py +0 -105
- package/kb/procedures/rtk-upstream-sync-sop.md +0 -279
- package/scripts/verify_rtk_binary.py +0 -335
|
@@ -138,21 +138,30 @@ ai-toolkit plugin status --editor all # show installed packs with r
|
|
|
138
138
|
| `kotlin-pack` | kotlin | 0 | 1 | 0 | Kotlin patterns |
|
|
139
139
|
| `swift-pack` | swift | 0 | 1 | 0 | Swift patterns |
|
|
140
140
|
| `ruby-pack` | ruby | 0 | 1 | 0 | Ruby patterns |
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
141
|
+
|
|
142
|
+
Every pack here is content that ships in this repository. None fetches anything
|
|
143
|
+
at install time.
|
|
144
|
+
|
|
145
|
+
**A pack that downloads a binary has been tried once and retired.** `rtk-pack`
|
|
146
|
+
(v4.18.0, removed in v4.19.0) fetched a checksum-pinned artifact in
|
|
147
|
+
`scripts/init.py`, declared platform assets and digests in `plugin.json`, and
|
|
148
|
+
rewrote commands at `PreToolUse`. Read
|
|
149
|
+
`kb/history/completed/rtk-pack-retirement-20260727.md` before proposing another
|
|
150
|
+
pack of that shape; the two defects that killed it were both invisible to
|
|
151
|
+
`validate.py --strict` and to the pack's own status check.
|
|
152
|
+
|
|
153
|
+
What survives from that work and applies to any pack:
|
|
154
|
+
|
|
155
|
+
- **A pack reports its own health.** `scripts/status.py` is picked up
|
|
156
|
+
generically by `plugin status`, replacing what used to be a hardcoded
|
|
157
|
+
`if name == "memory-pack"` branch. A status check must distinguish *installed*
|
|
158
|
+
from *working*, and prove the working part by exercising it rather than by
|
|
159
|
+
checking that files exist.
|
|
160
|
+
- **A pack may declare `supported_editors`.** Without it a pack installs on
|
|
161
|
+
every runtime and silently does nothing on the ones it was never built for.
|
|
162
|
+
- **The manifest schema tolerates extra keys.** Anything additive is unvalidated,
|
|
163
|
+
so a malformed block fails at install time rather than in `validate.py
|
|
164
|
+
--strict`. Do not rely on the schema to catch it.
|
|
156
165
|
|
|
157
166
|
## Optional Hook Modules
|
|
158
167
|
|