@softspark/ai-toolkit 1.5.0 → 1.6.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 +25 -0
- package/README.md +16 -3
- package/action.yml +2 -1
- package/app/.claude-plugin/plugin.json +1 -1
- package/app/ARCHITECTURE.md +3 -1
- package/app/agents/documenter.md +2 -2
- package/app/plugins/memory-pack/scripts/strip_private.py +1 -1
- package/app/skills/docs/SKILL.md +1 -1
- package/app/skills/documentation-standards/SKILL.md +1 -1
- package/app/skills/write-a-prd/scripts/frame-template.html +1 -25
- package/app/skills/write-a-prd/scripts/poll.js +23 -0
- package/app/skills/write-a-prd/scripts/visual-server.cjs +11 -1
- package/kb/planning/cloud-security-pack-plan.md +1166 -0
- package/kb/planning/enterprise-config-inheritance-plan.md +917 -0
- package/kb/planning/local-dashboard-plan.md +773 -0
- package/kb/planning/offline-slm-profile-plan.md +742 -0
- package/kb/procedures/maintenance-sop.md +10 -4
- package/llms-full.txt +3915 -4
- package/llms.txt +5 -0
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/scripts/dir_rules_shared.py +96 -0
- package/scripts/generate_antigravity.py +16 -5
- package/scripts/generate_augment_rules.py +41 -7
- package/scripts/generate_cline_rules.py +13 -3
- package/scripts/generate_cursor_mdc.py +37 -8
- package/scripts/generate_roo_rules.py +13 -3
- package/scripts/generate_windsurf_rules.py +13 -3
- package/scripts/install_steps/ai_tools.py +16 -8
- package/scripts/validate.py +1 -0
|
@@ -5,7 +5,7 @@ service: ai-toolkit
|
|
|
5
5
|
tags: [sop, maintenance, agents, skills, install]
|
|
6
6
|
version: "1.4.2"
|
|
7
7
|
created: "2026-03-23"
|
|
8
|
-
last_updated: "2026-04-
|
|
8
|
+
last_updated: "2026-04-10"
|
|
9
9
|
description: "Standard operating procedures for installing, maintaining, and evolving the ai-toolkit."
|
|
10
10
|
---
|
|
11
11
|
|
|
@@ -36,12 +36,15 @@ ai-toolkit install --local --editors cursor,aider # specific editors onl
|
|
|
36
36
|
|
|
37
37
|
Supported editors: `cursor`, `windsurf`, `cline`, `roo`, `aider`, `augment`, `copilot`, `antigravity`.
|
|
38
38
|
|
|
39
|
-
To restrict which language rules are injected
|
|
39
|
+
To restrict which language rules are injected, use `--lang`:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
ai-toolkit install --local --lang python,typescript
|
|
43
|
+
ai-toolkit install --local --lang python --editors all # language rules propagated to all editors
|
|
43
44
|
```
|
|
44
45
|
|
|
46
|
+
When `--editors` is combined with `--lang` (or auto-detected languages), language rules are propagated to all configured editors as `ai-toolkit-lang-<lang>` files — not just Claude's `CLAUDE.md`. Similarly, registered custom rules (`~/.ai-toolkit/rules/`) are propagated to directory-based editor configs as `ai-toolkit-custom-<name>` files.
|
|
47
|
+
|
|
45
48
|
**Note:** Hooks are global-only — merged into `~/.claude/settings.json` by `ai-toolkit install`. Project-local `--local` does not install hooks; any legacy `.claude/hooks.json` is removed automatically.
|
|
46
49
|
|
|
47
50
|
**Input validation (v1.4.2):** `--only`, `--skip`, `--editors`, and `--lang` are validated on input; an invalid value exits with a clear error before any changes are made.
|
|
@@ -121,7 +124,10 @@ ai-toolkit add-rule ./my-project-rules.md
|
|
|
121
124
|
# → copies to ~/.ai-toolkit/rules/my-project-rules.md
|
|
122
125
|
|
|
123
126
|
ai-toolkit update
|
|
124
|
-
# → injects the rule into ~/.claude/CLAUDE.md
|
|
127
|
+
# → injects the rule into ~/.claude/CLAUDE.md and all global editor configs
|
|
128
|
+
|
|
129
|
+
ai-toolkit update --local
|
|
130
|
+
# → also propagates as ai-toolkit-custom-<name> to directory-based editors (Cursor, Windsurf, Cline, Roo, Augment, Antigravity)
|
|
125
131
|
```
|
|
126
132
|
|
|
127
133
|
To unregister (removes from registry **and** strips the block from CLAUDE.md):
|
|
@@ -209,7 +215,7 @@ State tracked in `~/.ai-toolkit/plugins.json`.
|
|
|
209
215
|
|
|
210
216
|
Follow the `documentation-standards` knowledge skill (`app/skills/documentation-standards/SKILL.md`) for full spec. Quick checklist:
|
|
211
217
|
|
|
212
|
-
1. **Choose category directory:** `kb/reference/`, `kb/howto/`, `kb/procedures/`, `kb/troubleshooting/`,
|
|
218
|
+
1. **Choose category directory:** `kb/reference/`, `kb/howto/`, `kb/procedures/`, `kb/troubleshooting/`, `kb/best-practices/`, or `kb/planning/`
|
|
213
219
|
2. **Create file:** kebab-case name, no dates in filename
|
|
214
220
|
3. **Add frontmatter** with all 7 required fields: `title`, `category`, `service`, `tags`, `created`, `last_updated`, `description`
|
|
215
221
|
4. **Write in English**
|