@softspark/ai-toolkit 1.6.0 → 1.7.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/llms.txt CHANGED
@@ -13,11 +13,11 @@
13
13
 
14
14
  - [Best Practices](kb/best-practices/README.md)
15
15
  - [No Hardcoded Counts in Secondary Docs](kb/best-practices/no-hardcoded-counts.md)
16
+ - [Plan: Offline-First SLM Profile — Lightweight Mode for Local Models](kb/history/completed/offline-slm-profile-plan-20260411.md)
16
17
  - [How-To Guides](kb/howto/README.md)
17
18
  - [Plan: Cloud Security Pack — Multi-Cloud Audit](kb/planning/cloud-security-pack-plan.md)
18
19
  - [Plan: Enterprise Config Inheritance — Multi-Repo Governance with `extends`](kb/planning/enterprise-config-inheritance-plan.md)
19
20
  - [Plan: Local Dashboard — `ai-toolkit ui`](kb/planning/local-dashboard-plan.md)
20
- - [Plan: Offline-First SLM Profile — Lightweight Mode for Local Models](kb/planning/offline-slm-profile-plan.md)
21
21
  - [SOP: Claude Toolkit Maintenance](kb/procedures/maintenance-sop.md)
22
22
  - [SOP: Release Preparation](kb/procedures/release-preparation-sop.md)
23
23
  - [SOP: Release Verification](kb/procedures/release-verification-sop.md)
package/manifest.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.6.0",
2
+ "version": "1.7.0",
3
3
  "components": {
4
4
  "agents": {
5
5
  "description": "44 specialized agents (orchestrator, backend, frontend, security, devops, etc.)",
@@ -9,7 +9,7 @@
9
9
  "tags": ["core", "agents"]
10
10
  },
11
11
  "skills": {
12
- "description": "91 skills (28 task + 31 hybrid + 32 knowledge)",
12
+ "description": "92 skills (29 task + 31 hybrid + 32 knowledge)",
13
13
  "path": "app/skills",
14
14
  "target": ".claude/skills",
15
15
  "type": "symlink",
@@ -90,7 +90,7 @@
90
90
  "default": true
91
91
  },
92
92
  "skills": {
93
- "description": "91 skills (task, hybrid, knowledge)",
93
+ "description": "92 skills (task, hybrid, knowledge)",
94
94
  "default": true
95
95
  },
96
96
  "rules-common": {
@@ -154,6 +154,7 @@
154
154
  "minimal": ["core"],
155
155
  "standard": ["core", "agents", "skills", "rules-common"],
156
156
  "strict": ["core", "agents", "skills", "rules-common", "mcp-templates"],
157
- "full": ["core", "agents", "skills", "rules-common", "mcp-templates"]
157
+ "full": ["core", "agents", "skills", "rules-common", "mcp-templates"],
158
+ "offline-slm": ["core"]
158
159
  }
159
160
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softspark/ai-toolkit",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Professional-grade AI coding toolkit: 92 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",
@@ -2,8 +2,9 @@
2
2
  """add-rule -- Register a rule file in ~/.ai-toolkit/rules/.
3
3
 
4
4
  Registered rules are automatically injected into all AI tool configs
5
- (Claude, Cursor, Windsurf, Gemini) on next 'ai-toolkit install',
6
- and into project-local configs (Copilot, Cline) on 'ai-toolkit install --local'.
5
+ on next 'ai-toolkit install' or 'ai-toolkit update':
6
+ Global: Claude, Cursor, Windsurf, Gemini, Augment
7
+ Local (--local): all of the above + Copilot, Cline, Roo, Aider, Antigravity
7
8
 
8
9
  Usage:
9
10
  add_rule.py <rule-file> [rule-name]
@@ -47,8 +48,8 @@ def main() -> None:
47
48
  print(f"Registered: '{rule_name}' -> {dest}")
48
49
  print()
49
50
  print("Apply now:")
50
- print(" ai-toolkit update # global (Claude, Cursor, Windsurf, Gemini)")
51
- print(" ai-toolkit update --local # project-local (Copilot, Cline)")
51
+ print(" ai-toolkit update # global (Claude, Cursor, Windsurf, Gemini, Augment)")
52
+ print(" ai-toolkit update --local # project-local (all editors)")
52
53
 
53
54
 
54
55
  if __name__ == "__main__":