@softspark/ai-toolkit 1.6.1 → 1.8.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 +43 -0
- package/README.md +17 -4
- package/app/.claude-plugin/plugin.json +1 -1
- package/app/ARCHITECTURE.md +3 -0
- package/bin/ai-toolkit.js +15 -0
- package/kb/{planning/enterprise-config-inheritance-plan.md → history/completed/enterprise-config-inheritance-plan-20260412.md} +39 -37
- package/kb/{planning/offline-slm-profile-plan.md → history/completed/offline-slm-profile-plan-20260411.md} +7 -5
- package/kb/reference/architecture-overview.md +1 -0
- package/kb/reference/enterprise-config-guide.md +329 -0
- package/kb/reference/skills-catalog.md +15 -0
- package/llms-full.txt +3143 -2788
- package/llms.txt +3 -2
- package/manifest.json +13 -4
- package/package.json +1 -1
- package/scripts/compile_slm.py +1043 -0
- package/scripts/config_cli.py +537 -0
- package/scripts/config_lock.py +154 -0
- package/scripts/config_merger.py +455 -0
- package/scripts/config_resolver.py +507 -0
- package/scripts/config_scaffold.py +266 -0
- package/scripts/config_validator.py +389 -0
- package/scripts/install.py +149 -1
- package/scripts/install_steps/ai_tools.py +101 -1
- package/scripts/install_steps/install_state.py +24 -0
- package/scripts/schemas/ai-toolkit-config.schema.json +163 -0
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: Enterprise Config Inheritance — Multi-Repo Governance with `extends`](kb/history/completed/enterprise-config-inheritance-plan-20260412.md)
|
|
17
|
+
- [Plan: Offline-First SLM Profile — Lightweight Mode for Local Models](kb/history/completed/offline-slm-profile-plan-20260411.md)
|
|
16
18
|
- [How-To Guides](kb/howto/README.md)
|
|
17
19
|
- [Plan: Cloud Security Pack — Multi-Cloud Audit](kb/planning/cloud-security-pack-plan.md)
|
|
18
|
-
- [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)
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
- [Claude Ecosystem Expansion Foundations](kb/reference/claude-ecosystem-expansion-foundations.md)
|
|
31
31
|
- [Plan: Competitive Features — ai-toolkit](kb/reference/competitive-features-implementation.md)
|
|
32
32
|
- [Distribution Model](kb/reference/distribution-model.md)
|
|
33
|
+
- [Enterprise Config Inheritance Guide](kb/reference/enterprise-config-guide.md)
|
|
33
34
|
- [Extension API Reference](kb/reference/extension-api.md)
|
|
34
35
|
- [Global Install Model](kb/reference/global-install-model.md)
|
|
35
36
|
- [Hierarchical Override Pattern](kb/reference/hierarchical-override-pattern.md)
|
package/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.8.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": "
|
|
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": "
|
|
93
|
+
"description": "92 skills (task, hybrid, knowledge)",
|
|
94
94
|
"default": true
|
|
95
95
|
},
|
|
96
96
|
"rules-common": {
|
|
@@ -154,6 +154,15 @@
|
|
|
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"]
|
|
159
|
+
},
|
|
160
|
+
"config_inheritance": {
|
|
161
|
+
"schema": "scripts/schemas/ai-toolkit-config.schema.json",
|
|
162
|
+
"project_config": ".ai-toolkit.json",
|
|
163
|
+
"base_config": "ai-toolkit.config.json",
|
|
164
|
+
"lock_file": ".ai-toolkit.lock.json",
|
|
165
|
+
"v1_fields": ["extends", "profile", "agents", "rules", "constitution", "enforce"],
|
|
166
|
+
"max_extends_depth": 5
|
|
158
167
|
}
|
|
159
168
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softspark/ai-toolkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.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",
|