@softspark/ai-toolkit 2.12.0 → 3.0.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 +50 -0
- package/README.md +25 -8
- package/app/.claude-plugin/plugin.json +1 -1
- package/app/skills/hook-creator/SKILL.md +84 -8
- package/app/skills/skill-creator/SKILL.md +8 -4
- package/benchmarks/ecosystem-doctor-snapshot.json +395 -0
- package/kb/history/completed/deep-coverage-v3-20260423.md +160 -0
- package/kb/history/completed/ecosystem-deep-sweep-20260423.md +273 -0
- package/kb/procedures/ecosystem-sync-sop.md +255 -0
- package/kb/procedures/maintenance-sop.md +13 -2
- package/kb/procedures/release-preparation-sop.md +94 -12
- package/kb/procedures/release-verification-sop.md +112 -8
- package/kb/reference/global-install-model.md +15 -2
- package/kb/reference/supported-tools-registry.md +229 -0
- package/llms-full.txt +1175 -24
- package/llms.txt +4 -0
- package/manifest.json +1 -1
- package/package.json +4 -1
- package/scripts/ecosystem_doctor.py +348 -0
- package/scripts/ecosystem_tools.json +500 -0
- package/scripts/generate_aider_conf.py +26 -1
- package/scripts/generate_antigravity.py +77 -8
- package/scripts/generate_augment_agents.py +161 -0
- package/scripts/generate_augment_commands.py +160 -0
- package/scripts/generate_augment_hooks.py +162 -0
- package/scripts/generate_augment_skills.py +98 -0
- package/scripts/generate_cline_rules.py +96 -9
- package/scripts/generate_codex_hooks.py +13 -2
- package/scripts/generate_codex_skills.py +195 -0
- package/scripts/generate_copilot.py +296 -18
- package/scripts/generate_cursor_agents.py +144 -0
- package/scripts/generate_cursor_hooks.py +155 -0
- package/scripts/generate_cursor_mdc.py +20 -8
- package/scripts/generate_gemini_commands.py +158 -0
- package/scripts/generate_gemini_hooks.py +159 -0
- package/scripts/generate_gemini_skills.py +98 -0
- package/scripts/generate_roo_modes.py +42 -1
- package/scripts/generate_windsurf_hooks.py +143 -0
- package/scripts/generate_windsurf_rules.py +162 -10
- package/scripts/install.py +11 -2
- package/scripts/install_steps/ai_tools.py +120 -5
- package/scripts/validate.py +20 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,56 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## v3.0.1 — Release SOP Deep-Coverage Checks (2026-04-24)
|
|
11
|
+
|
|
12
|
+
Doc-only patch. No code, generators, or runtime behavior changed.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- **`kb/procedures/release-verification-sop.md` 1.3.0 -> 1.4.0** — added Phase 9 (six new checks for v3.0.0 native surfaces: `--profile full` emission, `--codex-skills` orthogonality, breaking-change surfaces at `standard`, install idempotence, live JSON parse, registry/generator drift). Refreshed stale thresholds (`Tests >= 350` -> `Tests >= 900`, `e.g., 669` -> `e.g., 945`). Editor list updated from 8 to 11 (+codex, +gemini, +opencode). Added HOME-scoped write safety warning.
|
|
17
|
+
- **`kb/procedures/release-preparation-sop.md` 1.9.0 -> 1.10.0** — added the registry-vs-generators drift check to Phase 5 so a bad registry can never escape into a release.
|
|
18
|
+
- **`kb/reference/supported-tools-registry.md` 1.1.0 -> 1.2.0** — enumerated the 11 new v3.0.0 generators (cursor_hooks/agents, windsurf_hooks, gemini_hooks/commands/skills, augment_hooks/agents/commands/skills, codex_skills) with profile and opt-in annotations.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## v3.0.0 — Deep Coverage: Full Native Surface Utilization (2026-04-23)
|
|
23
|
+
|
|
24
|
+
Skips `2.13.0`. Upgrade path is `2.12.x` -> `3.0.0`.
|
|
25
|
+
|
|
26
|
+
### BREAKING
|
|
27
|
+
|
|
28
|
+
- **`--profile standard` now installs Gemini hooks** by default. Users who relied on `standard` leaving Gemini hooks alone must switch to `--profile minimal` or pass `--skip gemini-hooks`.
|
|
29
|
+
- **Copilot moved to directory mode** (`.github/copilot/`) for new installs. Existing single-file `.github/copilot-instructions.md` installs are preserved; re-running `install` will emit the directory form alongside.
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
|
|
33
|
+
- **`--profile full`** flag that activates every native surface across every supported editor in a single invocation.
|
|
34
|
+
- **`--codex-skills`** opt-in flag that materializes the full skill catalog under Codex's `.agents/skills/` directory (other editors continue using pointer-skill or compat-read).
|
|
35
|
+
- **11 new generators** covering hooks, sub-agents, commands, and skill pointers per editor:
|
|
36
|
+
- `scripts/generate_cursor_agents.py`, `scripts/generate_cursor_hooks.py`
|
|
37
|
+
- `scripts/generate_windsurf_hooks.py`
|
|
38
|
+
- `scripts/generate_gemini_commands.py`, `scripts/generate_gemini_hooks.py`, `scripts/generate_gemini_skills.py`
|
|
39
|
+
- `scripts/generate_augment_agents.py`, `scripts/generate_augment_commands.py`, `scripts/generate_augment_hooks.py`, `scripts/generate_augment_skills.py`
|
|
40
|
+
- `scripts/generate_codex_skills.py`
|
|
41
|
+
- **105 new bats tests**: `tests/test_native_surfaces.bats` (33), `tests/test_skills_native.bats` (25), `tests/test_hooks_per_editor.bats` (30), `tests/test_install_profiles.bats` (17), plus per-editor suites for aider, antigravity, augment, claude-code, cline, codex, copilot, cursor, gemini, opencode, roo, windsurf. Total test count: 840 -> 945.
|
|
42
|
+
- **Folded-in skill quality pass** (originally targeted at 2.13): 62 skills upgraded to 4-5 / 5 on the meta-architect audit with `## Rules`, `## Gotchas`, and `## When NOT to Use` sections. `add_gotcha` added as a fifth mutation strategy.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- `scripts/install_steps/ai_tools.py` now routes profile and `--codex-skills` through a `_try_generator` wrapper that degrades gracefully when a generator is missing. All new generators are wired behind explicit profile checks; no generator runs at `minimal`.
|
|
47
|
+
- `scripts/install.py` accepts `--profile full` and `--codex-skills`.
|
|
48
|
+
- `config_validator.VALID_PROFILES` extended with `full`.
|
|
49
|
+
- Per-tool generator matrix documented in `kb/reference/supported-tools-registry.md` (profile column).
|
|
50
|
+
- Profile semantics documented in `kb/reference/global-install-model.md` and `kb/procedures/maintenance-sop.md`.
|
|
51
|
+
|
|
52
|
+
### Migration notes
|
|
53
|
+
|
|
54
|
+
- If you pin `--profile standard` in CI and need to keep Gemini hooks out, switch to `--profile minimal` or pass `--skip gemini-hooks`.
|
|
55
|
+
- Copilot users on single-file mode: no action required. To adopt the directory layout, delete `.github/copilot-instructions.md` before re-running `install`.
|
|
56
|
+
- Users running `install` against a project that already has hand-edited Cursor / Windsurf / Gemini hooks are safe. All new generators preserve prefix/suffix markers and only rewrite the managed block.
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
10
60
|
## v2.12.0 — Skill Quality Pass (Rules + Gotchas + When NOT to Use) (2026-04-23)
|
|
11
61
|
|
|
12
62
|
### Added
|
package/README.md
CHANGED
|
@@ -6,17 +6,34 @@
|
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](app/skills/)
|
|
8
8
|
[](app/agents/)
|
|
9
|
-
[](tests/)
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
-
## What's New in
|
|
13
|
+
## What's New in v3.0.1
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
|
|
15
|
+
**3.0.1 is a doc-only patch** that tightens the release SOPs. No code or generator changes. The v3.0.0 feature set below is still what you get when you upgrade from 2.x.
|
|
16
|
+
|
|
17
|
+
- Release Verification SOP gains **Phase 9: Deep-Coverage Checks** — six automated assertions for the v3.0.0 native surfaces (`--profile full` emission, `--codex-skills` orthogonality, breaking-change surfaces on `standard`, install idempotence, live JSON parse, registry/generator drift) plus refreshed thresholds and a HOME-scoped-write safety warning.
|
|
18
|
+
- Release Preparation SOP now runs the registry-vs-generators drift check in Phase 5 so a misaligned `supported-tools-registry.md` can't escape into a release.
|
|
19
|
+
|
|
20
|
+
### Carried from v3.0.0 (feature release)
|
|
21
|
+
|
|
22
|
+
- **Deep coverage: every editor at 100% of its native surface.** New generators emit hooks, sub-agents, custom commands, and skill pointers per editor: `generate_cursor_agents.py`, `generate_cursor_hooks.py`, `generate_windsurf_hooks.py`, `generate_gemini_commands.py`, `generate_gemini_hooks.py`, `generate_gemini_skills.py`, `generate_augment_agents.py`, `generate_augment_commands.py`, `generate_augment_hooks.py`, `generate_augment_skills.py`, `generate_codex_skills.py`.
|
|
23
|
+
- **`--profile full`** turns on every native surface across all supported editors in one flag. `minimal` / `standard` / `strict` retain prior semantics but `standard` now also wires Gemini hooks and the Copilot directory layout (see Breaking Changes).
|
|
24
|
+
- **Opt-in Codex skill mirroring** via `--codex-skills`. Codex gets the full skill catalog materialized under `.agents/skills/`; other editors stay on pointer-skill or compat-read.
|
|
25
|
+
- **58 new bats tests** covering native surface generators plus per-editor suites for aider, antigravity, augment, claude-code, cline, codex, copilot, cursor, gemini, opencode, roo, windsurf.
|
|
26
|
+
- **Skill quality pass** (folded in from the 2.12 work that is now skipped): 62 skills upgraded to 4-5 / 5 on the meta-architect audit; `add_gotcha` added as a fifth mutation strategy.
|
|
27
|
+
|
|
28
|
+
### Breaking changes (from 3.0.0)
|
|
29
|
+
|
|
30
|
+
- `--profile standard` now installs **Gemini hooks** automatically. To opt out, use `--profile minimal` or pass `--skip gemini-hooks`.
|
|
31
|
+
- Copilot now uses the **directory layout** (`.github/copilot/`) instead of a single monolithic file. Existing single-file installs are preserved but new installs emit the directory form.
|
|
32
|
+
- `2.13.0` is skipped. Upgrade path is `2.12.x` → `3.0.0`.
|
|
33
|
+
|
|
34
|
+
### Non-breaking additions (opt-in)
|
|
35
|
+
|
|
36
|
+
- `.windsurf/hooks.json`, `.cursor/hooks.json`, `.cursor/agents/`, `.augment/agents/`, `.augment/commands/`, `.gemini/commands/`, and `.codex/skills/` are **only emitted when you opt in** via `--profile full` (or `--codex-skills` for the Codex mirror). Existing projects that upgrade to 3.0.0 without changing their install flags will see no new files in those directories — the native surfaces stay dormant until you ask for them.
|
|
20
37
|
|
|
21
38
|
See [CHANGELOG.md](CHANGELOG.md) for full history.
|
|
22
39
|
|
|
@@ -144,7 +161,7 @@ ai-toolkit/
|
|
|
144
161
|
│ └── ARCHITECTURE.md # Full system design
|
|
145
162
|
├── kb/ # Reference docs, procedures, plans
|
|
146
163
|
├── scripts/ # Validation, install, evaluation scripts
|
|
147
|
-
├── tests/ # Bats test suite (
|
|
164
|
+
├── tests/ # Bats test suite (945 tests)
|
|
148
165
|
└── CHANGELOG.md
|
|
149
166
|
```
|
|
150
167
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-toolkit",
|
|
3
3
|
"description": "Professional-grade Claude Code toolkit with persona presets, skill security auditor, expanded lifecycle hooks, experimental opt-in plugin packs, benchmark harvesting, and multi-tool support.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SoftSpark",
|
|
7
7
|
"url": "https://github.com/softspark"
|
|
@@ -15,19 +15,90 @@ Create a new Claude Code hook following ai-toolkit conventions.
|
|
|
15
15
|
|
|
16
16
|
## Supported Hook Events
|
|
17
17
|
|
|
18
|
+
### Core lifecycle
|
|
19
|
+
|
|
18
20
|
| Event | Fires When | Matcher | Typical Use |
|
|
19
21
|
|-------|-----------|---------|-------------|
|
|
20
|
-
| `SessionStart` | Session begins
|
|
22
|
+
| `SessionStart` | Session begins, resumes, or clears | `startup\|resume\|clear` | Context injection, rules reminder |
|
|
23
|
+
| `SessionEnd` | Session is closing | any | Flush logs, save transcripts |
|
|
24
|
+
| `UserPromptSubmit` | User submits a prompt | any | Prompt governance, usage tracking |
|
|
21
25
|
| `Notification` | Claude sends a notification | any | OS alerts, Slack pings |
|
|
22
|
-
|
|
23
|
-
|
|
26
|
+
|
|
27
|
+
### Tool lifecycle
|
|
28
|
+
|
|
29
|
+
| Event | Fires When | Matcher | Typical Use |
|
|
30
|
+
|-------|-----------|---------|-------------|
|
|
31
|
+
| `PreToolUse` | Before a tool executes | tool name (e.g. `Bash`) or `if:` rule | Safety guards, validation, `"defer"` for headless |
|
|
32
|
+
| `PostToolUse` | After a tool executes | tool name | Feedback loops, logging, format-on-save |
|
|
33
|
+
|
|
34
|
+
### Turn lifecycle
|
|
35
|
+
|
|
36
|
+
| Event | Fires When | Matcher | Typical Use |
|
|
37
|
+
|-------|-----------|---------|-------------|
|
|
24
38
|
| `Stop` | Claude finishes responding | any | Quality checks, session save |
|
|
25
|
-
| `
|
|
39
|
+
| `StopFailure` | Turn ends due to an API error (rate limit, auth) | any | Alerting, fallback behavior |
|
|
40
|
+
|
|
41
|
+
### Subagent lifecycle
|
|
42
|
+
|
|
43
|
+
| Event | Fires When | Matcher | Typical Use |
|
|
44
|
+
|-------|-----------|---------|-------------|
|
|
45
|
+
| `SubagentStart` | Subagent launches | any | Observability |
|
|
26
46
|
| `SubagentStop` | Subagent completes | any | Result validation |
|
|
27
|
-
|
|
28
|
-
|
|
47
|
+
|
|
48
|
+
### Compaction
|
|
49
|
+
|
|
50
|
+
| Event | Fires When | Matcher | Typical Use |
|
|
51
|
+
|-------|-----------|---------|-------------|
|
|
52
|
+
| `PreCompact` | Before context compaction; can block with exit 2 or `{"decision":"block"}` | any | Context preservation |
|
|
53
|
+
| `PostCompact` | After compaction completes | any | Re-inject state that was summarized away |
|
|
54
|
+
|
|
55
|
+
### Permissions & elicitation
|
|
56
|
+
|
|
57
|
+
| Event | Fires When | Matcher | Typical Use |
|
|
58
|
+
|-------|-----------|---------|-------------|
|
|
59
|
+
| `PermissionRequest` | Tool awaiting permission; can return `updatedInput` | any | Headless approval flows |
|
|
60
|
+
| `PermissionDenied` | Auto-mode classifier denied a tool call; return `{retry: true}` to allow retry | any | Coach the model, log denials |
|
|
61
|
+
| `Elicitation` | MCP `elicitation/create` request arrives | any | Intercept / override MCP UI prompts |
|
|
62
|
+
| `ElicitationResult` | Elicitation response ready to be sent back | any | Validate / transform elicitation replies |
|
|
63
|
+
|
|
64
|
+
### Agent Teams
|
|
65
|
+
|
|
66
|
+
| Event | Fires When | Matcher | Typical Use |
|
|
67
|
+
|-------|-----------|---------|-------------|
|
|
68
|
+
| `TaskCreated` | New task registered via `TaskCreate` | any | Audit, assignment routing |
|
|
69
|
+
| `TaskCompleted` | Agent Teams task finished | any | Lint, type check, notify |
|
|
29
70
|
| `TeammateIdle` | Agent Teams member idle | any | Completeness reminder |
|
|
30
71
|
|
|
72
|
+
### Worktrees & environment
|
|
73
|
+
|
|
74
|
+
| Event | Fires When | Matcher | Typical Use |
|
|
75
|
+
|-------|-----------|---------|-------------|
|
|
76
|
+
| `WorktreeCreate` | Worktree is being created; `type: "http"` can return `hookSpecificOutput.worktreePath` | any | Provision worktree dirs |
|
|
77
|
+
| `WorktreeRemove` | Worktree is being removed | any | Cleanup |
|
|
78
|
+
| `CwdChanged` | Working directory changes during a session | any | Reactive env management (e.g., direnv) |
|
|
79
|
+
| `FileChanged` | Tracked file is modified on disk | any | Re-lint, reload config |
|
|
80
|
+
| `ConfigChange` | Settings / config file changed | any | Re-validate, warn on drift |
|
|
81
|
+
|
|
82
|
+
### Setup / bootstrap
|
|
83
|
+
|
|
84
|
+
| Event | Fires When | Matcher | Typical Use |
|
|
85
|
+
|-------|-----------|---------|-------------|
|
|
86
|
+
| `Setup` | First-run / initialization | any | Project bootstrap |
|
|
87
|
+
| `InstructionsLoaded` | CLAUDE.md / AGENTS.md loaded into context | any | Verify presence of mandatory rules |
|
|
88
|
+
|
|
89
|
+
## Hook Handler Types
|
|
90
|
+
|
|
91
|
+
Claude Code supports four handler `type` values in `hooks.json`:
|
|
92
|
+
|
|
93
|
+
| Type | Purpose | Required fields |
|
|
94
|
+
|------|---------|-----------------|
|
|
95
|
+
| `command` | Run a shell script / binary | `command` (path + args) |
|
|
96
|
+
| `prompt` | Inject a prompt to the fast inline model and use its verdict | Handler-managed |
|
|
97
|
+
| `agent` | Spawn a full subagent to evaluate the event (must target `Stop` / `SubagentStop`) | `agent` (agent name) |
|
|
98
|
+
| `mcp_tool` | Invoke an MCP tool directly (no subprocess) | `server`, `tool`, `arguments` |
|
|
99
|
+
|
|
100
|
+
`command` remains the default and ai-toolkit's hook entries all use it. The other types are documented here so you can author them by hand when needed.
|
|
101
|
+
|
|
31
102
|
## Workflow
|
|
32
103
|
|
|
33
104
|
1. **Capture intent** -- ask: what should the hook do? Which lifecycle event?
|
|
@@ -66,8 +137,13 @@ Create a new Claude Code hook following ai-toolkit conventions.
|
|
|
66
137
|
Required fields:
|
|
67
138
|
- `_source`: always `"ai-toolkit"` (used by merge/strip logic)
|
|
68
139
|
- `matcher`: tool name or regex for Pre/PostToolUse, empty string for global events
|
|
69
|
-
- `hooks[].type`:
|
|
70
|
-
- `hooks[].command`: path to script using `$HOME/.softspark/ai-toolkit/hooks/` prefix
|
|
140
|
+
- `hooks[].type`: `"command"`, `"prompt"`, `"agent"`, or `"mcp_tool"` (ai-toolkit uses `"command"`)
|
|
141
|
+
- `hooks[].command`: path to script using `$HOME/.softspark/ai-toolkit/hooks/` prefix (for `type: command`)
|
|
142
|
+
|
|
143
|
+
Optional fields (read from Claude Code docs, not emitted by ai-toolkit by default):
|
|
144
|
+
- `hooks[].timeout`: seconds to wait before killing the hook (global default applies if omitted)
|
|
145
|
+
- `hooks[].if`: permission-rule filter (e.g. `"Bash(git push*)"`) to reduce process spawning
|
|
146
|
+
- `hooks[].statusMessage`: short message surfaced in the UI while the hook runs
|
|
71
147
|
|
|
72
148
|
## Script Template
|
|
73
149
|
|
|
@@ -28,15 +28,19 @@ Create a new skill following the Agent Skills standard.
|
|
|
28
28
|
|-------|------|----------|-------------|
|
|
29
29
|
| `name` | string | yes | Lowercase, hyphens only, max 64 chars |
|
|
30
30
|
| `description` | string | yes | Third person, max 1024 chars, include key terms |
|
|
31
|
-
| `effort` | low/medium/high/max | no | Controls model thinking budget |
|
|
31
|
+
| `effort` | low/medium/high/xhigh/max | no | Controls model thinking budget (xhigh added for Opus 4.7) |
|
|
32
32
|
| `disable-model-invocation` | bool | no | `true` = only user can trigger (task skills) |
|
|
33
33
|
| `user-invocable` | bool | no | `false` = knowledge skill, Claude auto-loads |
|
|
34
|
-
| `allowed-tools` | csv | no | Restrict tool access for safety |
|
|
35
|
-
| `
|
|
34
|
+
| `allowed-tools` | csv or YAML list | no | Restrict tool access for safety; YAML-style lists accepted |
|
|
35
|
+
| `disallowedTools` | csv or YAML list | no | Block specific tools (plugin-shipped agents) |
|
|
36
|
+
| `model` | string | no | Override default model (accepts full IDs like `claude-opus-4-7`) |
|
|
36
37
|
| `context` | string | no | `fork` to run in isolated subagent |
|
|
37
38
|
| `agent` | string | no | Agent type to use when `context: fork` |
|
|
39
|
+
| `skills` | csv | no | Auto-load skills for the invoked subagent |
|
|
38
40
|
| `argument-hint` | string | no | Shown in autocomplete, e.g. `"[target]"` |
|
|
39
|
-
| `hooks` | object | no | Lifecycle hooks (PreToolUse
|
|
41
|
+
| `hooks` | object | no | Lifecycle hooks (`PreToolUse`, `PostToolUse`, `Stop`) scoped to the skill invocation |
|
|
42
|
+
| `maxTurns` | int | no | Cap turns when skill spawns a subagent |
|
|
43
|
+
| `memory` | user/project/local | no | Persistent memory scope (agents only) |
|
|
40
44
|
|
|
41
45
|
## Classification Guide
|
|
42
46
|
|
|
@@ -0,0 +1,395 @@
|
|
|
1
|
+
{
|
|
2
|
+
"last_run": "2026-04-23T13:13:00Z",
|
|
3
|
+
"schema_version": 1,
|
|
4
|
+
"tools": {
|
|
5
|
+
"aider": {
|
|
6
|
+
"docs_hash": "3e8a0546effca7f1",
|
|
7
|
+
"headings": [
|
|
8
|
+
"Aider Documentation"
|
|
9
|
+
],
|
|
10
|
+
"markers": {
|
|
11
|
+
".aider.conf.yml": false,
|
|
12
|
+
"CONVENTIONS.md": false,
|
|
13
|
+
"architect": true,
|
|
14
|
+
"attribute-co-authored-by": false,
|
|
15
|
+
"auto-accept-architect": true,
|
|
16
|
+
"auto-commits": false,
|
|
17
|
+
"chat-language": false,
|
|
18
|
+
"commit-language": false,
|
|
19
|
+
"commit-prompt": false,
|
|
20
|
+
"lint-cmd": false,
|
|
21
|
+
"read": true,
|
|
22
|
+
"test-cmd": false,
|
|
23
|
+
"watch-files": false
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"augment": {
|
|
27
|
+
"docs_hash": "91dbc84ba3b8652b",
|
|
28
|
+
"headings": [
|
|
29
|
+
"Agent",
|
|
30
|
+
"Code Completions",
|
|
31
|
+
"Introduction",
|
|
32
|
+
"Next Edit",
|
|
33
|
+
"\u200bAuggie CLI",
|
|
34
|
+
"\u200bGet started in minutes",
|
|
35
|
+
"\u200bJetBrains IDEs",
|
|
36
|
+
"\u200bLearn more",
|
|
37
|
+
"\u200bVisual Studio Code"
|
|
38
|
+
],
|
|
39
|
+
"markers": {
|
|
40
|
+
".augment": true,
|
|
41
|
+
"ACP Mode": true,
|
|
42
|
+
"Agent mode": false,
|
|
43
|
+
"Auggie CLI": true,
|
|
44
|
+
"MCP": true,
|
|
45
|
+
"Next Edit": true,
|
|
46
|
+
"PostToolUse": false,
|
|
47
|
+
"PreToolUse": false,
|
|
48
|
+
"SKILL.md": false,
|
|
49
|
+
"SessionEnd": false,
|
|
50
|
+
"SessionStart": false,
|
|
51
|
+
"Stop": false,
|
|
52
|
+
"agent_requested": false,
|
|
53
|
+
"always_apply": false,
|
|
54
|
+
"context engine": true,
|
|
55
|
+
"custom commands": true,
|
|
56
|
+
"subagents": true
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"claude-code": {
|
|
60
|
+
"docs_hash": "a117026a47c684b9",
|
|
61
|
+
"headings": [
|
|
62
|
+
"Claude Code overview",
|
|
63
|
+
"\u200bGet started",
|
|
64
|
+
"\u200bNext steps",
|
|
65
|
+
"\u200bUse Claude Code everywhere",
|
|
66
|
+
"\u200bWhat you can do"
|
|
67
|
+
],
|
|
68
|
+
"markers": {
|
|
69
|
+
"ConfigChange": false,
|
|
70
|
+
"CwdChanged": false,
|
|
71
|
+
"Elicitation": false,
|
|
72
|
+
"ElicitationResult": false,
|
|
73
|
+
"FileChanged": false,
|
|
74
|
+
"InstructionsLoaded": false,
|
|
75
|
+
"MCP server": true,
|
|
76
|
+
"Notification": true,
|
|
77
|
+
"PermissionDenied": false,
|
|
78
|
+
"PermissionRequest": false,
|
|
79
|
+
"PostCompact": false,
|
|
80
|
+
"PostToolUse": true,
|
|
81
|
+
"PreCompact": false,
|
|
82
|
+
"PreToolUse": true,
|
|
83
|
+
"SKILL.md": true,
|
|
84
|
+
"SessionEnd": false,
|
|
85
|
+
"SessionStart": false,
|
|
86
|
+
"Setup": true,
|
|
87
|
+
"Stop": false,
|
|
88
|
+
"StopFailure": false,
|
|
89
|
+
"SubagentStart": false,
|
|
90
|
+
"SubagentStop": false,
|
|
91
|
+
"TaskCompleted": false,
|
|
92
|
+
"TaskCreated": false,
|
|
93
|
+
"TeammateIdle": false,
|
|
94
|
+
"UserPromptSubmit": false,
|
|
95
|
+
"WorktreeCreate": false,
|
|
96
|
+
"WorktreeRemove": false,
|
|
97
|
+
"hook handler: agent": false,
|
|
98
|
+
"hook handler: command": false,
|
|
99
|
+
"hook handler: mcp_tool": false,
|
|
100
|
+
"hook handler: prompt": false,
|
|
101
|
+
"output style": true,
|
|
102
|
+
"slash command": true,
|
|
103
|
+
"sub-agent": true
|
|
104
|
+
},
|
|
105
|
+
"version": "2.1.118 (Claude Code)"
|
|
106
|
+
},
|
|
107
|
+
"cline": {
|
|
108
|
+
"docs_hash": "5ed2cada4d9b3fa6",
|
|
109
|
+
"headings": [
|
|
110
|
+
"Cline CLI",
|
|
111
|
+
"Cline Documentation",
|
|
112
|
+
"Core Workflows",
|
|
113
|
+
"Customization",
|
|
114
|
+
"Features",
|
|
115
|
+
"Install Cline",
|
|
116
|
+
"MCP Servers",
|
|
117
|
+
"Models & Providers",
|
|
118
|
+
"Quick Start",
|
|
119
|
+
"What is Cline?",
|
|
120
|
+
"Your First Project",
|
|
121
|
+
"\u200bExplore the Docs",
|
|
122
|
+
"\u200bWhat is Cline?"
|
|
123
|
+
],
|
|
124
|
+
"markers": {
|
|
125
|
+
"Act Mode": true,
|
|
126
|
+
"MCP": true,
|
|
127
|
+
"Plan Mode": false,
|
|
128
|
+
"clinerules": false,
|
|
129
|
+
"conditional rules": false,
|
|
130
|
+
"custom modes": false,
|
|
131
|
+
"hooks": true,
|
|
132
|
+
"skills": true,
|
|
133
|
+
"subagents": true,
|
|
134
|
+
"workflows": true
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"codex-cli": {
|
|
138
|
+
"docs_hash": "d66e6b65d5c69da4",
|
|
139
|
+
"headings": [
|
|
140
|
+
"About",
|
|
141
|
+
"Contributing",
|
|
142
|
+
"Contributors",
|
|
143
|
+
"Docs",
|
|
144
|
+
"Folders and files",
|
|
145
|
+
"Footer",
|
|
146
|
+
"Footer navigation",
|
|
147
|
+
"Forks",
|
|
148
|
+
"History",
|
|
149
|
+
"Installing and running Codex CLI",
|
|
150
|
+
"Languages",
|
|
151
|
+
"Latest commit",
|
|
152
|
+
"License",
|
|
153
|
+
"Navigation Menu",
|
|
154
|
+
"Packages 0",
|
|
155
|
+
"Provide feedback",
|
|
156
|
+
"Quickstart",
|
|
157
|
+
"Releases 732",
|
|
158
|
+
"Repository files navigation",
|
|
159
|
+
"Resources",
|
|
160
|
+
"Saved searches",
|
|
161
|
+
"Search code, repositories, users, issues, pull requests...",
|
|
162
|
+
"Security policy",
|
|
163
|
+
"Stars",
|
|
164
|
+
"Uh oh!",
|
|
165
|
+
"Use saved searches to filter your results more quickly",
|
|
166
|
+
"Using Codex with your ChatGPT plan",
|
|
167
|
+
"Watchers",
|
|
168
|
+
"openai/codex"
|
|
169
|
+
],
|
|
170
|
+
"markers": {
|
|
171
|
+
".codex/skills": true,
|
|
172
|
+
"AGENTS.md": true,
|
|
173
|
+
"config.toml": false,
|
|
174
|
+
"hook event: PermissionRequest": false,
|
|
175
|
+
"hook event: PostToolUse": false,
|
|
176
|
+
"hook event: PreToolUse": false,
|
|
177
|
+
"hook event: SessionStart": false,
|
|
178
|
+
"hook event: Stop": false,
|
|
179
|
+
"hook event: UserPromptSubmit": false,
|
|
180
|
+
"hook handler: agent": false,
|
|
181
|
+
"hook handler: command": false,
|
|
182
|
+
"hook handler: prompt": false,
|
|
183
|
+
"hooks": false,
|
|
184
|
+
"mcp_servers": false,
|
|
185
|
+
"sandbox": true
|
|
186
|
+
},
|
|
187
|
+
"version": "codex-cli 0.122.0"
|
|
188
|
+
},
|
|
189
|
+
"cursor": {
|
|
190
|
+
"docs_hash": "594d7b663fb8b3e1",
|
|
191
|
+
"headings": [],
|
|
192
|
+
"markers": {
|
|
193
|
+
".cursor/rules": false,
|
|
194
|
+
"AGENTS.md": false,
|
|
195
|
+
"Agent Mode": false,
|
|
196
|
+
"Composer": true,
|
|
197
|
+
"cursorrules": false,
|
|
198
|
+
"hooks.json": false,
|
|
199
|
+
"mcp.json": false,
|
|
200
|
+
"plugins": true,
|
|
201
|
+
"skills": true,
|
|
202
|
+
"subagents": true
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"gemini-cli": {
|
|
206
|
+
"docs_hash": "51d03cce48332772",
|
|
207
|
+
"headings": [
|
|
208
|
+
"Breadcrumbs",
|
|
209
|
+
"Directory actions",
|
|
210
|
+
"FilesExpand file tree",
|
|
211
|
+
"Folders and files",
|
|
212
|
+
"Footer",
|
|
213
|
+
"Footer navigation",
|
|
214
|
+
"History",
|
|
215
|
+
"Latest commit",
|
|
216
|
+
"More options",
|
|
217
|
+
"Navigation Menu",
|
|
218
|
+
"Provide feedback",
|
|
219
|
+
"Saved searches",
|
|
220
|
+
"Search code, repositories, users, issues, pull requests...",
|
|
221
|
+
"Use saved searches to filter your results more quickly",
|
|
222
|
+
"docs",
|
|
223
|
+
"parent directory"
|
|
224
|
+
],
|
|
225
|
+
"markers": {
|
|
226
|
+
"AfterAgent": false,
|
|
227
|
+
"AfterTool": false,
|
|
228
|
+
"BeforeAgent": false,
|
|
229
|
+
"BeforeModel": false,
|
|
230
|
+
"BeforeTool": false,
|
|
231
|
+
"GEMINI.md": true,
|
|
232
|
+
"SKILL.md": false,
|
|
233
|
+
"SessionEnd": false,
|
|
234
|
+
"SessionStart": false,
|
|
235
|
+
"Stop": true,
|
|
236
|
+
"activate_skill": false,
|
|
237
|
+
"custom commands": false,
|
|
238
|
+
"gemini-extension.json": false,
|
|
239
|
+
"mcpServers": false,
|
|
240
|
+
"settings.json": false,
|
|
241
|
+
"tools": true
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"github-copilot": {
|
|
245
|
+
"docs_hash": "377b588e529c7deb",
|
|
246
|
+
"headings": [
|
|
247
|
+
"About Copilot auto model selection",
|
|
248
|
+
"About Copilot integrations",
|
|
249
|
+
"About agent management",
|
|
250
|
+
"About agent skills",
|
|
251
|
+
"About agentic memory for GitHub Copilot",
|
|
252
|
+
"About billing for GitHub Copilot in organizations and enterprises",
|
|
253
|
+
"About billing for individual GitHub Copilot plans",
|
|
254
|
+
"About custom agents",
|
|
255
|
+
"Articles",
|
|
256
|
+
"Did you find what you needed?",
|
|
257
|
+
"GitHub Copilot",
|
|
258
|
+
"GitHub Copilot documentation",
|
|
259
|
+
"Help and support",
|
|
260
|
+
"Help us make these docs great!",
|
|
261
|
+
"Legal",
|
|
262
|
+
"Still need help?"
|
|
263
|
+
],
|
|
264
|
+
"markers": {
|
|
265
|
+
"Copilot Chat": true,
|
|
266
|
+
"Copilot Workspace": false,
|
|
267
|
+
"Copilot cloud agent": true,
|
|
268
|
+
"MCP": true,
|
|
269
|
+
"applyTo": false,
|
|
270
|
+
"copilot-instructions.md": false,
|
|
271
|
+
"custom agents": true,
|
|
272
|
+
"instructions.md": false,
|
|
273
|
+
"prompt files": true
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"google-antigravity": {
|
|
277
|
+
"docs_hash": "509c72e157ecb6f3",
|
|
278
|
+
"headings": [],
|
|
279
|
+
"markers": {
|
|
280
|
+
"AGENTS.md": false,
|
|
281
|
+
"Antigravity": false,
|
|
282
|
+
"GEMINI.md": false,
|
|
283
|
+
"MCP": false,
|
|
284
|
+
"agent manager": false,
|
|
285
|
+
"agent permissions": false,
|
|
286
|
+
"artifacts": false,
|
|
287
|
+
"rules": false,
|
|
288
|
+
"skills": false,
|
|
289
|
+
"workflows": false
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"opencode": {
|
|
293
|
+
"docs_hash": "81d548872ef2d912",
|
|
294
|
+
"headings": [
|
|
295
|
+
"Add features",
|
|
296
|
+
"Ask questions",
|
|
297
|
+
"Configure",
|
|
298
|
+
"Customize",
|
|
299
|
+
"Initialize",
|
|
300
|
+
"Install",
|
|
301
|
+
"Intro",
|
|
302
|
+
"Make changes",
|
|
303
|
+
"On this page",
|
|
304
|
+
"Share",
|
|
305
|
+
"Undo changes",
|
|
306
|
+
"Usage"
|
|
307
|
+
],
|
|
308
|
+
"markers": {
|
|
309
|
+
"AGENTS.md": true,
|
|
310
|
+
"MCP": true,
|
|
311
|
+
"agents": true,
|
|
312
|
+
"commands": true,
|
|
313
|
+
"opencode.json": false,
|
|
314
|
+
"permission.skill": false,
|
|
315
|
+
"plugin event: command.executed": false,
|
|
316
|
+
"plugin event: message.updated": false,
|
|
317
|
+
"plugin event: permission.asked": false,
|
|
318
|
+
"plugin event: session.compacted": false,
|
|
319
|
+
"plugin event: session.created": false,
|
|
320
|
+
"plugin event: session.deleted": false,
|
|
321
|
+
"plugin event: tool.execute.after": false,
|
|
322
|
+
"plugin event: tool.execute.before": false,
|
|
323
|
+
"plugins": true,
|
|
324
|
+
"primary mode": false,
|
|
325
|
+
"rules": true,
|
|
326
|
+
"skills (native .opencode/skills)": false,
|
|
327
|
+
"skills (via .claude/skills fallback)": false,
|
|
328
|
+
"subagent mode": false
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"roo-code": {
|
|
332
|
+
"docs_hash": "960b2e1caf562b43",
|
|
333
|
+
"headings": [
|
|
334
|
+
"A mindset for success\u200b",
|
|
335
|
+
"Additional Resources\u200b",
|
|
336
|
+
"Getting Started\u200b",
|
|
337
|
+
"Roo Code Docs",
|
|
338
|
+
"Tutorial & Feature Videos\u200b",
|
|
339
|
+
"What can Roo Code do for you\u200b"
|
|
340
|
+
],
|
|
341
|
+
"markers": {
|
|
342
|
+
"Code Actions": false,
|
|
343
|
+
"MCP": true,
|
|
344
|
+
"Orchestrator mode": false,
|
|
345
|
+
"custom modes": true,
|
|
346
|
+
"description": true,
|
|
347
|
+
"groups": false,
|
|
348
|
+
"roleDefinition": false,
|
|
349
|
+
"roomodes": false,
|
|
350
|
+
"whenToUse": false
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"windsurf": {
|
|
354
|
+
"docs_hash": "99ecee90bc1efe60",
|
|
355
|
+
"headings": [
|
|
356
|
+
"Advanced",
|
|
357
|
+
"App Deploys",
|
|
358
|
+
"Cascade",
|
|
359
|
+
"Context Awareness",
|
|
360
|
+
"MCP",
|
|
361
|
+
"Memories",
|
|
362
|
+
"Recommended Plugins",
|
|
363
|
+
"Terminal",
|
|
364
|
+
"Usage",
|
|
365
|
+
"Welcome to Windsurf",
|
|
366
|
+
"Workflows",
|
|
367
|
+
"\u200b1. Select setup flow",
|
|
368
|
+
"\u200b2. Choose editor theme",
|
|
369
|
+
"\u200b3. Sign up / Log in",
|
|
370
|
+
"\u200b4. Let\u2019s Surf!",
|
|
371
|
+
"\u200bCustom App Icons (beta)",
|
|
372
|
+
"\u200bForgot to Import VS Code Configurations?",
|
|
373
|
+
"\u200bIncompatible Extensions",
|
|
374
|
+
"\u200bOnboarding",
|
|
375
|
+
"\u200bSet Up",
|
|
376
|
+
"\u200bThings to Try",
|
|
377
|
+
"\u200bUninstall Windsurf",
|
|
378
|
+
"\u200bUpdate Windsurf",
|
|
379
|
+
"\u200bWindsurf Next"
|
|
380
|
+
],
|
|
381
|
+
"markers": {
|
|
382
|
+
"AGENTS.md": true,
|
|
383
|
+
"Cascade": true,
|
|
384
|
+
"MCP": true,
|
|
385
|
+
"always_on": false,
|
|
386
|
+
"glob": true,
|
|
387
|
+
"hooks": true,
|
|
388
|
+
"memories": true,
|
|
389
|
+
"model_decision": false,
|
|
390
|
+
"windsurfrules": false,
|
|
391
|
+
"workflows": true
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
}
|