@softspark/ai-toolkit 4.29.2 → 4.30.3
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 +105 -0
- package/README.md +40 -15
- package/app/.claude-plugin/plugin.json +1 -1
- package/app/ARCHITECTURE.md +2 -2
- package/app/mcp-templates/README.md +7 -2
- package/app/mcp-templates/rag-mcp-legal.json +11 -0
- package/app/mcp-templates/rag-mcp.json +11 -0
- package/app/surface.json +1 -0
- package/benchmarks/ecosystem-doctor-snapshot.json +29 -17
- package/bin/ai-toolkit.js +8 -0
- package/kb/history/completed/dsh-integration-plan-superseded.md +322 -0
- package/kb/history/completed/dsh-native-install-target-plan.md +331 -0
- package/kb/procedures/ecosystem-sync-sop.md +7 -5
- package/kb/procedures/maintenance-sop.md +1 -1
- package/kb/procedures/release-preparation-sop.md +81 -20
- package/kb/procedures/release-verification-sop.md +35 -5
- package/kb/reference/architecture-overview.md +24 -5
- package/kb/reference/cli-reference.md +1 -1
- package/kb/reference/dsh-compatibility.md +183 -0
- package/kb/reference/manifest-install.md +112 -5
- package/kb/reference/mcp-templates.md +11 -4
- package/kb/reference/plugin-pack-conventions.md +35 -18
- package/kb/reference/supported-tools-registry.md +30 -6
- package/llms-full.txt +1190 -69
- package/llms.txt +3 -0
- package/manifest.json +2 -2
- package/package.json +2 -2
- package/scripts/codex_skill_adapter.py +673 -34
- package/scripts/config_resolver.py +80 -14
- package/scripts/doctor.py +98 -20
- package/scripts/ecosystem_tools.json +51 -1
- package/scripts/generate_codex_skills.py +22 -20
- package/scripts/install.py +30 -13
- package/scripts/install_steps/ai_tools.py +97 -33
- package/scripts/install_steps/dsh.py +5063 -0
- package/scripts/install_steps/install_state.py +1645 -57
- package/scripts/mcp_editors.py +5 -2
- package/scripts/plugin.py +2495 -163
- package/scripts/plugin_mcp.py +279 -0
- package/scripts/plugin_rules.py +389 -0
- package/scripts/plugin_schema.py +139 -23
- package/scripts/uninstall.py +47 -4
- package/scripts/validate.py +421 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,111 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## v4.30.3 - Copilot health-check compatibility (2026-09-02)
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **`doctor` accepts sentence punctuation after runtime SemVer.** The official
|
|
15
|
+
Copilot CLI output `GitHub Copilot CLI 1.0.80.` now reports version `1.0.80`
|
|
16
|
+
instead of an invalid-SemVer warning.
|
|
17
|
+
- **Complete-token validation remains strict.** Extra version segments, invalid
|
|
18
|
+
prerelease identifiers, and leading-zero numeric fields are still rejected.
|
|
19
|
+
- **DSH cold-add timing gate is runner-safe.** The regression still proves a
|
|
20
|
+
cold package add can outlive the legacy scaled timeout while leaving enough
|
|
21
|
+
headroom for macOS CI process startup.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- **Test count.** Increased from 1920 to 1921 with the exact Copilot output
|
|
26
|
+
regression.
|
|
27
|
+
- **Release tags require green cross-platform branch CI.** The preparation SOP
|
|
28
|
+
now binds the gate to the exact release commit and requires both Ubuntu and
|
|
29
|
+
macOS Bats matrix jobs before creating or pushing a tag.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## v4.30.2 - Portable Linux release gates (2026-09-02)
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- **File-mode checks are cross-platform.** DSH package and plugin asset tests now
|
|
38
|
+
read POSIX modes through Python `stat.S_IMODE` instead of the macOS-only
|
|
39
|
+
`stat -f` syntax.
|
|
40
|
+
- **Malformed ownership diagnostics are consistent.** Invalid `packages` and
|
|
41
|
+
`package_trees` records now fail with ownership-specific errors at the shared
|
|
42
|
+
state-validation boundary on both macOS and Linux.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- **First published release of the 4.30 feature set.** Public tags `v4.30.0` and
|
|
47
|
+
`v4.30.1` failed their Linux GitHub Actions gates before npm publication.
|
|
48
|
+
Version `4.30.2` includes both portability corrections; neither earlier npm
|
|
49
|
+
artifact exists.
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## v4.30.1 - Linux-portable DSH recovery diagnostics (2026-09-01)
|
|
54
|
+
|
|
55
|
+
### Fixed
|
|
56
|
+
|
|
57
|
+
- **Interrupted preset relocation keeps an actionable error.** A
|
|
58
|
+
`KeyboardInterrupt` has an empty string representation on Linux; recovery
|
|
59
|
+
output now normalizes it to an explicit interrupted message before naming the
|
|
60
|
+
preserved path.
|
|
61
|
+
- **Recovery verification failures are never silent.** Package-preset hash
|
|
62
|
+
failures are included in deterministic recovery diagnostics while ownership
|
|
63
|
+
state restoration still runs.
|
|
64
|
+
- **Recovery tests use platform-independent seams.** Backup restore and package
|
|
65
|
+
source verification injections now exercise the same secure helpers on macOS
|
|
66
|
+
and Linux.
|
|
67
|
+
|
|
68
|
+
### Changed
|
|
69
|
+
|
|
70
|
+
- **First published release of the 4.30 feature set.** The public `v4.30.0` tag
|
|
71
|
+
failed its GitHub Actions gate before npm publication. Version `4.30.1`
|
|
72
|
+
contains the same DSH and MCP features plus this cross-platform correction;
|
|
73
|
+
no `4.30.0` npm artifact exists.
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## v4.30.0 - Managed DSH and plugin-owned MCP (2026-09-01)
|
|
78
|
+
|
|
79
|
+
### Added
|
|
80
|
+
|
|
81
|
+
- **Explicit DSH project target.** Added `install --local --editors dsh` for the
|
|
82
|
+
managed `.agents/skills` surface without implicit selection or `$DSH_HOME`
|
|
83
|
+
mutation.
|
|
84
|
+
- **Managed DSH profile lifecycle.** Added `ai-toolkit dsh
|
|
85
|
+
install|update|doctor|uninstall --profile web` with exact DSH `0.1.1-rc.2`,
|
|
86
|
+
dsh-codex `1.0.0`, dsh-orchestrator `1.0.1`, preset ownership, dry-run, and
|
|
87
|
+
read-only diagnostics.
|
|
88
|
+
- **Plugin-owned MCP and native rules.** Plugin packs can deliver MCP templates
|
|
89
|
+
and owned rule surfaces to Claude, Codex, Cursor, and Gemini.
|
|
90
|
+
- **RAG MCP templates.** Added `rag-mcp` and `rag-mcp-legal` with concrete
|
|
91
|
+
localhost defaults and unauthenticated-endpoint warnings. The built-in MCP
|
|
92
|
+
catalogue now contains 28 templates.
|
|
93
|
+
|
|
94
|
+
### Changed
|
|
95
|
+
|
|
96
|
+
- **DSH remains explicit-only.** It stays outside editor defaults,
|
|
97
|
+
auto-detection, and `--editors all`; vendor CLIs retain authentication
|
|
98
|
+
ownership and no provider API key is accepted.
|
|
99
|
+
- **Plugin lifecycle is transactional.** Install, update, and removal coordinate
|
|
100
|
+
MCP settings, rules, hook/script assets, and ownership state with pinned-path
|
|
101
|
+
CAS and last-consumer cleanup.
|
|
102
|
+
- **Test count.** Increased from 1675 to 1920.
|
|
103
|
+
|
|
104
|
+
### Fixed
|
|
105
|
+
|
|
106
|
+
- **Cold DSH installs fail safely.** Added pnpm preflight, bounded probe and
|
|
107
|
+
mutation timeouts, full process-tree termination, exact executable identity,
|
|
108
|
+
directory-level lifecycle locking, and durable recovery gates.
|
|
109
|
+
- **Concurrent plugin edits are preserved.** Atomic quarantine and rollback no
|
|
110
|
+
longer overwrite concurrent bytes, modes, inodes, marker sections, or
|
|
111
|
+
user-added assets.
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
10
115
|
## v4.29.2 — The Codex dry-run stops hiding a surface (2026-08-21)
|
|
11
116
|
|
|
12
117
|
### Fixed
|
package/README.md
CHANGED
|
@@ -1,26 +1,32 @@
|
|
|
1
1
|
# ai-toolkit
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> AI coding toolkit with machine-enforced safety, 109 skills, 44 agents, lifecycle hooks, persona presets, opt-in plugin packs, and benchmark tooling. DSH is available as a separate explicit developer-preview target.
|
|
4
4
|
|
|
5
5
|
[](https://github.com/softspark/ai-toolkit/actions/workflows/ci.yml)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](app/skills/)
|
|
8
8
|
[](app/agents/)
|
|
9
|
-
[](tests/)
|
|
10
10
|
|
|
11
|
-
## What's New in v4.
|
|
11
|
+
## What's New in v4.30.3
|
|
12
12
|
|
|
13
|
-
**v4.
|
|
13
|
+
**v4.30.3** corrects the post-release health check for the managed DSH and
|
|
14
|
+
plugin-owned MCP release:
|
|
14
15
|
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
-
|
|
23
|
-
|
|
16
|
+
- `ai-toolkit doctor` now extracts `1.0.80` from the official Copilot CLI output
|
|
17
|
+
`GitHub Copilot CLI 1.0.80.` instead of treating sentence punctuation as an
|
|
18
|
+
invalid SemVer suffix.
|
|
19
|
+
- Complete-token validation remains fail closed for malformed versions such as
|
|
20
|
+
`1.2.3.4`, invalid prerelease identifiers, and leading-zero numeric fields.
|
|
21
|
+
- The DSH cold-add regression keeps its legacy-timeout coverage with macOS CI
|
|
22
|
+
process-startup headroom, removing the release-blocking timing flake.
|
|
23
|
+
- Release tags now require green Ubuntu and macOS branch CI for the exact commit
|
|
24
|
+
before the publish workflow can start.
|
|
25
|
+
- The release retains the explicit DSH lifecycle, plugin-owned MCP/rules, portable
|
|
26
|
+
recovery gates, and the exact DSH package set published in v4.30.2. Test count:
|
|
27
|
+
1920 -> 1921.
|
|
28
|
+
|
|
29
|
+
See [CHANGELOG.md](CHANGELOG.md) for full history.
|
|
24
30
|
|
|
25
31
|
## Table of Contents
|
|
26
32
|
|
|
@@ -74,6 +80,23 @@ ai-toolkit install --local --editors cursor,aider # + specific editors
|
|
|
74
80
|
ai-toolkit update --local # auto-detects editors
|
|
75
81
|
```
|
|
76
82
|
|
|
83
|
+
### DSH Developer Preview
|
|
84
|
+
|
|
85
|
+
DSH has separate project and profile ownership:
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
# Generic local outputs plus DSH-specific .agents/skills. No DSH_HOME write.
|
|
89
|
+
ai-toolkit install --local --editors dsh
|
|
90
|
+
|
|
91
|
+
# Explicit profile lifecycle.
|
|
92
|
+
ai-toolkit dsh install --profile web
|
|
93
|
+
ai-toolkit dsh update --profile web
|
|
94
|
+
ai-toolkit dsh doctor --profile web
|
|
95
|
+
ai-toolkit dsh uninstall --profile web --yes
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
DSH is excluded from `--editors all`, auto-detection, and defaults. Its only DSH-specific project output is `.agents/skills`; the normal `--local` Claude files, detected language rules, and other generic project outputs still apply. Project and profile `--dry-run` commands are read-only. The reviewed pins are DSH `0.1.1-rc.2`, `@softspark/dsh-codex@1.0.0`, and `@softspark/dsh-orchestrator@1.0.1`. Codex, Claude Code, and GitHub Copilot own their logins. ai-toolkit accepts no provider API keys, and GitHub AI credits apply to the Copilot Gemini route. Isolated pre-tag and exact-registry post-release qualification completed both Claude Code and Copilot Gemini marker roundtrips through the Codex parent. See [DSH Compatibility](kb/reference/dsh-compatibility.md).
|
|
99
|
+
|
|
77
100
|
### Plugin Management
|
|
78
101
|
|
|
79
102
|
```bash
|
|
@@ -151,6 +174,7 @@ See [CLI Reference](kb/reference/cli-reference.md) for all commands and options.
|
|
|
151
174
|
| Google Antigravity | Project `.agents/{rules,workflows,skills,agents,hooks}/`; user `~/.gemini/config/{skills,agents,hooks}/`; opt-in native plugin export | ✅ | project + user |
|
|
152
175
|
| Codex CLI | Project: `AGENTS.md` + `.agents/skills/*` + `.codex/{agents,hooks}/` + `.codex/{hooks.json,config.toml}`; user: `$CODEX_HOME/{AGENTS.md,agents,hooks.json,config.toml}` + `$HOME/.agents/skills/*` | ✅ | project + user |
|
|
153
176
|
| opencode | `AGENTS.md` + `.opencode/{agents,commands,plugins,skills}/*` + `opencode.{json,jsonc}` | ✅ | project + global (`~/.config/opencode/`) |
|
|
177
|
+
| DeepSeek Harness | Project `.agents/skills/*`; explicit profile packages and `$DSH_HOME/.agent-presets/softspark-orchestrator` | no bridge | project + explicit named profile |
|
|
154
178
|
|
|
155
179
|
> Claude Code is always installed (primary platform). Other editors are selected with `--editors`; the Claude app uses the separate `claude-app export` flow because its customization store is UI/plugin-managed, except for MCP servers, which `ai-toolkit mcp install --editor claude-app --scope global` writes straight to `claude_desktop_config.json`. The **Hooks** column marks platforms with lifecycle enforcement. Platforms marked — receive guidance without blocking hooks.
|
|
156
180
|
|
|
@@ -188,7 +212,7 @@ ai-toolkit/
|
|
|
188
212
|
│ └── ARCHITECTURE.md # Full system design
|
|
189
213
|
├── kb/ # Reference docs, procedures, plans
|
|
190
214
|
├── scripts/ # Validation, install, evaluation scripts
|
|
191
|
-
├── tests/ # Bats and Python test suite
|
|
215
|
+
├── tests/ # Bats and Python test suite
|
|
192
216
|
└── CHANGELOG.md
|
|
193
217
|
```
|
|
194
218
|
|
|
@@ -222,7 +246,7 @@ ai-toolkit/
|
|
|
222
246
|
|
|
223
247
|
**70 language rules** — 13 languages + common, 5 categories each. Auto-detected or explicit `--lang`. See [Language Rules](kb/reference/language-rules.md).
|
|
224
248
|
|
|
225
|
-
**
|
|
249
|
+
**28 MCP templates** — Ready-to-use configs for GitHub, PostgreSQL, Slack, Jira, Sentry, general RAG, and Polish legal RAG. See [MCP Templates](kb/reference/mcp-templates.md).
|
|
226
250
|
|
|
227
251
|
See [Unique Features](kb/reference/unique-features.md) for detailed descriptions of all differentiators.
|
|
228
252
|
|
|
@@ -316,6 +340,7 @@ Need multi-agent coordination?
|
|
|
316
340
|
| Codex CLI Compatibility | [kb/reference/codex-cli-compatibility.md](kb/reference/codex-cli-compatibility.md) |
|
|
317
341
|
| opencode Compatibility | [kb/reference/opencode-compatibility.md](kb/reference/opencode-compatibility.md) |
|
|
318
342
|
| GitHub Copilot Compatibility | [kb/reference/copilot-compatibility.md](kb/reference/copilot-compatibility.md) |
|
|
343
|
+
| DSH Compatibility | [kb/reference/dsh-compatibility.md](kb/reference/dsh-compatibility.md) |
|
|
319
344
|
| Maintenance SOP | [kb/procedures/maintenance-sop.md](kb/procedures/maintenance-sop.md) |
|
|
320
345
|
|
|
321
346
|
---
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "ai-toolkit",
|
|
4
4
|
"displayName": "AI Toolkit",
|
|
5
5
|
"description": "Professional-grade engineering skills, agents, rules, and lifecycle guardrails for Claude Code, Claude Chat, and Cowork.",
|
|
6
|
-
"version": "4.
|
|
6
|
+
"version": "4.30.3",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "SoftSpark",
|
|
9
9
|
"url": "https://github.com/softspark"
|
package/app/ARCHITECTURE.md
CHANGED
|
@@ -348,8 +348,8 @@ Lead Session (You)
|
|
|
348
348
|
|
|
349
349
|
## Extension Points
|
|
350
350
|
|
|
351
|
-
### MCP Templates (
|
|
352
|
-
`app/mcp-templates/` ships
|
|
351
|
+
### MCP Templates (28)
|
|
352
|
+
`app/mcp-templates/` ships 28 ready-to-use MCP server config templates (filesystems, databases, GitHub, Slack, RAG, etc.). Opt-in via `ai-toolkit install --modules mcp-templates` or activated automatically with `--profile strict|full`.
|
|
353
353
|
|
|
354
354
|
### Language Rules (68 files, 13 languages)
|
|
355
355
|
`app/rules/` contains per-language coding rules. Supported languages: TypeScript, Python, Go, Rust, Java, Kotlin, Swift, Dart, C#, PHP, C++, Ruby, and common (shared). Auto-detected from project files via `--auto-detect` or selected with `--modules rules-<lang>`.
|
|
@@ -4,7 +4,7 @@ Ready-to-use MCP (Model Context Protocol) server configurations for Claude Code
|
|
|
4
4
|
|
|
5
5
|
## What are these?
|
|
6
6
|
|
|
7
|
-
Each JSON file contains a preconfigured MCP server definition that can be merged into your `.mcp.json` (project-level) or `~/.claude
|
|
7
|
+
Each JSON file contains a preconfigured MCP server definition that can be merged into your `.mcp.json` (project-level) or an editor-native global configuration such as `~/.claude.json`. Templates use `${ENV_VAR}` placeholders for secrets -- set the corresponding environment variables before use.
|
|
8
8
|
|
|
9
9
|
## Quick start
|
|
10
10
|
|
|
@@ -31,7 +31,7 @@ ai-toolkit mcp remove github
|
|
|
31
31
|
|
|
32
32
|
1. Open the template file (e.g., `github.json`)
|
|
33
33
|
2. Copy the `mcpServers` block
|
|
34
|
-
3. Merge it into your `.mcp.json` or
|
|
34
|
+
3. Merge it into your `.mcp.json` or install it through the CLI into the editor-native global configuration
|
|
35
35
|
|
|
36
36
|
Example -- adding GitHub to `.mcp.json`:
|
|
37
37
|
|
|
@@ -78,8 +78,13 @@ Example -- adding GitHub to `.mcp.json`:
|
|
|
78
78
|
| `datadog` | Datadog monitoring and metrics |
|
|
79
79
|
| `grafana` | Grafana dashboards and alerting |
|
|
80
80
|
| `jira` | Jira multi-instance routing, ADF, caching, comment templates |
|
|
81
|
+
| `rag-mcp` | General knowledge-base RAG over HTTP MCP (localhost port 8081 by default) |
|
|
82
|
+
| `rag-mcp-legal` | Polish legal RAG over HTTP MCP (localhost port 8082 by default) |
|
|
81
83
|
| `custom-template` | Empty template for custom servers |
|
|
82
84
|
|
|
85
|
+
The two RAG endpoints are unauthenticated by design. Keep their default
|
|
86
|
+
localhost binding, use a VPN, or place them behind a restricted reverse proxy.
|
|
87
|
+
|
|
83
88
|
## Contributing a new template
|
|
84
89
|
|
|
85
90
|
1. Create `app/mcp-templates/<name>.json` following this structure:
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rag-mcp-legal",
|
|
3
|
+
"description": "Dedicated Polish legal RAG for statutes, contracts, firm knowledge and matter documents via HTTP MCP",
|
|
4
|
+
"mcpServers": {
|
|
5
|
+
"rag-mcp-legal": {
|
|
6
|
+
"type": "http",
|
|
7
|
+
"url": "http://localhost:8082/mcp/sse"
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"postInstall": "Run make up-legal from the rag-mcp repository before connecting. The default endpoint is http://localhost:8082/mcp/sse. It is unauthenticated by design: keep it on localhost or behind a trusted VPN/reverse-proxy network boundary, never expose it directly to an untrusted network. Edit the installed editor config for a protected non-default deployment."
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rag-mcp",
|
|
3
|
+
"description": "Multi-tenant RAG over knowledge bases — semantic, hybrid, CRAG and multi-hop search via HTTP MCP",
|
|
4
|
+
"mcpServers": {
|
|
5
|
+
"rag-mcp": {
|
|
6
|
+
"type": "http",
|
|
7
|
+
"url": "http://localhost:8081/mcp/sse"
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"postInstall": "Make sure the rag-mcp server is running on the configured URL (default http://localhost:8081). The /mcp/sse endpoint is unauthenticated by design — restrict access at the network/proxy layer (localhost, VPN, or a reverse-proxy IP allowlist). Edit the installed editor config for a protected non-default deployment. See https://github.com/softspark/rag-mcp for setup."
|
|
11
|
+
}
|
package/app/surface.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"last_run": "2026-
|
|
2
|
+
"last_run": "2026-09-01T07:58:08Z",
|
|
3
3
|
"schema_version": 1,
|
|
4
4
|
"tools": {
|
|
5
5
|
"aider": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"augment": {
|
|
27
|
-
"docs_hash": "
|
|
27
|
+
"docs_hash": "83f1458d1a2060e9",
|
|
28
28
|
"headings": [
|
|
29
29
|
"Admin",
|
|
30
30
|
"Auggie CLI",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"Auggie CLI": true,
|
|
52
52
|
"MCP": true,
|
|
53
53
|
"Next Edit": false,
|
|
54
|
-
"Notification":
|
|
54
|
+
"Notification": true,
|
|
55
55
|
"PostToolUse": false,
|
|
56
56
|
"PreToolUse": false,
|
|
57
57
|
"SKILL.md": false,
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
"claude-app": {
|
|
69
|
-
"docs_hash": "
|
|
69
|
+
"docs_hash": "273703f5030fd2ab",
|
|
70
70
|
"headings": [
|
|
71
71
|
"Add global and folder instructions",
|
|
72
72
|
"Availability",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
}
|
|
109
109
|
},
|
|
110
110
|
"claude-code": {
|
|
111
|
-
"docs_hash": "
|
|
111
|
+
"docs_hash": "eea5867f24e1ed91",
|
|
112
112
|
"headings": [
|
|
113
113
|
"Core concepts",
|
|
114
114
|
"Documentation Index",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"LSP servers": false,
|
|
134
134
|
"MCP server": true,
|
|
135
135
|
"MessageDisplay": false,
|
|
136
|
-
"Notification":
|
|
136
|
+
"Notification": true,
|
|
137
137
|
"PermissionDenied": false,
|
|
138
138
|
"PermissionRequest": false,
|
|
139
139
|
"PostCompact": false,
|
|
@@ -174,10 +174,10 @@
|
|
|
174
174
|
"userConfig": false,
|
|
175
175
|
"workflows": true
|
|
176
176
|
},
|
|
177
|
-
"version": "2.1.
|
|
177
|
+
"version": "2.1.252 (Claude Code)"
|
|
178
178
|
},
|
|
179
179
|
"cline": {
|
|
180
|
-
"docs_hash": "
|
|
180
|
+
"docs_hash": "13a2b874f0e0173c",
|
|
181
181
|
"headings": [
|
|
182
182
|
"API Reference",
|
|
183
183
|
"Best Practices",
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
}
|
|
225
225
|
},
|
|
226
226
|
"codex-cli": {
|
|
227
|
-
"docs_hash": "
|
|
227
|
+
"docs_hash": "f7df4a0b9f583a2e",
|
|
228
228
|
"headings": [
|
|
229
229
|
"API",
|
|
230
230
|
"API Reference",
|
|
@@ -363,10 +363,10 @@
|
|
|
363
363
|
"plugin marketplace": false,
|
|
364
364
|
"sandbox": true
|
|
365
365
|
},
|
|
366
|
-
"version": "codex-cli 0.
|
|
366
|
+
"version": "codex-cli 0.151.0"
|
|
367
367
|
},
|
|
368
368
|
"cursor": {
|
|
369
|
-
"docs_hash": "
|
|
369
|
+
"docs_hash": "8665fb50dce5f322",
|
|
370
370
|
"headings": [
|
|
371
371
|
"Agent",
|
|
372
372
|
"CLI",
|
|
@@ -375,6 +375,7 @@
|
|
|
375
375
|
"Cursor Documentation",
|
|
376
376
|
"Customize",
|
|
377
377
|
"Get Started",
|
|
378
|
+
"Grok Bot",
|
|
378
379
|
"Integrations",
|
|
379
380
|
"Models",
|
|
380
381
|
"More resources",
|
|
@@ -397,8 +398,19 @@
|
|
|
397
398
|
"subagents": true
|
|
398
399
|
}
|
|
399
400
|
},
|
|
401
|
+
"dsh": {
|
|
402
|
+
"docs_hash": "265ff3799848801e",
|
|
403
|
+
"headings": [],
|
|
404
|
+
"markers": {
|
|
405
|
+
"Agent Preset": false,
|
|
406
|
+
"Developer preview": false,
|
|
407
|
+
"dsh plugin": false,
|
|
408
|
+
"profiles": false,
|
|
409
|
+
"skills": true
|
|
410
|
+
}
|
|
411
|
+
},
|
|
400
412
|
"gemini-cli": {
|
|
401
|
-
"docs_hash": "
|
|
413
|
+
"docs_hash": "02285d342536bdeb",
|
|
402
414
|
"headings": [
|
|
403
415
|
"Breadcrumbs",
|
|
404
416
|
"Directory actions",
|
|
@@ -436,10 +448,10 @@
|
|
|
436
448
|
"settings.json": false,
|
|
437
449
|
"tools": true
|
|
438
450
|
},
|
|
439
|
-
"version": "0.
|
|
451
|
+
"version": "0.57.0"
|
|
440
452
|
},
|
|
441
453
|
"github-copilot": {
|
|
442
|
-
"docs_hash": "
|
|
454
|
+
"docs_hash": "fd80b4ec446cec3f",
|
|
443
455
|
"headings": [
|
|
444
456
|
"About Copilot auto model selection",
|
|
445
457
|
"About Copilot automations",
|
|
@@ -476,7 +488,7 @@
|
|
|
476
488
|
}
|
|
477
489
|
},
|
|
478
490
|
"google-antigravity": {
|
|
479
|
-
"docs_hash": "
|
|
491
|
+
"docs_hash": "9fe532d247c3e361",
|
|
480
492
|
"headings": [],
|
|
481
493
|
"markers": {
|
|
482
494
|
"AGENTS.md": false,
|
|
@@ -503,7 +515,7 @@
|
|
|
503
515
|
}
|
|
504
516
|
},
|
|
505
517
|
"opencode": {
|
|
506
|
-
"docs_hash": "
|
|
518
|
+
"docs_hash": "154885af5c7de582",
|
|
507
519
|
"headings": [
|
|
508
520
|
"Add features",
|
|
509
521
|
"Ask questions",
|
|
@@ -565,7 +577,7 @@
|
|
|
565
577
|
}
|
|
566
578
|
},
|
|
567
579
|
"windsurf": {
|
|
568
|
-
"docs_hash": "
|
|
580
|
+
"docs_hash": "4a3e8dc19dfdedd6",
|
|
569
581
|
"headings": [
|
|
570
582
|
"Accounts",
|
|
571
583
|
"Advanced",
|
package/bin/ai-toolkit.js
CHANGED
|
@@ -83,6 +83,7 @@ const COMMANDS = {
|
|
|
83
83
|
'remove-mcp': 'Remove injected MCP servers by source name from ~/.mcp.json and all editor configs',
|
|
84
84
|
validate: 'Verify toolkit integrity',
|
|
85
85
|
doctor: 'Check install health, hooks, and artifact drift',
|
|
86
|
+
dsh: 'Manage the explicit DeepSeek Harness profile integration',
|
|
86
87
|
eject: 'Export standalone config (no symlinks, no toolkit dependency)',
|
|
87
88
|
benchmark: 'Benchmark toolkit (--my-config to compare your setup vs defaults vs ecosystem)',
|
|
88
89
|
'benchmark-ecosystem': 'Generate ecosystem benchmark snapshot (GitHub metadata + offline fallback)',
|
|
@@ -307,6 +308,7 @@ function showHelp() {
|
|
|
307
308
|
console.log(' --modules <list> Install specific modules (e.g. core,agents,rules-typescript)');
|
|
308
309
|
console.log(' --lang <list> Explicitly select language rules (e.g. typescript, go,python)');
|
|
309
310
|
console.log(' --editors <list> Install editor configs: cursor,windsurf,cline,roo,aider,augment,copilot,antigravity,codex,opencode (or "all")');
|
|
311
|
+
console.log(' dsh (explicit project target; requires --local; excluded from "all")');
|
|
310
312
|
console.log(' Default with --local: auto-detect from existing project files');
|
|
311
313
|
console.log(' --auto-detect Detect project languages and install matching rule modules');
|
|
312
314
|
console.log(' --list, --dry-run Dry-run: show what would be applied');
|
|
@@ -378,6 +380,11 @@ function showHelp() {
|
|
|
378
380
|
console.log(' Remove from .mcp.json or native editor configs');
|
|
379
381
|
console.log('\nOptions for doctor:');
|
|
380
382
|
console.log(' --fix Auto-repair detected issues');
|
|
383
|
+
console.log('\nOptions for dsh:');
|
|
384
|
+
console.log(' dsh install --profile web [--dry-run]');
|
|
385
|
+
console.log(' dsh update --profile web [--dry-run]');
|
|
386
|
+
console.log(' dsh doctor --profile web');
|
|
387
|
+
console.log(' dsh uninstall --profile web [--dry-run] [--yes]');
|
|
381
388
|
console.log('\nOptions for stats:');
|
|
382
389
|
console.log(' --summary Show aggregated product telemetry (usage coverage, top skills, unused catalog)');
|
|
383
390
|
console.log(' --json Emit raw stats, or machine-readable telemetry when combined with --summary');
|
|
@@ -718,6 +725,7 @@ const SPECIAL_HANDLERS = {
|
|
|
718
725
|
'sync': handleSync,
|
|
719
726
|
'mcp': handleMcp,
|
|
720
727
|
'config': handleConfig,
|
|
728
|
+
'dsh': (args) => run(path.join(TOOLKIT_DIR, 'scripts', 'install_steps', 'dsh.py'), args),
|
|
721
729
|
'projects': (args) => run(scriptPath('projects_cli.py'), args),
|
|
722
730
|
'plugin': (args) => run(scriptPath('plugin.py'), args),
|
|
723
731
|
'remove-rule': handleRemoveRule,
|