@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.
@@ -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-09"
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 into `CLAUDE.md`, use `--lang`:
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, ~/.cursor/rules, Windsurf, Gemini
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/`, or `kb/best-practices/`
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**