@softspark/ai-toolkit 1.4.0 → 1.4.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 +7 -0
- package/README.md +12 -7
- package/manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## v1.4.1 — Documentation Fix: --local Behavior (2026-04-09)
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- README Per-Project Setup, Quick Start, and CLI table now correctly state that `--local` installs Claude Code only by default, with `--editors` flag for other tools.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
10
17
|
## v1.4.0 — Full Platform Parity: 11 Editors, Directory-Based Rules, --editors Flag (2026-04-09)
|
|
11
18
|
|
|
12
19
|
### Added
|
package/README.md
CHANGED
|
@@ -31,12 +31,14 @@ npm install -g @softspark/ai-toolkit@latest && ai-toolkit update
|
|
|
31
31
|
|
|
32
32
|
### Per-Project Setup
|
|
33
33
|
|
|
34
|
-
After global install, run `--local` in each project
|
|
34
|
+
After global install, run `--local` in each project. By default, only Claude Code configs are installed (CLAUDE.md, settings, constitution, language rules). Add `--editors` for other tools:
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
37
|
cd your-project/
|
|
38
|
-
ai-toolkit install --local
|
|
39
|
-
ai-toolkit
|
|
38
|
+
ai-toolkit install --local # Claude Code only
|
|
39
|
+
ai-toolkit install --local --editors all # + all editors (Cursor, Windsurf, Cline, Roo, Aider, Augment, Copilot, Antigravity)
|
|
40
|
+
ai-toolkit install --local --editors cursor,aider # + specific editors
|
|
41
|
+
ai-toolkit update --local # auto-detects editors from existing project files
|
|
40
42
|
```
|
|
41
43
|
|
|
42
44
|
### Plugin Management
|
|
@@ -642,10 +644,13 @@ ai-toolkit install
|
|
|
642
644
|
# After npm update — re-apply updated components
|
|
643
645
|
ai-toolkit update
|
|
644
646
|
|
|
645
|
-
# Init project (CLAUDE.md
|
|
647
|
+
# Init project (Claude Code configs only: CLAUDE.md, settings, constitution, language rules)
|
|
646
648
|
ai-toolkit install --local
|
|
647
649
|
|
|
648
|
-
#
|
|
650
|
+
# Init with all editors (Cursor, Windsurf, Cline, Roo, Aider, Augment, Copilot, Antigravity)
|
|
651
|
+
ai-toolkit install --local --editors all
|
|
652
|
+
|
|
653
|
+
# Update project — auto-detects editors from existing config files
|
|
649
654
|
ai-toolkit update --local
|
|
650
655
|
```
|
|
651
656
|
|
|
@@ -720,9 +725,9 @@ Usage: ai-toolkit <command> [options]
|
|
|
720
725
|
| Command | Description |
|
|
721
726
|
|---------|-------------|
|
|
722
727
|
| `install` | First-time global install into `~/.claude/` + Cursor, Windsurf, Gemini |
|
|
723
|
-
| `install --local` |
|
|
728
|
+
| `install --local` | Claude Code configs only; add `--editors all` or `--editors cursor,aider` for other tools |
|
|
724
729
|
| `update` | Re-apply toolkit after `npm install -g @softspark/ai-toolkit@latest` |
|
|
725
|
-
| `update --local` | Re-apply +
|
|
730
|
+
| `update --local` | Re-apply + auto-detect editors from existing project files |
|
|
726
731
|
| `reset --local` | Wipe all project-local configs and recreate from scratch (clean slate) |
|
|
727
732
|
| `add-rule <rule.md> [name]` | Register rule in `~/.ai-toolkit/rules/` — auto-applied on every `update` |
|
|
728
733
|
| `remove-rule <name> [dir]` | Unregister rule from `~/.ai-toolkit/rules/` and remove its block from `CLAUDE.md` |
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softspark/ai-toolkit",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Professional-grade AI coding toolkit: 91 skills, 44 agents, multi-platform support (Claude, Cursor, Windsurf, Copilot, Gemini, Cline, Roo Code, Aider, Augment, Google Antigravity), machine-enforced safety constitution, persona presets, skill security auditor, expanded lifecycle hooks, 11 plugin packs, and benchmark tooling.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|