@softspark/ai-toolkit 2.11.0 → 3.0.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/AGENTS.md +21 -21
- package/CHANGELOG.md +62 -0
- package/README.md +16 -9
- package/app/.claude-plugin/plugin.json +1 -1
- package/app/agents/meta-architect.md +44 -0
- package/app/skills/agent-creator/SKILL.md +22 -6
- package/app/skills/analyze/SKILL.md +21 -1
- package/app/skills/api-patterns/SKILL.md +27 -0
- package/app/skills/app-builder/SKILL.md +24 -0
- package/app/skills/architecture-audit/SKILL.md +24 -0
- package/app/skills/architecture-decision/SKILL.md +24 -0
- package/app/skills/biz-scan/SKILL.md +24 -0
- package/app/skills/brand-voice/SKILL.md +36 -0
- package/app/skills/briefing/SKILL.md +41 -1
- package/app/skills/build/SKILL.md +24 -1
- package/app/skills/chaos/SKILL.md +22 -1
- package/app/skills/ci/SKILL.md +22 -1
- package/app/skills/ci-cd-patterns/SKILL.md +25 -0
- package/app/skills/command-creator/SKILL.md +31 -2
- package/app/skills/content-moderation-patterns/SKILL.md +25 -0
- package/app/skills/database-patterns/SKILL.md +25 -0
- package/app/skills/debug/SKILL.md +23 -1
- package/app/skills/design-engineering/SKILL.md +25 -0
- package/app/skills/docker-devops/SKILL.md +26 -0
- package/app/skills/ecommerce-patterns/SKILL.md +26 -0
- package/app/skills/evaluate/SKILL.md +22 -1
- package/app/skills/evolve/SKILL.md +25 -0
- package/app/skills/explain/SKILL.md +26 -1
- package/app/skills/explore/SKILL.md +25 -0
- package/app/skills/fix/SKILL.md +26 -1
- package/app/skills/git-mastery/SKILL.md +26 -0
- package/app/skills/grill-me/SKILL.md +22 -7
- package/app/skills/health/SKILL.md +22 -1
- package/app/skills/hipaa-validate/SKILL.md +25 -8
- package/app/skills/hook-creator/SKILL.md +107 -14
- package/app/skills/index/SKILL.md +22 -1
- package/app/skills/instinct-review/SKILL.md +25 -1
- package/app/skills/introspect/SKILL.md +26 -1
- package/app/skills/lint/SKILL.md +27 -1
- package/app/skills/mcp-builder/SKILL.md +27 -0
- package/app/skills/mem-search/SKILL.md +40 -0
- package/app/skills/migrate/SKILL.md +27 -1
- package/app/skills/migration-patterns/SKILL.md +26 -0
- package/app/skills/night-watch/SKILL.md +22 -1
- package/app/skills/observability-patterns/SKILL.md +26 -0
- package/app/skills/onboard/SKILL.md +22 -1
- package/app/skills/panic/SKILL.md +21 -1
- package/app/skills/performance-profiling/SKILL.md +34 -0
- package/app/skills/persona/SKILL.md +21 -4
- package/app/skills/plan/SKILL.md +26 -0
- package/app/skills/plan-writing/SKILL.md +26 -0
- package/app/skills/plugin-creator/SKILL.md +23 -6
- package/app/skills/pr/SKILL.md +24 -1
- package/app/skills/prd-to-issues/SKILL.md +22 -6
- package/app/skills/prd-to-plan/SKILL.md +22 -4
- package/app/skills/predict/SKILL.md +25 -0
- package/app/skills/qa-session/SKILL.md +23 -7
- package/app/skills/rag-patterns/SKILL.md +26 -0
- package/app/skills/refactor/SKILL.md +26 -0
- package/app/skills/refactor-plan/SKILL.md +23 -6
- package/app/skills/rollback/SKILL.md +27 -1
- package/app/skills/security-patterns/SKILL.md +27 -0
- package/app/skills/skill-audit/SKILL.md +22 -5
- package/app/skills/skill-creator/SKILL.md +58 -13
- package/app/skills/swift-patterns/SKILL.md +27 -107
- package/app/skills/swift-patterns/reference/frameworks.md +111 -0
- package/app/skills/test/SKILL.md +23 -1
- package/app/skills/testing-patterns/SKILL.md +26 -0
- package/app/skills/triage-issue/SKILL.md +22 -4
- package/app/skills/ubiquitous-language/SKILL.md +23 -8
- 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 +91 -12
- package/kb/procedures/release-verification-sop.md +24 -6
- package/kb/reference/global-install-model.md +15 -2
- package/kb/reference/supported-tools-registry.md +229 -0
- package/llms-full.txt +1105 -43
- 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/evaluate_skills.py +84 -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
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Plan: Deep Coverage v3.0 — 100% Native Surface Utilization Across 12 Tools"
|
|
3
|
+
category: planning
|
|
4
|
+
service: ai-toolkit
|
|
5
|
+
doc_type: plan
|
|
6
|
+
status: completed
|
|
7
|
+
tags: [v3, deep-coverage, ecosystem, generators, hooks, skills, subagents, commands, profile-full]
|
|
8
|
+
created: "2026-04-23"
|
|
9
|
+
last_updated: "2026-04-23"
|
|
10
|
+
completed: "2026-04-23"
|
|
11
|
+
completion: "100%"
|
|
12
|
+
description: "Ship v3.0.0 where every supported editor exposes the full ai-toolkit surface it is capable of hosting natively: hooks, subagents, custom commands, skill pointers. Introduce --profile full. Skip the 2.13.0 interim release and fold the completed deep sweep into 3.0.0."
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# Plan: Deep Coverage v3.0 — 100% Native Surface Utilization
|
|
16
|
+
|
|
17
|
+
**Status:** :yellow_circle: IN PROGRESS
|
|
18
|
+
**Invocation:** continuation of `ecosystem-deep-sweep-2026-04-23` — same orchestration model
|
|
19
|
+
**Estimated effort:** 10-15h orchestrated (~3h wall-clock across 4 parallel buckets + consolidation)
|
|
20
|
+
**Deliverable:** v3.0.0 release where every editor's native surface is fully utilized; `--profile full` available
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 1. Objective
|
|
25
|
+
|
|
26
|
+
After the 2026-04-23 deep sweep closed the doc-drift gap, **v3.0.0 closes the capability-utilization gap**: each editor now exposes the full ai-toolkit surface it can host natively.
|
|
27
|
+
|
|
28
|
+
Definition of "100% coverage" chosen: **each editor works at 100% of its native capability** (compat-read counts). No cargo-cult duplication. No writing to `~/.cursor/`, `~/.augment/rules/` etc. globally.
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## 2. Policy decisions (immutable constraints for all buckets)
|
|
33
|
+
|
|
34
|
+
| # | Decision | Rule |
|
|
35
|
+
|---|----------|------|
|
|
36
|
+
| 1 | Skill propagation | `.claude/skills/` canonical. Cursor/Windsurf/opencode → compat-read (nothing). Augment/Gemini/Antigravity → **pointer skill** (1 file per editor). Codex → opt-in `--codex-skills` flag emits full mirror |
|
|
37
|
+
| 2 | Global writes | Only `~/.claude/`. Cursor/Windsurf/opencode get global coverage via compat-read. Augment/Gemini/Roo require `--local` |
|
|
38
|
+
| 3 | Surface activation | **`--profile full`** turns on every native surface. `standard` stays close to today's defaults but adds niepodważalne wypełnienia (Copilot wiring + Gemini hooks). `minimal` unchanged |
|
|
39
|
+
| 4 | Default behavior | `--editors <name>` alone uses `standard`. Users who want the full stack pass `--profile full` |
|
|
40
|
+
| 5 | Version | Skip 2.13. Ship everything (completed sweep + v3 work) as **3.0.0** with migration notes |
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## 3. What's missing → what each bucket delivers
|
|
45
|
+
|
|
46
|
+
### Bucket 1 — Hooks generators (backend-specialist)
|
|
47
|
+
|
|
48
|
+
**Owned files**
|
|
49
|
+
- New: `scripts/generate_gemini_hooks.py` (writes `.gemini/settings.json` hooks merge)
|
|
50
|
+
- New: `scripts/generate_cursor_hooks.py` (writes `.cursor/hooks.json`)
|
|
51
|
+
- New: `scripts/generate_windsurf_hooks.py` (writes `.windsurf/hooks.json`)
|
|
52
|
+
- New: `scripts/generate_augment_hooks.py` (writes `~/.augment/settings.json` hooks merge)
|
|
53
|
+
- New: `tests/test_hooks_per_editor.bats` (≥20 tests covering all 4 generators)
|
|
54
|
+
|
|
55
|
+
**Must-haves**
|
|
56
|
+
- All generators reuse `~/.softspark/ai-toolkit/hooks/*.sh` scripts (no duplicate shell code).
|
|
57
|
+
- Preserve user-authored hook entries; mark our entries with `_source: ai-toolkit`.
|
|
58
|
+
- Idempotent on regeneration.
|
|
59
|
+
- Event mapping informed by each editor's docs (Claude Code events ↔ target editor events).
|
|
60
|
+
|
|
61
|
+
### Bucket 2 — Native agents + custom commands (ai-engineer)
|
|
62
|
+
|
|
63
|
+
**Owned files**
|
|
64
|
+
- New: `scripts/generate_augment_agents.py` (`.augment/agents/*.md` with YAML frontmatter: name, description, model, color, tools, disabled_tools)
|
|
65
|
+
- New: `scripts/generate_augment_commands.py` (`.augment/commands/*.md` from user-invocable skills)
|
|
66
|
+
- New: `scripts/generate_cursor_agents.py` (`.cursor/agents/*.md` mirroring Claude Code agents)
|
|
67
|
+
- New: `scripts/generate_gemini_commands.py` (`.gemini/commands/*.toml` custom slash commands)
|
|
68
|
+
- New: `tests/test_native_surfaces.bats` (≥25 tests)
|
|
69
|
+
|
|
70
|
+
**Must-haves**
|
|
71
|
+
- Filter: only `user-invocable: true` skills become custom commands.
|
|
72
|
+
- `ai-toolkit-*` prefix everywhere for install/uninstall sweep.
|
|
73
|
+
- Do not touch files without our prefix.
|
|
74
|
+
|
|
75
|
+
### Bucket 3 — Skill pointers + Codex mirror (ai-engineer)
|
|
76
|
+
|
|
77
|
+
**Owned files**
|
|
78
|
+
- New: `scripts/generate_gemini_skills.py` (`.gemini/skills/ai-toolkit-skill-catalogue/SKILL.md` — pointer)
|
|
79
|
+
- New: `scripts/generate_augment_skills.py` (`.augment/skills/ai-toolkit-skill-catalogue/SKILL.md` — pointer)
|
|
80
|
+
- New: `scripts/generate_codex_skills.py` (full mirror to `.codex/skills/<name>/SKILL.md` — gated by `--codex-skills` flag)
|
|
81
|
+
- New: `tests/test_skills_native.bats` (≥15 tests)
|
|
82
|
+
|
|
83
|
+
**Must-haves**
|
|
84
|
+
- Pointer pattern same as Antigravity: 1 file per editor referencing `~/.claude/skills/<name>` and listing the catalogue.
|
|
85
|
+
- Codex mirror respects `user-invocable: false` (knowledge skills stay, task skills stay — Codex reads them all).
|
|
86
|
+
- `--codex-skills` must be opt-in; default OFF.
|
|
87
|
+
|
|
88
|
+
### Bucket 4 — Install wiring + profile full + docs (devops-implementer)
|
|
89
|
+
|
|
90
|
+
**Owned files**
|
|
91
|
+
- `scripts/install_steps/ai_tools.py` — wire in all new generators from buckets 1-3
|
|
92
|
+
- `scripts/install.py` — parse `--profile full`, propagate to `_create_local_ai_tool_configs`
|
|
93
|
+
- `scripts/config_validator.py` — ensure `full` profile is accepted (already present, verify)
|
|
94
|
+
- `README.md` — "What's New in v3.0.0" + migration notes
|
|
95
|
+
- `CHANGELOG.md` — v3.0.0 entry
|
|
96
|
+
- `kb/reference/global-install-model.md` — document profile semantics
|
|
97
|
+
- `kb/reference/supported-tools-registry.md` — per-tool "generators by profile" column
|
|
98
|
+
- `kb/procedures/maintenance-sop.md` — profile table update
|
|
99
|
+
- `package.json` version bump → `3.0.0`
|
|
100
|
+
- `package-lock.json` sync
|
|
101
|
+
- `tests/test_install_profiles.bats` (≥15 tests covering minimal/standard/strict/full × 3 editors)
|
|
102
|
+
|
|
103
|
+
**Must-haves**
|
|
104
|
+
- `standard` profile: Copilot directory mode ON, Gemini hooks ON (non-breaking additions).
|
|
105
|
+
- `full` profile: everything from `standard` + all native surfaces from buckets 1-3.
|
|
106
|
+
- Migration note: users on `standard` today get Copilot instructions/prompts and Gemini hooks automatically after upgrading (acceptable breaking for major bump, documented).
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## 4. Success criteria
|
|
111
|
+
|
|
112
|
+
- [ ] 13 new Python generators (6+4+3, minus wiring)
|
|
113
|
+
- [ ] ≥75 new bats tests across buckets
|
|
114
|
+
- [ ] `npm test` green
|
|
115
|
+
- [ ] `python3 scripts/validate.py --strict` 0/0
|
|
116
|
+
- [ ] `python3 scripts/ecosystem_doctor.py --check` exit 0
|
|
117
|
+
- [ ] `ai-toolkit install --local --editors all --profile full` produces every native surface per editor
|
|
118
|
+
- [ ] `ai-toolkit install --local --editors all --profile standard` is still minimal-invasive (no subagents, no hooks for non-Claude editors) **except** Copilot + Gemini hooks (both documented migration notes)
|
|
119
|
+
- [ ] README test badge bumped
|
|
120
|
+
- [ ] CHANGELOG v3.0.0 entry
|
|
121
|
+
- [ ] All docs updated (registry, install model, maintenance SOP)
|
|
122
|
+
- [ ] Single atomic commit
|
|
123
|
+
- [ ] Tag `v3.0.0` ready (push held for user confirmation)
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## 5. Safety rails
|
|
128
|
+
|
|
129
|
+
- **Do not commit during bucket work.** Orchestrator consolidates.
|
|
130
|
+
- **Do not touch files outside your bucket's ownership list.**
|
|
131
|
+
- **Preserve user files** via `ai-toolkit-*` prefix on generated artifacts.
|
|
132
|
+
- **Do not write to global editor paths** (`~/.cursor/`, `~/.augment/rules/`, etc.) — policy decision 2.
|
|
133
|
+
- **Do not change `standard` profile in ways that break existing users**, beyond the two documented additions (Copilot directory mode + Gemini hooks).
|
|
134
|
+
- **Test per bucket locally before reporting.** Bucket reports must include a "tests green" line.
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## 6. Consolidation steps (orchestrator)
|
|
139
|
+
|
|
140
|
+
1. Merge all 4 bucket registry deltas into `scripts/ecosystem_tools.json`
|
|
141
|
+
2. Run `python3 scripts/ecosystem_doctor.py --update`
|
|
142
|
+
3. Run `npm run generate:all`
|
|
143
|
+
4. Bump `package.json` → `3.0.0`; sync `package-lock.json`
|
|
144
|
+
5. Update `README.md` badge + "What's New"
|
|
145
|
+
6. Update `CHANGELOG.md` with v3.0.0 entry (include migration notes)
|
|
146
|
+
7. Run `python3 scripts/validate.py --strict` (must pass 0/0)
|
|
147
|
+
8. Run `npm test` (all green)
|
|
148
|
+
9. Run `python3 scripts/ecosystem_doctor.py --check` (exit 0)
|
|
149
|
+
10. Move this plan doc to `kb/history/completed/deep-coverage-v3-20260423.md`
|
|
150
|
+
11. Single commit + tag `v3.0.0`
|
|
151
|
+
12. Hold push pending user confirmation
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## 7. Related
|
|
156
|
+
|
|
157
|
+
- `kb/history/completed/ecosystem-deep-sweep-20260423.md` — predecessor plan (doc-drift closure)
|
|
158
|
+
- `kb/reference/global-install-model.md` — install scope semantics
|
|
159
|
+
- `kb/reference/supported-tools-registry.md` — tool registry
|
|
160
|
+
- `scripts/config_validator.py` — `VALID_PROFILES` already includes `full`
|