claude-mem-lite 2.3.3 → 2.5.2
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/.claude-plugin/plugin.json +1 -1
- package/dispatch-feedback.mjs +45 -0
- package/dispatch-inject.mjs +4 -1
- package/dispatch-workflow.mjs +20 -5
- package/dispatch.mjs +108 -18
- package/haiku-client.mjs +1 -0
- package/hook-context.mjs +32 -1
- package/hook-handoff.mjs +27 -0
- package/hook-llm.mjs +35 -12
- package/hook-memory.mjs +44 -7
- package/hook-shared.mjs +2 -1
- package/hook.mjs +65 -35
- package/install.mjs +430 -1
- package/package.json +1 -1
- package/registry-indexer.mjs +4 -1
- package/registry.mjs +12 -2
- package/schema.mjs +4 -0
- package/server-internals.mjs +68 -1
- package/server.mjs +22 -30
- package/utils.mjs +64 -0
package/install.mjs
CHANGED
|
@@ -34,6 +34,9 @@ const RESOURCE_METADATA = {
|
|
|
34
34
|
domain_tags: 'claude,skill,markdown',
|
|
35
35
|
capability_summary: 'Guide for creating and authoring new Claude Code skills with proper structure and metadata',
|
|
36
36
|
trigger_patterns: 'when user wants to create a new skill or extend Claude capabilities with custom workflows',
|
|
37
|
+
keywords: 'skill-builder,skill-authoring,skill-template,extend-claude',
|
|
38
|
+
tech_stack: 'claude-code',
|
|
39
|
+
use_cases: 'create skill;extend Claude',
|
|
37
40
|
},
|
|
38
41
|
'skill:frontend-design': {
|
|
39
42
|
intent_tags: 'design,ui,ux,frontend,css,component,layout,styling,interface',
|
|
@@ -41,30 +44,44 @@ const RESOURCE_METADATA = {
|
|
|
41
44
|
capability_summary: 'Create distinctive production-grade frontend interfaces with high design quality',
|
|
42
45
|
trigger_patterns: 'when user needs to build or design UI components pages or web interfaces',
|
|
43
46
|
invocation_name: 'frontend-design:frontend-design',
|
|
47
|
+
keywords: 'ui-build,component-library,responsive-layout,design-system',
|
|
48
|
+
tech_stack: 'sass,jsx,tailwindcss,javascript',
|
|
49
|
+
use_cases: 'UI design;layout build;component build;user experience',
|
|
44
50
|
},
|
|
45
51
|
'skill:webapp-testing': {
|
|
46
52
|
intent_tags: 'test,webapp,e2e,browser,qa,selenium,cypress,integration',
|
|
47
53
|
domain_tags: 'browser,web,testing',
|
|
48
54
|
capability_summary: 'Web application testing with browser automation and E2E test suites',
|
|
49
55
|
trigger_patterns: 'when user needs to test web applications in a browser or write E2E tests',
|
|
56
|
+
keywords: 'browser-automation,e2e-test,selenium-test,web-qa',
|
|
57
|
+
tech_stack: 'chromium,playwright,http,rest,jest',
|
|
58
|
+
use_cases: 'write unit tests;increase test coverage',
|
|
50
59
|
},
|
|
51
60
|
'skill:mcp-builder': {
|
|
52
61
|
intent_tags: 'mcp,server,tool,integration,build,protocol,plugin',
|
|
53
62
|
domain_tags: 'mcp,node,typescript',
|
|
54
63
|
capability_summary: 'Build MCP servers and tool integrations for Claude Code',
|
|
55
64
|
trigger_patterns: 'when user wants to build an MCP server or create tool integrations',
|
|
65
|
+
keywords: 'mcp-server,tool-builder,protocol-server,claude-extension',
|
|
66
|
+
tech_stack: 'mcp-sdk,json-rpc,nodejs,npm',
|
|
67
|
+
use_cases: 'build MCP server;create tool',
|
|
56
68
|
},
|
|
57
69
|
'skill:pdf': {
|
|
58
70
|
intent_tags: 'pdf,document,generate,export,report,print',
|
|
59
71
|
domain_tags: 'pdf,document',
|
|
60
72
|
capability_summary: 'Generate and export PDF documents from content',
|
|
61
73
|
trigger_patterns: 'when user needs to create generate or export PDF documents',
|
|
74
|
+
keywords: 'pdf-generation,document-export,report-builder,print-format',
|
|
75
|
+
tech_stack: 'docx',
|
|
76
|
+
use_cases: 'code generation;auto-generate',
|
|
62
77
|
},
|
|
63
78
|
'skill:doc-coauthoring': {
|
|
64
79
|
intent_tags: 'documentation,writing,collaborate,docs,readme,technical-writing',
|
|
65
80
|
domain_tags: 'markdown,docs,documentation',
|
|
66
81
|
capability_summary: 'Collaborative documentation writing and technical content authoring',
|
|
67
82
|
trigger_patterns: 'when user needs help writing documentation README or technical content',
|
|
83
|
+
keywords: 'collaborative-docs,technical-writing,readme-authoring',
|
|
84
|
+
use_cases: 'write documentation;update README',
|
|
68
85
|
},
|
|
69
86
|
'skill:superpowers-brainstorming': {
|
|
70
87
|
intent_tags: 'brainstorm,design,planning,creative,ideas,explore,requirements',
|
|
@@ -72,6 +89,9 @@ const RESOURCE_METADATA = {
|
|
|
72
89
|
capability_summary: 'Explore user intent requirements and design before implementation through structured brainstorming',
|
|
73
90
|
trigger_patterns: 'when user needs to brainstorm ideas explore requirements or plan creative solutions before coding',
|
|
74
91
|
invocation_name: 'superpowers:brainstorming',
|
|
92
|
+
keywords: 'ideation,requirements,creative-thinking,design-session,explore-options',
|
|
93
|
+
tech_stack: 'architecture',
|
|
94
|
+
use_cases: 'explore ideas;gather requirements;UI design;layout build',
|
|
75
95
|
},
|
|
76
96
|
'skill:superpowers-tdd': {
|
|
77
97
|
intent_tags: 'test,tdd,testing,unittest,spec,coverage,quality,red-green-refactor',
|
|
@@ -79,6 +99,9 @@ const RESOURCE_METADATA = {
|
|
|
79
99
|
capability_summary: 'Test-driven development workflow with red-green-refactor cycle and quality checks',
|
|
80
100
|
trigger_patterns: 'when user wants to write tests first or follow TDD methodology for feature development',
|
|
81
101
|
invocation_name: 'superpowers:test-driven-development',
|
|
102
|
+
keywords: 'red-green-refactor,test-first,test-driven,unit-tests,spec-writing',
|
|
103
|
+
tech_stack: 'jest,vitest,pytest,es6,pip',
|
|
104
|
+
use_cases: 'write unit tests;increase test coverage',
|
|
82
105
|
},
|
|
83
106
|
'skill:superpowers-debugging': {
|
|
84
107
|
intent_tags: 'debug,troubleshoot,fix,error,systematic,diagnose,bug,crash,failure',
|
|
@@ -86,6 +109,8 @@ const RESOURCE_METADATA = {
|
|
|
86
109
|
capability_summary: 'Systematic debugging approach for complex bugs using hypothesis-driven investigation',
|
|
87
110
|
trigger_patterns: 'when user encounters bugs errors crashes or unexpected behavior that needs systematic debugging',
|
|
88
111
|
invocation_name: 'superpowers:systematic-debugging',
|
|
112
|
+
keywords: 'root-cause,hypothesis-driven,stack-trace,reproduce-bug,isolate-error',
|
|
113
|
+
use_cases: 'debug errors;isolate issues;fix bugs',
|
|
89
114
|
},
|
|
90
115
|
'skill:superpowers-code-review': {
|
|
91
116
|
intent_tags: 'review,code-review,quality,audit,feedback,inspect,pr-review',
|
|
@@ -93,6 +118,9 @@ const RESOURCE_METADATA = {
|
|
|
93
118
|
capability_summary: 'Structured code review requesting with quality checklists and feedback gathering',
|
|
94
119
|
trigger_patterns: 'when user wants to request or perform a thorough code review of their changes',
|
|
95
120
|
invocation_name: 'superpowers:requesting-code-review',
|
|
121
|
+
keywords: 'peer-review,code-quality,checklist,review-feedback,merge-review',
|
|
122
|
+
tech_stack: 'linter,analyzer,diff,pr-review',
|
|
123
|
+
use_cases: 'code review;identify issues',
|
|
96
124
|
},
|
|
97
125
|
'skill:superpowers-writing-plans': {
|
|
98
126
|
intent_tags: 'plan,architecture,spec,implementation,blueprint,roadmap,strategy',
|
|
@@ -100,6 +128,8 @@ const RESOURCE_METADATA = {
|
|
|
100
128
|
capability_summary: 'Write structured implementation plans from specs before touching code',
|
|
101
129
|
trigger_patterns: 'when user has requirements or specs and needs a multi-step implementation plan before coding',
|
|
102
130
|
invocation_name: 'superpowers:writing-plans',
|
|
131
|
+
keywords: 'implementation-plan,task-breakdown,spec-to-plan,step-by-step',
|
|
132
|
+
use_cases: 'architecture design;implementation planning',
|
|
103
133
|
},
|
|
104
134
|
'skill:superpowers-git-worktrees': {
|
|
105
135
|
intent_tags: 'git,worktree,branch,isolation,parallel,workspace',
|
|
@@ -107,6 +137,9 @@ const RESOURCE_METADATA = {
|
|
|
107
137
|
capability_summary: 'Create isolated git worktrees for parallel feature development',
|
|
108
138
|
trigger_patterns: 'when user needs to work on multiple branches simultaneously or isolate feature work',
|
|
109
139
|
invocation_name: 'superpowers:using-git-worktrees',
|
|
140
|
+
keywords: 'parallel-branches,isolated-workspace,worktree,concurrent-work',
|
|
141
|
+
tech_stack: 'github',
|
|
142
|
+
use_cases: 'git workflow;version control',
|
|
110
143
|
},
|
|
111
144
|
'skill:superpowers-verification': {
|
|
112
145
|
intent_tags: 'verify,check,test,complete,quality,validation,evidence',
|
|
@@ -114,30 +147,44 @@ const RESOURCE_METADATA = {
|
|
|
114
147
|
capability_summary: 'Verify work is complete by running checks and gathering evidence before claiming done',
|
|
115
148
|
trigger_patterns: 'when user is about to claim work is complete and needs verification before committing',
|
|
116
149
|
invocation_name: 'superpowers:verification-before-completion',
|
|
150
|
+
keywords: 'verify-before-commit,final-check,evidence-based,confirm-passing',
|
|
151
|
+
tech_stack: 'linter,analyzer',
|
|
152
|
+
use_cases: 'write unit tests;increase test coverage',
|
|
117
153
|
},
|
|
118
154
|
'skill:playwright-skill': {
|
|
119
155
|
intent_tags: 'playwright,browser,automation,test,e2e,screenshot,scrape',
|
|
120
156
|
domain_tags: 'playwright,browser,testing',
|
|
121
157
|
capability_summary: 'Browser automation with Playwright for testing forms screenshots and web interactions',
|
|
122
158
|
trigger_patterns: 'when user needs to automate browser interactions test web pages or take screenshots with Playwright',
|
|
159
|
+
keywords: 'playwright-test,browser-script,page-interaction,screenshot',
|
|
160
|
+
tech_stack: 'chromium,jest,vitest,pytest',
|
|
123
161
|
},
|
|
124
162
|
'skill:planning-with-files': {
|
|
125
163
|
intent_tags: 'plan,files,organize,structure,project,scope',
|
|
126
164
|
domain_tags: 'planning,project',
|
|
127
165
|
capability_summary: 'Plan project structure and organize files before implementation',
|
|
128
166
|
trigger_patterns: 'when user needs to plan file structure or organize project layout before building',
|
|
167
|
+
keywords: 'file-structure,project-layout,directory-plan,scaffolding',
|
|
168
|
+
tech_stack: 'architecture',
|
|
169
|
+
use_cases: 'architecture design;implementation planning',
|
|
129
170
|
},
|
|
130
171
|
'skill:code-review-expert': {
|
|
131
172
|
intent_tags: 'review,code-review,expert,quality,SOLID,security,architecture',
|
|
132
173
|
domain_tags: 'quality,review,security',
|
|
133
174
|
capability_summary: 'Expert code review detecting SOLID violations security risks and architectural issues',
|
|
134
175
|
trigger_patterns: 'when user needs expert-level code review with SOLID analysis and security scanning',
|
|
176
|
+
keywords: 'expert-analysis,deep-review,architectural-review,pattern-violations',
|
|
177
|
+
tech_stack: 'linter,analyzer,diff,pr-review,owasp',
|
|
178
|
+
use_cases: 'code review;identify issues',
|
|
135
179
|
},
|
|
136
180
|
'skill:ui-ux-pro-max': {
|
|
137
181
|
intent_tags: 'ui,ux,design,frontend,pro,interface,visual,styling',
|
|
138
182
|
domain_tags: 'ui,ux,frontend,css',
|
|
139
183
|
capability_summary: 'Professional UI/UX design with polished visual styling and user experience focus',
|
|
140
184
|
trigger_patterns: 'when user needs professional-grade UI/UX design with strong visual polish',
|
|
185
|
+
keywords: 'polished-ui,professional-design,visual-quality,ux-patterns',
|
|
186
|
+
tech_stack: 'html,javascript,sass',
|
|
187
|
+
use_cases: 'UI design;component build;user experience;interaction design',
|
|
141
188
|
},
|
|
142
189
|
// ─── Agents ──────────────────────────────────────────────────────────────
|
|
143
190
|
'agent:code-review-ai': {
|
|
@@ -145,126 +192,175 @@ const RESOURCE_METADATA = {
|
|
|
145
192
|
domain_tags: 'quality,review',
|
|
146
193
|
capability_summary: 'AI-powered automated code review with quality analysis and improvement suggestions',
|
|
147
194
|
trigger_patterns: 'when user wants AI-automated code review or quality analysis of their codebase',
|
|
195
|
+
keywords: 'automated-review,ai-review,review-assistant,pr-feedback',
|
|
196
|
+
tech_stack: 'linter,analyzer,diff,pr-review',
|
|
197
|
+
use_cases: 'code review;identify issues',
|
|
148
198
|
},
|
|
149
199
|
'agent:tdd-workflows': {
|
|
150
200
|
intent_tags: 'test,tdd,workflow,testing,quality,unittest,spec',
|
|
151
201
|
domain_tags: 'testing,tdd',
|
|
152
202
|
capability_summary: 'Automated TDD workflow agent for test-first development cycles',
|
|
153
203
|
trigger_patterns: 'when user wants automated TDD workflow support with test generation and execution',
|
|
204
|
+
keywords: 'tdd-cycle,test-first,red-green,failing-test,test-driven',
|
|
205
|
+
tech_stack: 'jest,vitest,pytest',
|
|
206
|
+
use_cases: 'write unit tests;increase test coverage',
|
|
154
207
|
},
|
|
155
208
|
'agent:debugging-toolkit': {
|
|
156
209
|
intent_tags: 'debug,toolkit,error,troubleshoot,fix,diagnose,trace,crash',
|
|
157
210
|
domain_tags: 'debugging,error-handling',
|
|
158
211
|
capability_summary: 'Debugging toolkit agent with error analysis stack trace investigation and fix suggestions',
|
|
159
212
|
trigger_patterns: 'when user has errors or crashes and needs automated debugging assistance and fix suggestions',
|
|
213
|
+
keywords: 'stack,investigation,suggestions,errors',
|
|
214
|
+
use_cases: 'debug errors;isolate issues;error handling;error tracking',
|
|
160
215
|
},
|
|
161
216
|
'agent:code-refactoring': {
|
|
162
217
|
intent_tags: 'refactor,clean,simplify,restructure,organize,improve,technical-debt',
|
|
163
218
|
domain_tags: 'refactoring,quality',
|
|
164
219
|
capability_summary: 'Automated code refactoring for cleaner structure reduced complexity and technical debt',
|
|
165
220
|
trigger_patterns: 'when user wants to refactor code simplify complex logic or reduce technical debt',
|
|
221
|
+
keywords: 'restructure,extract-method,rename,simplify,solid-principles',
|
|
222
|
+
tech_stack: 'linter,analyzer',
|
|
223
|
+
use_cases: 'refactor code;reduce complexity;simplify code',
|
|
166
224
|
},
|
|
167
225
|
'agent:code-documentation': {
|
|
168
226
|
intent_tags: 'documentation,docs,readme,jsdoc,comment,docstring,api-docs',
|
|
169
227
|
domain_tags: 'documentation,docs',
|
|
170
228
|
capability_summary: 'Automated code documentation generation including JSDoc README and API docs',
|
|
171
229
|
trigger_patterns: 'when user needs to generate documentation add JSDoc comments or create README files',
|
|
230
|
+
keywords: 'inline-docs,jsdoc,docstring,comment-generation',
|
|
231
|
+
use_cases: 'write documentation;update README',
|
|
172
232
|
},
|
|
173
233
|
'agent:security-scanning': {
|
|
174
234
|
intent_tags: 'security,scan,vulnerability,audit,owasp,secrets,xss,injection',
|
|
175
235
|
domain_tags: 'security,audit',
|
|
176
236
|
capability_summary: 'Security vulnerability scanning for OWASP issues secrets leaks and injection flaws',
|
|
177
237
|
trigger_patterns: 'when user needs security scanning for vulnerabilities secrets or OWASP compliance',
|
|
238
|
+
keywords: 'vuln-scan,dependency-audit,cve-check,sast,dast',
|
|
239
|
+
tech_stack: 'owasp,cve',
|
|
240
|
+
use_cases: 'security audit;vulnerability scan;vulnerability scanning;security patching',
|
|
178
241
|
},
|
|
179
242
|
'agent:application-performance': {
|
|
180
243
|
intent_tags: 'performance,optimize,profile,benchmark,speed,latency,memory',
|
|
181
244
|
domain_tags: 'performance,optimization',
|
|
182
245
|
capability_summary: 'Application performance profiling optimization and benchmark analysis',
|
|
183
246
|
trigger_patterns: 'when user needs to profile optimize or benchmark application performance',
|
|
247
|
+
keywords: 'latency-analysis,response-time,throughput',
|
|
248
|
+
tech_stack: 'profiler,apm,benchmark',
|
|
249
|
+
use_cases: 'optimize performance;reduce latency;performance profiling;bottleneck detection',
|
|
184
250
|
},
|
|
185
251
|
'agent:api-scaffolding': {
|
|
186
252
|
intent_tags: 'api,scaffold,rest,endpoint,backend,route,express,fastify',
|
|
187
253
|
domain_tags: 'api,backend,rest',
|
|
188
254
|
capability_summary: 'Scaffold REST API endpoints with routes controllers and validation boilerplate',
|
|
189
255
|
trigger_patterns: 'when user needs to scaffold new API endpoints or build REST backend structure',
|
|
256
|
+
keywords: 'api-generator,endpoint-scaffold,route-setup,openapi-spec',
|
|
257
|
+
tech_stack: 'openapi',
|
|
258
|
+
use_cases: 'API design;create endpoints;project scaffolding;boilerplate setup',
|
|
190
259
|
},
|
|
191
260
|
'agent:database-design': {
|
|
192
261
|
intent_tags: 'database,schema,sql,design,model,erd,table,relation',
|
|
193
262
|
domain_tags: 'database,sql,schema',
|
|
194
263
|
capability_summary: 'Database schema design with table relationships indexes and normalization',
|
|
195
264
|
trigger_patterns: 'when user needs to design database schema create tables or model data relationships',
|
|
265
|
+
keywords: 'schema-design,entity-relationship,normalization,table-design',
|
|
266
|
+
tech_stack: 'orm,postgresql,mysql,migration',
|
|
267
|
+
use_cases: 'database design;schema migration;schema design;data modeling',
|
|
196
268
|
},
|
|
197
269
|
'agent:database-migrations': {
|
|
198
270
|
intent_tags: 'database,migration,schema,alter,sql,upgrade,rollback',
|
|
199
271
|
domain_tags: 'database,sql,migration',
|
|
200
272
|
capability_summary: 'Database migration generation with schema alterations upgrade and rollback support',
|
|
201
273
|
trigger_patterns: 'when user needs to create database migrations alter schemas or manage schema versions',
|
|
274
|
+
keywords: 'migration-script,schema-change,alter-table,rollback-plan',
|
|
275
|
+
tech_stack: 'orm,postgresql,mysql,alembic,flyway',
|
|
276
|
+
use_cases: 'database design;schema migration;data migration;schema design',
|
|
202
277
|
},
|
|
203
278
|
'agent:cicd-automation': {
|
|
204
279
|
intent_tags: 'ci,cd,automation,pipeline,deploy,github-actions,workflow',
|
|
205
280
|
domain_tags: 'cicd,devops,deploy',
|
|
206
281
|
capability_summary: 'CI/CD pipeline automation with GitHub Actions workflow configuration and deploy setup',
|
|
207
282
|
trigger_patterns: 'when user needs to set up CI/CD pipelines configure GitHub Actions or automate deployments',
|
|
283
|
+
keywords: 'ci-pipeline,github-actions,jenkins,build-automation,deploy-pipeline',
|
|
284
|
+
tech_stack: 'ci,cd,pipeline',
|
|
285
|
+
use_cases: 'continuous integration;build pipeline;continuous deployment;release pipeline',
|
|
208
286
|
},
|
|
209
287
|
'agent:git-pr-workflows': {
|
|
210
288
|
intent_tags: 'git,pr,pull-request,merge,workflow,branch,commit',
|
|
211
289
|
domain_tags: 'git,workflow',
|
|
212
290
|
capability_summary: 'Git PR workflow automation with branch management commit strategy and merge handling',
|
|
213
291
|
trigger_patterns: 'when user needs help with git PR workflows branch management or merge strategies',
|
|
292
|
+
keywords: 'pull-request,pr-template,review-process,branch-strategy',
|
|
293
|
+
tech_stack: 'github',
|
|
294
|
+
use_cases: 'git workflow;version control',
|
|
214
295
|
},
|
|
215
296
|
'agent:unit-testing': {
|
|
216
297
|
intent_tags: 'test,unit,jest,vitest,mocha,pytest,unittest,spec',
|
|
217
298
|
domain_tags: 'testing,unittest',
|
|
218
299
|
capability_summary: 'Unit test generation and execution with jest vitest mocha or pytest',
|
|
219
300
|
trigger_patterns: 'when user needs to write or generate unit tests using jest vitest mocha or pytest',
|
|
301
|
+
keywords: 'unit-test,isolated-tests,mock-setup,assertion,test-runner',
|
|
302
|
+
tech_stack: 'jest,vitest,pytest',
|
|
303
|
+
use_cases: 'write unit tests;increase test coverage',
|
|
220
304
|
},
|
|
221
305
|
'agent:dependency-management': {
|
|
222
306
|
intent_tags: 'dependency,npm,package,update,manage,upgrade,audit,outdated',
|
|
223
307
|
domain_tags: 'dependencies,npm,package',
|
|
224
308
|
capability_summary: 'Dependency management with version updates audit and compatibility checking',
|
|
225
309
|
trigger_patterns: 'when user needs to manage update audit or resolve dependency conflicts',
|
|
310
|
+
keywords: 'version,updates,compatibility,checking,resolve,conflicts',
|
|
226
311
|
},
|
|
227
312
|
'agent:error-debugging': {
|
|
228
313
|
intent_tags: 'error,debug,diagnose,stack-trace,fix,exception,crash,runtime',
|
|
229
314
|
domain_tags: 'debugging,error-handling',
|
|
230
315
|
capability_summary: 'Error diagnosis from stack traces with root cause analysis and fix suggestions',
|
|
231
316
|
trigger_patterns: 'when user has runtime errors exceptions or stack traces that need diagnosis and fixing',
|
|
317
|
+
keywords: 'diagnosis,stack,traces,root,cause',
|
|
318
|
+
use_cases: 'error handling;error tracking;debug errors;isolate issues',
|
|
232
319
|
},
|
|
233
320
|
'agent:python-development': {
|
|
234
321
|
intent_tags: 'python,pip,poetry,django,flask,fastapi,virtualenv',
|
|
235
322
|
domain_tags: 'python,backend',
|
|
236
323
|
capability_summary: 'Python development agent for Django Flask FastAPI and general Python projects',
|
|
237
324
|
trigger_patterns: 'when user is working on Python projects with pip poetry Django Flask or FastAPI',
|
|
325
|
+
tech_stack: 'pip',
|
|
238
326
|
},
|
|
239
327
|
'agent:javascript-typescript': {
|
|
240
328
|
intent_tags: 'javascript,typescript,node,npm,web,react,express,fullstack',
|
|
241
329
|
domain_tags: 'javascript,typescript,node,web',
|
|
242
330
|
capability_summary: 'JavaScript and TypeScript development agent for Node.js React and web projects',
|
|
243
331
|
trigger_patterns: 'when user is working on JavaScript TypeScript Node.js or web development projects',
|
|
332
|
+
tech_stack: 'es6,nodejs,npm,http,rest',
|
|
244
333
|
},
|
|
245
334
|
'agent:cloud-infrastructure': {
|
|
246
335
|
intent_tags: 'cloud,aws,gcp,azure,infrastructure,terraform,iac,devops',
|
|
247
336
|
domain_tags: 'cloud,infrastructure,devops',
|
|
248
337
|
capability_summary: 'Cloud infrastructure management with AWS GCP Azure and Terraform IaC',
|
|
249
338
|
trigger_patterns: 'when user needs to manage cloud infrastructure with AWS GCP Azure or Terraform',
|
|
339
|
+
tech_stack: 'ci,cd,pipeline',
|
|
250
340
|
},
|
|
251
341
|
'agent:ui-design': {
|
|
252
342
|
intent_tags: 'ui,design,frontend,css,component,layout,responsive',
|
|
253
343
|
domain_tags: 'ui,frontend,css',
|
|
254
344
|
capability_summary: 'UI design agent for frontend component layout and responsive design implementation',
|
|
255
345
|
trigger_patterns: 'when user needs to design and implement UI components layouts or responsive interfaces',
|
|
346
|
+
tech_stack: 'html,javascript,sass',
|
|
347
|
+
use_cases: 'UI design;component build;layout build;frontend development',
|
|
256
348
|
},
|
|
257
349
|
'agent:frontend-developer': {
|
|
258
350
|
intent_tags: 'frontend,react,vue,web,component,spa,interface',
|
|
259
351
|
domain_tags: 'frontend,react,vue,web',
|
|
260
352
|
capability_summary: 'Frontend development agent for React Vue and modern web application building',
|
|
261
353
|
trigger_patterns: 'when user needs to build frontend applications with React Vue or modern web frameworks',
|
|
354
|
+
tech_stack: 'html,css,javascript,jsx,vuex',
|
|
355
|
+
use_cases: 'frontend development;component build',
|
|
262
356
|
},
|
|
263
357
|
'agent:mcp-expert': {
|
|
264
358
|
intent_tags: 'mcp,server,tool,integration,protocol,sdk,plugin',
|
|
265
359
|
domain_tags: 'mcp,protocol,integration',
|
|
266
360
|
capability_summary: 'MCP protocol expert for building servers tools and integrations with the MCP SDK',
|
|
267
361
|
trigger_patterns: 'when user needs expert help with MCP protocol server development or tool integration',
|
|
362
|
+
tech_stack: 'mcp-sdk,json-rpc',
|
|
363
|
+
use_cases: 'build MCP server;create tool',
|
|
268
364
|
},
|
|
269
365
|
'agent:component-reviewer': {
|
|
270
366
|
intent_tags: 'component,review,quality,frontend,react,vue,audit',
|
|
@@ -276,18 +372,22 @@ const RESOURCE_METADATA = {
|
|
|
276
372
|
domain_tags: 'marketing,cro,analytics',
|
|
277
373
|
capability_summary: 'Set up A/B tests with variant design hypothesis tracking and statistical analysis',
|
|
278
374
|
trigger_patterns: 'when user needs to set up A/B tests or split tests for marketing experiments',
|
|
375
|
+
keywords: 'hypothesis,tracking,statistical',
|
|
279
376
|
},
|
|
280
377
|
'skill:ad-creative': {
|
|
281
378
|
intent_tags: 'ad,creative,advertising,copy,banner,campaign,visual,marketing',
|
|
282
379
|
domain_tags: 'marketing,advertising,creative',
|
|
283
380
|
capability_summary: 'Create compelling ad creative copy and visuals for advertising campaigns',
|
|
284
381
|
trigger_patterns: 'when user needs to create ad creatives copy or advertising campaign assets',
|
|
382
|
+
keywords: 'compelling,visuals,campaigns,creatives,assets',
|
|
285
383
|
},
|
|
286
384
|
'skill:ai-seo': {
|
|
287
385
|
intent_tags: 'ai,seo,search,optimization,llm,generative,marketing',
|
|
288
386
|
domain_tags: 'marketing,seo,ai',
|
|
289
387
|
capability_summary: 'AI-powered SEO optimization for search visibility and content ranking',
|
|
290
388
|
trigger_patterns: 'when user needs AI-driven SEO strategies or search optimization',
|
|
389
|
+
keywords: 'ai-powered,visibility,ranking,ai-driven,strategies',
|
|
390
|
+
use_cases: 'search optimization;meta tags',
|
|
291
391
|
},
|
|
292
392
|
'skill:analytics-tracking': {
|
|
293
393
|
intent_tags: 'analytics,tracking,metrics,data,ga4,events,conversion,marketing',
|
|
@@ -300,270 +400,339 @@ const RESOURCE_METADATA = {
|
|
|
300
400
|
domain_tags: 'marketing,retention,saas',
|
|
301
401
|
capability_summary: 'Design churn prevention strategies with retention campaigns and lifecycle engagement',
|
|
302
402
|
trigger_patterns: 'when user needs to reduce churn or improve customer retention',
|
|
403
|
+
keywords: 'prevention,strategies,campaigns,reduce,improve',
|
|
303
404
|
},
|
|
304
405
|
'skill:cold-email': {
|
|
305
406
|
intent_tags: 'cold-email,outreach,sales,prospecting,email,b2b,marketing',
|
|
306
407
|
domain_tags: 'marketing,email,sales',
|
|
307
408
|
capability_summary: 'Write effective cold email sequences for outreach and sales prospecting',
|
|
308
409
|
trigger_patterns: 'when user needs to write cold emails outreach sequences or sales prospecting messages',
|
|
410
|
+
keywords: 'write,effective,cold,sequences,emails,messages',
|
|
309
411
|
},
|
|
310
412
|
'skill:competitor-alternatives': {
|
|
311
413
|
intent_tags: 'competitor,alternatives,comparison,analysis,positioning,marketing',
|
|
312
414
|
domain_tags: 'marketing,seo,competitive',
|
|
313
415
|
capability_summary: 'Create competitor comparison and alternatives pages for SEO and positioning',
|
|
314
416
|
trigger_patterns: 'when user needs competitor analysis alternative comparison pages or competitive positioning',
|
|
417
|
+
keywords: 'pages,alternative',
|
|
315
418
|
},
|
|
316
419
|
'skill:content-strategy': {
|
|
317
420
|
intent_tags: 'content,strategy,blog,editorial,calendar,publishing,marketing',
|
|
318
421
|
domain_tags: 'marketing,content,editorial',
|
|
319
422
|
capability_summary: 'Plan content strategy with editorial calendars topic clusters and publishing workflows',
|
|
320
423
|
trigger_patterns: 'when user needs content strategy editorial planning or blog content organization',
|
|
424
|
+
keywords: 'plan,calendars,topic,clusters',
|
|
321
425
|
},
|
|
322
426
|
'skill:copy-editing': {
|
|
323
427
|
intent_tags: 'copy-editing,proofread,writing,grammar,clarity,tone,marketing',
|
|
324
428
|
domain_tags: 'marketing,writing,editing',
|
|
325
429
|
capability_summary: 'Professional copy editing for marketing content with clarity tone and grammar improvement',
|
|
326
430
|
trigger_patterns: 'when user needs copy editing proofreading or marketing content polishing',
|
|
431
|
+
keywords: 'professional,copy,improvement,proofreading,polishing',
|
|
327
432
|
},
|
|
328
433
|
'skill:copywriting': {
|
|
329
434
|
intent_tags: 'copywriting,persuasion,landing-page,headline,cta,conversion,marketing',
|
|
330
435
|
domain_tags: 'marketing,copywriting,conversion',
|
|
331
436
|
capability_summary: 'Write persuasive marketing copy for landing pages headlines CTAs and conversion',
|
|
332
437
|
trigger_patterns: 'when user needs persuasive copywriting for landing pages or marketing materials',
|
|
438
|
+
keywords: 'write,persuasive,copy,landing,pages,headlines',
|
|
333
439
|
},
|
|
334
440
|
'skill:email-sequence': {
|
|
335
441
|
intent_tags: 'email,sequence,drip,automation,nurture,onboarding,marketing',
|
|
336
442
|
domain_tags: 'marketing,email,automation',
|
|
337
443
|
capability_summary: 'Design email sequences with drip campaigns nurture flows and automated triggers',
|
|
338
444
|
trigger_patterns: 'when user needs to create email sequences drip campaigns or automated email flows',
|
|
445
|
+
keywords: 'sequences,campaigns,flows,triggers',
|
|
339
446
|
},
|
|
340
447
|
'skill:form-cro': {
|
|
341
448
|
intent_tags: 'form,cro,conversion,optimization,signup,lead,marketing',
|
|
342
449
|
domain_tags: 'marketing,cro,forms',
|
|
343
450
|
capability_summary: 'Optimize web forms for higher conversion rates with field reduction and UX improvements',
|
|
344
451
|
trigger_patterns: 'when user needs to optimize forms for better conversion rates',
|
|
452
|
+
keywords: 'optimize,higher,rates,field,reduction,improvements',
|
|
345
453
|
},
|
|
346
454
|
'skill:free-tool-strategy': {
|
|
347
455
|
intent_tags: 'free-tool,growth,acquisition,lead-gen,viral,product-led,marketing',
|
|
348
456
|
domain_tags: 'marketing,growth,product',
|
|
349
457
|
capability_summary: 'Plan free tool strategies for lead generation viral growth and user acquisition',
|
|
350
458
|
trigger_patterns: 'when user wants to build free tools for marketing lead generation or growth',
|
|
459
|
+
keywords: 'plan,free,strategies,lead',
|
|
351
460
|
},
|
|
352
461
|
'skill:launch-strategy': {
|
|
353
462
|
intent_tags: 'launch,strategy,go-to-market,product-launch,gtm,marketing',
|
|
354
463
|
domain_tags: 'marketing,launch,product',
|
|
355
464
|
capability_summary: 'Plan product launch strategies with go-to-market timelines and channel selection',
|
|
356
465
|
trigger_patterns: 'when user needs a product launch strategy or go-to-market plan',
|
|
466
|
+
keywords: 'plan,strategies,timelines,channel,selection',
|
|
357
467
|
},
|
|
358
468
|
'skill:marketing-ideas': {
|
|
359
469
|
intent_tags: 'marketing,ideas,brainstorm,growth,creative,campaign,marketing',
|
|
360
470
|
domain_tags: 'marketing,creative,growth',
|
|
361
471
|
capability_summary: 'Generate creative marketing ideas and growth campaign brainstorming',
|
|
362
472
|
trigger_patterns: 'when user needs marketing ideas creative campaign concepts or growth brainstorming',
|
|
473
|
+
keywords: 'generate,brainstorming,concepts',
|
|
474
|
+
use_cases: 'explore ideas;gather requirements',
|
|
363
475
|
},
|
|
364
476
|
'skill:marketing-psychology': {
|
|
365
477
|
intent_tags: 'psychology,persuasion,behavior,neuromarketing,bias,influence,marketing',
|
|
366
478
|
domain_tags: 'marketing,psychology,persuasion',
|
|
367
479
|
capability_summary: 'Apply marketing psychology principles like scarcity social proof and cognitive biases',
|
|
368
480
|
trigger_patterns: 'when user wants to apply psychological principles to marketing or conversion optimization',
|
|
481
|
+
keywords: 'apply,principles,scarcity,social,proof,cognitive',
|
|
369
482
|
},
|
|
370
483
|
'skill:onboarding-cro': {
|
|
371
484
|
intent_tags: 'onboarding,cro,activation,ux,first-run,welcome,marketing',
|
|
372
485
|
domain_tags: 'marketing,cro,onboarding',
|
|
373
486
|
capability_summary: 'Optimize user onboarding flows for activation and first-run conversion',
|
|
374
487
|
trigger_patterns: 'when user needs to improve onboarding flows user activation or first-run experience',
|
|
488
|
+
keywords: 'optimize,flows,conversion,improve,experience',
|
|
375
489
|
},
|
|
376
490
|
'skill:page-cro': {
|
|
377
491
|
intent_tags: 'page,cro,landing-page,conversion,layout,optimization,marketing',
|
|
378
492
|
domain_tags: 'marketing,cro,landing-page',
|
|
379
493
|
capability_summary: 'Optimize landing pages for conversion with layout copy and CTA improvements',
|
|
380
494
|
trigger_patterns: 'when user needs to optimize landing pages or web pages for higher conversion',
|
|
495
|
+
keywords: 'optimize,landing,pages,copy,improvements,higher',
|
|
381
496
|
},
|
|
382
497
|
'skill:paid-ads': {
|
|
383
498
|
intent_tags: 'paid-ads,ppc,campaign,google-ads,meta-ads,budget,marketing',
|
|
384
499
|
domain_tags: 'marketing,advertising,ppc',
|
|
385
500
|
capability_summary: 'Plan and optimize paid advertising campaigns across Google Meta and ad platforms',
|
|
386
501
|
trigger_patterns: 'when user needs to plan or optimize paid ad campaigns PPC or advertising budgets',
|
|
502
|
+
keywords: 'plan,optimize,paid,campaigns,google,meta',
|
|
387
503
|
},
|
|
388
504
|
'skill:paywall-upgrade-cro': {
|
|
389
505
|
intent_tags: 'paywall,upgrade,conversion,pricing,upsell,premium,marketing',
|
|
390
506
|
domain_tags: 'marketing,cro,pricing',
|
|
391
507
|
capability_summary: 'Optimize paywall and upgrade flows for premium conversion and upsell',
|
|
392
508
|
trigger_patterns: 'when user needs to optimize paywall upgrade flows or premium conversion rates',
|
|
509
|
+
keywords: 'optimize,flows,rates',
|
|
393
510
|
},
|
|
394
511
|
'skill:popup-cro': {
|
|
395
512
|
intent_tags: 'popup,cro,conversion,lead-capture,exit-intent,modal,marketing',
|
|
396
513
|
domain_tags: 'marketing,cro,popup',
|
|
397
514
|
capability_summary: 'Design high-converting popups with exit-intent triggers and lead capture optimization',
|
|
398
515
|
trigger_patterns: 'when user needs to create or optimize popups for lead capture or conversion',
|
|
516
|
+
keywords: 'high-converting,popups,triggers,lead,capture',
|
|
399
517
|
},
|
|
400
518
|
'skill:pricing-strategy': {
|
|
401
519
|
intent_tags: 'pricing,strategy,monetization,revenue,tiers,freemium,marketing',
|
|
402
520
|
domain_tags: 'marketing,pricing,business',
|
|
403
521
|
capability_summary: 'Design pricing strategies with tier structures freemium models and revenue optimization',
|
|
404
522
|
trigger_patterns: 'when user needs pricing strategy tier design or monetization planning',
|
|
523
|
+
keywords: 'strategies,tier,structures,optimization',
|
|
405
524
|
},
|
|
406
525
|
'skill:product-marketing-context': {
|
|
407
526
|
intent_tags: 'product,positioning,messaging,value-prop,context,differentiation,marketing',
|
|
408
527
|
domain_tags: 'marketing,product,positioning',
|
|
409
528
|
capability_summary: 'Define product positioning messaging and value proposition for marketing context',
|
|
410
529
|
trigger_patterns: 'when user needs product positioning value proposition or marketing messaging framework',
|
|
530
|
+
keywords: 'define,value,proposition',
|
|
411
531
|
},
|
|
412
532
|
'skill:programmatic-seo': {
|
|
413
533
|
intent_tags: 'programmatic-seo,automation,pages,templates,scale,marketing',
|
|
414
534
|
domain_tags: 'marketing,seo,automation',
|
|
415
535
|
capability_summary: 'Build programmatic SEO pages at scale with templates and automated content generation',
|
|
416
536
|
trigger_patterns: 'when user needs programmatic SEO pages at scale or templated content generation',
|
|
537
|
+
keywords: 'programmatic,templated',
|
|
417
538
|
},
|
|
418
539
|
'skill:referral-program': {
|
|
419
540
|
intent_tags: 'referral,viral,growth,program,incentive,share,marketing',
|
|
420
541
|
domain_tags: 'marketing,growth,referral',
|
|
421
542
|
capability_summary: 'Design referral programs with incentive structures viral mechanics and tracking',
|
|
422
543
|
trigger_patterns: 'when user needs to design referral programs or viral growth mechanics',
|
|
544
|
+
keywords: 'programs,structures,mechanics,tracking',
|
|
423
545
|
},
|
|
424
546
|
'skill:schema-markup': {
|
|
425
547
|
intent_tags: 'schema,structured-data,seo,markup,rich-snippets,json-ld,marketing',
|
|
426
548
|
domain_tags: 'marketing,seo,schema',
|
|
427
549
|
capability_summary: 'Implement schema markup and structured data for rich search snippets',
|
|
428
550
|
trigger_patterns: 'when user needs schema markup structured data or JSON-LD for SEO',
|
|
551
|
+
keywords: 'data,rich,search,snippets',
|
|
552
|
+
tech_stack: 'orm,migration',
|
|
553
|
+
use_cases: 'schema design;data modeling;search optimization;meta tags',
|
|
429
554
|
},
|
|
430
555
|
'skill:mktg-seo-audit': {
|
|
431
556
|
intent_tags: 'seo,audit,technical,analysis,crawl,marketing',
|
|
432
557
|
domain_tags: 'marketing,seo,audit',
|
|
433
558
|
capability_summary: 'Marketing-focused SEO audit with technical and content analysis',
|
|
434
559
|
trigger_patterns: 'when user needs a marketing-focused SEO audit or technical site analysis',
|
|
560
|
+
keywords: 'marketing-focused,site',
|
|
561
|
+
use_cases: 'search optimization;meta tags;code audit;quality assessment',
|
|
435
562
|
},
|
|
436
563
|
'skill:signup-flow-cro': {
|
|
437
564
|
intent_tags: 'signup,flow,cro,conversion,registration,onboarding,marketing',
|
|
438
565
|
domain_tags: 'marketing,cro,signup',
|
|
439
566
|
capability_summary: 'Optimize signup and registration flows for higher conversion rates',
|
|
440
567
|
trigger_patterns: 'when user needs to optimize signup flows registration pages or conversion funnels',
|
|
568
|
+
keywords: 'optimize,flows,higher,rates,pages,funnels',
|
|
441
569
|
},
|
|
442
570
|
'skill:social-content': {
|
|
443
571
|
intent_tags: 'social,content,twitter,linkedin,posts,engagement,marketing',
|
|
444
572
|
domain_tags: 'marketing,social-media,content',
|
|
445
573
|
capability_summary: 'Create engaging social media content for Twitter LinkedIn and social platforms',
|
|
446
574
|
trigger_patterns: 'when user needs social media content posts or engagement strategies',
|
|
575
|
+
keywords: 'engaging,media,platforms,strategies',
|
|
447
576
|
},
|
|
448
577
|
'skill:seo-audit': {
|
|
449
578
|
intent_tags: 'seo,audit,technical,analysis,crawl,indexing',
|
|
450
579
|
domain_tags: 'seo,audit,web',
|
|
451
580
|
capability_summary: 'Comprehensive SEO audit with technical analysis crawl errors and performance checks',
|
|
452
581
|
trigger_patterns: 'when user needs a comprehensive SEO audit or technical site analysis',
|
|
582
|
+
keywords: 'errors,performance,checks,site',
|
|
583
|
+
tech_stack: 'http,rest',
|
|
584
|
+
use_cases: 'search optimization;meta tags;code audit;quality assessment',
|
|
453
585
|
},
|
|
454
586
|
'skill:seo-competitor-pages': {
|
|
455
587
|
intent_tags: 'seo,competitor,pages,analysis,serp,ranking,gap',
|
|
456
588
|
domain_tags: 'seo,competitive,analysis',
|
|
457
589
|
capability_summary: 'Analyze competitor pages for SEO strategy gaps and ranking opportunities',
|
|
458
590
|
trigger_patterns: 'when user needs SEO competitor page analysis or SERP gap identification',
|
|
591
|
+
keywords: 'analyze,strategy,gaps,opportunities,page,identification',
|
|
592
|
+
use_cases: 'search optimization;meta tags',
|
|
459
593
|
},
|
|
460
594
|
'skill:seo-content': {
|
|
461
595
|
intent_tags: 'seo,content,optimization,keywords,writing,on-page,headings',
|
|
462
596
|
domain_tags: 'seo,content,writing',
|
|
463
597
|
capability_summary: 'Optimize content for SEO with keyword integration heading structure and readability',
|
|
464
598
|
trigger_patterns: 'when user needs to optimize content for SEO keywords or on-page factors',
|
|
599
|
+
keywords: 'optimize,keyword,integration,heading,structure,readability',
|
|
600
|
+
use_cases: 'search optimization;meta tags',
|
|
465
601
|
},
|
|
466
602
|
'skill:seo-geo': {
|
|
467
603
|
intent_tags: 'seo,geo,local,location,regional,gmb,maps',
|
|
468
604
|
domain_tags: 'seo,local,geo',
|
|
469
605
|
capability_summary: 'Implement geo-targeted and local SEO strategies for regional visibility',
|
|
470
606
|
trigger_patterns: 'when user needs local SEO geo-targeting or regional search optimization',
|
|
607
|
+
keywords: 'geo-targeted,strategies,visibility,geo-targeting,search,optimization',
|
|
608
|
+
use_cases: 'search optimization;meta tags',
|
|
471
609
|
},
|
|
472
610
|
'skill:seo-hreflang': {
|
|
473
611
|
intent_tags: 'seo,hreflang,international,multilingual,i18n,language,region',
|
|
474
612
|
domain_tags: 'seo,international,i18n',
|
|
475
613
|
capability_summary: 'Implement hreflang tags for international and multilingual SEO',
|
|
476
614
|
trigger_patterns: 'when user needs hreflang implementation international SEO or multilingual site setup',
|
|
615
|
+
keywords: 'tags,site,setup',
|
|
616
|
+
use_cases: 'search optimization;meta tags',
|
|
477
617
|
},
|
|
478
618
|
'skill:seo-images': {
|
|
479
619
|
intent_tags: 'seo,images,optimization,alt-text,compression,webp,lazy-load',
|
|
480
620
|
domain_tags: 'seo,images,performance',
|
|
481
621
|
capability_summary: 'Optimize images for SEO with alt text compression formats and lazy loading',
|
|
482
622
|
trigger_patterns: 'when user needs image SEO optimization alt text or image compression strategies',
|
|
623
|
+
keywords: 'optimize,formats,lazy,loading,image',
|
|
624
|
+
tech_stack: 'profiler,apm',
|
|
625
|
+
use_cases: 'search optimization;meta tags',
|
|
483
626
|
},
|
|
484
627
|
'skill:seo-page': {
|
|
485
628
|
intent_tags: 'seo,page,on-page,meta,title,description,optimization',
|
|
486
629
|
domain_tags: 'seo,on-page,meta',
|
|
487
630
|
capability_summary: 'On-page SEO optimization with meta tags title optimization and page structure',
|
|
488
631
|
trigger_patterns: 'when user needs on-page SEO meta tag optimization or page structure improvements',
|
|
632
|
+
keywords: 'tags,structure,improvements',
|
|
633
|
+
use_cases: 'search optimization;meta tags',
|
|
489
634
|
},
|
|
490
635
|
'skill:seo-plan': {
|
|
491
636
|
intent_tags: 'seo,plan,strategy,roadmap,goals,timeline,priorities',
|
|
492
637
|
domain_tags: 'seo,strategy,planning',
|
|
493
638
|
capability_summary: 'Create SEO strategy plans with goals roadmap timelines and priority actions',
|
|
494
639
|
trigger_patterns: 'when user needs an SEO strategy plan roadmap or prioritized action items',
|
|
640
|
+
keywords: 'plans,timelines,priority,actions,prioritized,action',
|
|
641
|
+
tech_stack: 'architecture',
|
|
642
|
+
use_cases: 'search optimization;meta tags;architecture design;implementation planning',
|
|
495
643
|
},
|
|
496
644
|
'skill:seo-programmatic': {
|
|
497
645
|
intent_tags: 'seo,programmatic,scale,templates,automation,dynamic,pages',
|
|
498
646
|
domain_tags: 'seo,programmatic,automation',
|
|
499
647
|
capability_summary: 'Build programmatic SEO with dynamic templates and automated page generation at scale',
|
|
500
648
|
trigger_patterns: 'when user needs programmatic SEO dynamic page generation or automated content at scale',
|
|
649
|
+
use_cases: 'search optimization;meta tags',
|
|
501
650
|
},
|
|
502
651
|
'skill:seo-schema': {
|
|
503
652
|
intent_tags: 'seo,schema,structured-data,json-ld,rich-snippets,markup',
|
|
504
653
|
domain_tags: 'seo,schema,structured-data',
|
|
505
654
|
capability_summary: 'Implement SEO schema markup with JSON-LD for rich snippets and search features',
|
|
506
655
|
trigger_patterns: 'when user needs SEO schema markup JSON-LD or structured data implementation',
|
|
656
|
+
keywords: 'rich,snippets,search,features,data',
|
|
657
|
+
tech_stack: 'orm,migration',
|
|
658
|
+
use_cases: 'search optimization;meta tags;schema design;data modeling',
|
|
507
659
|
},
|
|
508
660
|
'skill:seo-sitemap': {
|
|
509
661
|
intent_tags: 'seo,sitemap,xml,crawl,index,robots,submission',
|
|
510
662
|
domain_tags: 'seo,sitemap,technical',
|
|
511
663
|
capability_summary: 'Generate and optimize XML sitemaps for crawl efficiency and index coverage',
|
|
512
664
|
trigger_patterns: 'when user needs XML sitemap generation optimization or crawl management',
|
|
665
|
+
keywords: 'generate,optimize,sitemaps,efficiency,coverage',
|
|
666
|
+
use_cases: 'search optimization;meta tags',
|
|
513
667
|
},
|
|
514
668
|
'skill:seo-technical': {
|
|
515
669
|
intent_tags: 'seo,technical,core-web-vitals,crawl,indexing',
|
|
516
670
|
domain_tags: 'seo,technical',
|
|
517
671
|
capability_summary: 'Technical SEO audit covering core web vitals site speed crawlability and indexing',
|
|
518
672
|
trigger_patterns: 'when user needs technical SEO improvements core web vitals or site speed optimization',
|
|
673
|
+
keywords: 'audit,core,vitals,site,speed',
|
|
674
|
+
use_cases: 'search optimization;meta tags',
|
|
519
675
|
},
|
|
520
676
|
'agent:seo-content-agent': {
|
|
521
677
|
intent_tags: 'seo,content,agent,writing,optimization,automated',
|
|
522
678
|
domain_tags: 'seo,content,agent',
|
|
523
679
|
capability_summary: 'Automated SEO content agent for writing and optimizing search-friendly content',
|
|
524
680
|
trigger_patterns: 'when user wants automated SEO content writing or optimization assistance',
|
|
681
|
+
keywords: 'optimizing,search-friendly,assistance',
|
|
682
|
+
use_cases: 'search optimization;meta tags',
|
|
525
683
|
},
|
|
526
684
|
'agent:seo-performance-agent': {
|
|
527
685
|
intent_tags: 'seo,agent,core-web-vitals,pagespeed',
|
|
528
686
|
domain_tags: 'seo,agent',
|
|
529
687
|
capability_summary: 'SEO performance monitoring agent for core web vitals and page speed analysis',
|
|
530
688
|
trigger_patterns: 'when user needs automated SEO performance monitoring or speed optimization',
|
|
689
|
+
keywords: 'performance,core,vitals,page,speed',
|
|
690
|
+
use_cases: 'search optimization;meta tags',
|
|
531
691
|
},
|
|
532
692
|
'agent:seo-schema-agent': {
|
|
533
693
|
intent_tags: 'seo,schema,agent,structured-data,automation,json-ld',
|
|
534
694
|
domain_tags: 'seo,schema,agent',
|
|
535
695
|
capability_summary: 'Automated schema markup agent for generating and validating structured data',
|
|
536
696
|
trigger_patterns: 'when user wants automated schema markup generation or structured data validation',
|
|
697
|
+
keywords: 'markup,generating,validating,data,validation',
|
|
698
|
+
tech_stack: 'orm,migration',
|
|
699
|
+
use_cases: 'search optimization;meta tags;schema design;data modeling',
|
|
537
700
|
},
|
|
538
701
|
'agent:seo-sitemap-agent': {
|
|
539
702
|
intent_tags: 'seo,sitemap,agent,xml,automation,crawl',
|
|
540
703
|
domain_tags: 'seo,sitemap,agent',
|
|
541
704
|
capability_summary: 'Automated sitemap management agent for XML generation and submission',
|
|
542
705
|
trigger_patterns: 'when user wants automated sitemap generation management or submission',
|
|
706
|
+
use_cases: 'search optimization;meta tags',
|
|
543
707
|
},
|
|
544
708
|
'agent:seo-technical-agent': {
|
|
545
709
|
intent_tags: 'seo,technical,agent,audit,automation,crawl,indexing',
|
|
546
710
|
domain_tags: 'seo,technical,agent',
|
|
547
711
|
capability_summary: 'Automated technical SEO agent for crawl analysis indexing and site health monitoring',
|
|
548
712
|
trigger_patterns: 'when user wants automated technical SEO audits or site health monitoring',
|
|
713
|
+
keywords: 'site,health',
|
|
714
|
+
use_cases: 'search optimization;meta tags',
|
|
549
715
|
},
|
|
550
716
|
'agent:seo-visual-agent': {
|
|
551
717
|
intent_tags: 'seo,visual,agent,images,design,alt-text,optimization',
|
|
552
718
|
domain_tags: 'seo,visual,agent',
|
|
553
719
|
capability_summary: 'SEO visual optimization agent for image alt text and visual content analysis',
|
|
554
720
|
trigger_patterns: 'when user wants automated image SEO optimization or visual content analysis',
|
|
721
|
+
use_cases: 'search optimization;meta tags',
|
|
555
722
|
},
|
|
556
723
|
'skill:humanizer': {
|
|
557
724
|
intent_tags: 'humanize,writing,ai-detection,tone,natural,rewrite,polish',
|
|
558
725
|
domain_tags: 'writing,editing,content',
|
|
559
726
|
capability_summary: 'Remove signs of AI-generated writing to make text sound natural and human',
|
|
560
727
|
trigger_patterns: 'when user wants to humanize AI-generated text or remove AI writing patterns',
|
|
728
|
+
keywords: 'remove,signs,ai-generated,sound,human',
|
|
561
729
|
},
|
|
562
730
|
'skill:claudeception': {
|
|
563
731
|
intent_tags: 'skill-extraction,learning,continuous,autonomous,meta,knowledge',
|
|
564
732
|
domain_tags: 'meta,learning,skills',
|
|
565
733
|
capability_summary: 'Autonomous skill extraction and continuous learning from Claude Code work sessions',
|
|
566
734
|
trigger_patterns: 'when user wants to extract reusable skills from work sessions or enable continuous learning',
|
|
735
|
+
keywords: 'extraction,claude,sessions,extract,reusable',
|
|
567
736
|
},
|
|
568
737
|
'skill:mem-memory': {
|
|
569
738
|
intent_tags: 'memory,save,store,remember,note,record,persist,auto-save',
|
|
@@ -571,6 +740,8 @@ const RESOURCE_METADATA = {
|
|
|
571
740
|
capability_summary: 'Save content to memory — with explicit content, instructions, or auto-summarize current session',
|
|
572
741
|
trigger_patterns: 'when user wants to save something to memory or auto-save session highlights',
|
|
573
742
|
invocation_name: 'claude-mem-lite:memory',
|
|
743
|
+
keywords: 'explicit,instructions,auto-summarize,current,session',
|
|
744
|
+
tech_stack: 'claude-code',
|
|
574
745
|
},
|
|
575
746
|
'skill:mem-update': {
|
|
576
747
|
intent_tags: 'maintenance,cleanup,deduplicate,decay,optimize,reindex,health',
|
|
@@ -578,6 +749,7 @@ const RESOURCE_METADATA = {
|
|
|
578
749
|
capability_summary: 'Auto-maintain memory and resource registry — deduplicate, merge, decay, cleanup, reindex',
|
|
579
750
|
trigger_patterns: 'when user wants to clean up memory database or maintain the tool registry',
|
|
580
751
|
invocation_name: 'claude-mem-lite:update',
|
|
752
|
+
keywords: 'auto-maintain,resource,merge,clean,database,maintain',
|
|
581
753
|
},
|
|
582
754
|
'skill:mem-tools': {
|
|
583
755
|
intent_tags: 'import,tools,github,skills,agents,registry,add,discover',
|
|
@@ -585,12 +757,14 @@ const RESOURCE_METADATA = {
|
|
|
585
757
|
capability_summary: 'Import skills and agents from GitHub repositories into the tool resource registry',
|
|
586
758
|
trigger_patterns: 'when user wants to import or add new skills and agents from GitHub to the tool registry',
|
|
587
759
|
invocation_name: 'claude-mem-lite:tools',
|
|
760
|
+
keywords: 'repositories,resource',
|
|
588
761
|
},
|
|
589
762
|
'skill:anthropic-architect': {
|
|
590
763
|
intent_tags: 'anthropic,architecture,system-design,claude,patterns,best-practices',
|
|
591
764
|
domain_tags: 'anthropic,architecture,ai',
|
|
592
765
|
capability_summary: 'Architect Anthropic Claude-based systems with best practice patterns and design',
|
|
593
766
|
trigger_patterns: 'when user needs to architect systems using Anthropic Claude APIs or AI patterns',
|
|
767
|
+
keywords: 'architect,claude-based,practice,apis',
|
|
594
768
|
},
|
|
595
769
|
'skill:anthropic-prompt-engineer': {
|
|
596
770
|
intent_tags: 'anthropic,prompt,engineering,claude,optimization,techniques',
|
|
@@ -603,72 +777,91 @@ const RESOURCE_METADATA = {
|
|
|
603
777
|
domain_tags: 'apple,design,ios,macos',
|
|
604
778
|
capability_summary: 'Design Apple HIG-compliant interfaces for iOS macOS and Apple platforms',
|
|
605
779
|
trigger_patterns: 'when user needs Apple Human Interface Guidelines compliant UI design',
|
|
780
|
+
keywords: 'hig-compliant,platforms,human,interface,compliant',
|
|
781
|
+
tech_stack: 'swift',
|
|
782
|
+
use_cases: 'UI design;layout build',
|
|
606
783
|
},
|
|
607
784
|
'skill:book-illustrator': {
|
|
608
785
|
intent_tags: 'illustration,book,art,visual,creative,drawing,children',
|
|
609
786
|
domain_tags: 'illustration,art,creative',
|
|
610
787
|
capability_summary: 'Create book illustrations with visual storytelling and artistic direction',
|
|
611
788
|
trigger_patterns: 'when user needs book illustrations visual art or creative illustration direction',
|
|
789
|
+
keywords: 'illustrations,storytelling,artistic,direction',
|
|
612
790
|
},
|
|
613
791
|
'skill:content-brief-generator': {
|
|
614
792
|
intent_tags: 'content,brief,generator,writing,planning,outline,structure',
|
|
615
793
|
domain_tags: 'content,writing,planning',
|
|
616
794
|
capability_summary: 'Generate structured content briefs with outlines target audience and key messages',
|
|
617
795
|
trigger_patterns: 'when user needs content briefs writing outlines or structured content plans',
|
|
796
|
+
keywords: 'generate,briefs,outlines,target,audience,messages',
|
|
797
|
+
tech_stack: 'architecture',
|
|
618
798
|
},
|
|
619
799
|
'skill:design-brief-generator': {
|
|
620
800
|
intent_tags: 'design,brief,generator,creative,project,requirements,visual',
|
|
621
801
|
domain_tags: 'design,creative,project',
|
|
622
802
|
capability_summary: 'Generate design briefs with creative requirements visual direction and project scope',
|
|
623
803
|
trigger_patterns: 'when user needs design briefs creative direction or project visual requirements',
|
|
804
|
+
keywords: 'generate,briefs,direction,scope',
|
|
805
|
+
use_cases: 'UI design;layout build',
|
|
624
806
|
},
|
|
625
807
|
'skill:engineer-expertise-extractor': {
|
|
626
808
|
intent_tags: 'expertise,extraction,knowledge,engineering,skills,assessment',
|
|
627
809
|
domain_tags: 'engineering,knowledge,assessment',
|
|
628
810
|
capability_summary: 'Extract and document engineering expertise knowledge and skill assessments',
|
|
629
811
|
trigger_patterns: 'when user needs to extract document or assess engineering expertise and knowledge',
|
|
812
|
+
keywords: 'extract,document,assessments,assess',
|
|
630
813
|
},
|
|
631
814
|
'skill:engineer-skill-creator': {
|
|
632
815
|
intent_tags: 'skill,creator,engineering,development,custom,workflow',
|
|
633
816
|
domain_tags: 'engineering,skills,meta',
|
|
634
817
|
capability_summary: 'Create engineering-focused custom skills and development workflows',
|
|
635
818
|
trigger_patterns: 'when user wants to create engineering-focused custom skills or workflows',
|
|
819
|
+
use_cases: 'create skill;extend Claude',
|
|
636
820
|
},
|
|
637
821
|
'skill:frontend-designer': {
|
|
638
822
|
intent_tags: 'frontend,designer,ui,web,visual,layout,responsive',
|
|
639
823
|
domain_tags: 'frontend,design,web',
|
|
640
824
|
capability_summary: 'Frontend design with visual UI layout responsive design and web aesthetics',
|
|
641
825
|
trigger_patterns: 'when user needs frontend visual design responsive layouts or web UI aesthetics',
|
|
826
|
+
tech_stack: 'html,css,javascript,http,rest',
|
|
827
|
+
use_cases: 'frontend development;component build;UI design',
|
|
642
828
|
},
|
|
643
829
|
'skill:git-worktrees': {
|
|
644
830
|
intent_tags: 'git,worktree,branch,parallel,workflow,isolation',
|
|
645
831
|
domain_tags: 'git,workflow,development',
|
|
646
832
|
capability_summary: 'Git worktree workflows for parallel branch development and isolation',
|
|
647
833
|
trigger_patterns: 'when user needs git worktree setup for parallel development or branch isolation',
|
|
834
|
+
tech_stack: 'github',
|
|
835
|
+
use_cases: 'git workflow;version control',
|
|
648
836
|
},
|
|
649
837
|
'skill:kids-book-writer': {
|
|
650
838
|
intent_tags: 'children,book,writing,story,creative,kids,illustration',
|
|
651
839
|
domain_tags: 'writing,children,creative',
|
|
652
840
|
capability_summary: 'Write children books with age-appropriate stories and illustration guidance',
|
|
653
841
|
trigger_patterns: 'when user wants to write children books or create kids story content',
|
|
842
|
+
keywords: 'write,books,age-appropriate,stories,guidance',
|
|
654
843
|
},
|
|
655
844
|
'skill:leetcode-teacher': {
|
|
656
845
|
intent_tags: 'leetcode,algorithms,teaching,interview,coding,data-structures',
|
|
657
846
|
domain_tags: 'algorithms,education,interview',
|
|
658
847
|
capability_summary: 'Teach LeetCode problems with algorithm explanations and interview preparation',
|
|
659
848
|
trigger_patterns: 'when user needs help with LeetCode problems algorithm learning or coding interviews',
|
|
849
|
+
keywords: 'teach,problems,algorithm,explanations,preparation,learning',
|
|
660
850
|
},
|
|
661
851
|
'skill:llm-router': {
|
|
662
852
|
intent_tags: 'llm,router,model,selection,orchestration,multi-model,dispatch',
|
|
663
853
|
domain_tags: 'ai,llm,orchestration',
|
|
664
854
|
capability_summary: 'Route LLM requests to optimal models based on task complexity and requirements',
|
|
665
855
|
trigger_patterns: 'when user needs LLM routing multi-model selection or request orchestration',
|
|
856
|
+
keywords: 'route,requests,optimal,task,complexity',
|
|
857
|
+
use_cases: 'data modeling;schema design',
|
|
666
858
|
},
|
|
667
859
|
'skill:math-teacher': {
|
|
668
860
|
intent_tags: 'math,teaching,education,tutor,problems,algebra,calculus',
|
|
669
861
|
domain_tags: 'math,education,tutoring',
|
|
670
862
|
capability_summary: 'Teach mathematics with step-by-step explanations and practice problem guidance',
|
|
671
863
|
trigger_patterns: 'when user needs math tutoring explanations or practice problem help',
|
|
864
|
+
keywords: 'teach,mathematics,step-by-step,explanations,practice,problem',
|
|
672
865
|
},
|
|
673
866
|
'skill:openai-prompt-engineer': {
|
|
674
867
|
intent_tags: 'openai,prompt,engineering,gpt,optimization,techniques',
|
|
@@ -681,60 +874,81 @@ const RESOURCE_METADATA = {
|
|
|
681
874
|
domain_tags: 'product,requirements,planning',
|
|
682
875
|
capability_summary: 'Generate product requirements documents with features scope and specifications',
|
|
683
876
|
trigger_patterns: 'when user needs to create PRDs product requirements documents or feature specifications',
|
|
877
|
+
keywords: 'generate,documents,specifications,prds,feature',
|
|
878
|
+
tech_stack: 'architecture',
|
|
684
879
|
},
|
|
685
880
|
'skill:qa-test-planner': {
|
|
686
881
|
intent_tags: 'qa,test,planner,quality,testing,strategy,coverage',
|
|
687
882
|
domain_tags: 'qa,testing,planning',
|
|
688
883
|
capability_summary: 'Plan QA test strategies with coverage mapping test cases and quality assurance',
|
|
689
884
|
trigger_patterns: 'when user needs QA test planning test strategy or test coverage mapping',
|
|
885
|
+
keywords: 'plan,strategies,mapping,cases,assurance',
|
|
886
|
+
tech_stack: 'jest,vitest,pytest,architecture',
|
|
887
|
+
use_cases: 'write unit tests;increase test coverage',
|
|
690
888
|
},
|
|
691
889
|
'skill:query-expert': {
|
|
692
890
|
intent_tags: 'query,sql,database,optimization,expert,performance,tuning',
|
|
693
891
|
domain_tags: 'sql,database,query',
|
|
694
892
|
capability_summary: 'Expert SQL query writing optimization and database performance tuning',
|
|
695
893
|
trigger_patterns: 'when user needs expert SQL query writing or database query optimization',
|
|
894
|
+
tech_stack: 'postgresql,mysql,orm',
|
|
895
|
+
use_cases: 'write SQL queries;schema design;database design;schema migration',
|
|
696
896
|
},
|
|
697
897
|
'skill:reading-teacher': {
|
|
698
898
|
intent_tags: 'reading,teaching,education,literacy,comprehension,phonics',
|
|
699
899
|
domain_tags: 'education,reading,literacy',
|
|
700
900
|
capability_summary: 'Teach reading skills with comprehension strategies and literacy development',
|
|
701
901
|
trigger_patterns: 'when user needs reading instruction literacy development or comprehension strategies',
|
|
902
|
+
keywords: 'teach,skills,strategies,instruction',
|
|
702
903
|
},
|
|
703
904
|
'skill:releasing-macos-apps': {
|
|
704
905
|
intent_tags: 'macos,release,app-store,distribution,apple,notarize,signing',
|
|
705
906
|
domain_tags: 'macos,release,apple',
|
|
706
907
|
capability_summary: 'Guide macOS app release with App Store submission notarization and distribution',
|
|
707
908
|
trigger_patterns: 'when user needs to release a macOS app to the App Store or handle code signing',
|
|
909
|
+
keywords: 'store,submission,notarization,handle',
|
|
910
|
+
use_cases: 'deploy to production;release management',
|
|
708
911
|
},
|
|
709
912
|
'skill:swift-concurrency': {
|
|
710
913
|
intent_tags: 'swift,concurrency,async,await,actor,structured,task',
|
|
711
914
|
domain_tags: 'swift,ios,concurrency',
|
|
712
915
|
capability_summary: 'Swift concurrency with async/await actors structured concurrency and task groups',
|
|
713
916
|
trigger_patterns: 'when user needs Swift concurrency patterns async/await or actor-based design',
|
|
917
|
+
keywords: 'asyncawait,actors,groups,patterns,actor-based',
|
|
918
|
+
tech_stack: 'xcode',
|
|
714
919
|
},
|
|
715
920
|
'skill:swiftui-animation': {
|
|
716
921
|
intent_tags: 'swiftui,animation,ios,motion,transition,effect,visual',
|
|
717
922
|
domain_tags: 'swiftui,ios,animation',
|
|
718
923
|
capability_summary: 'Create SwiftUI animations with transitions motion effects and visual polish',
|
|
719
924
|
trigger_patterns: 'when user needs SwiftUI animations transitions or motion design for iOS apps',
|
|
925
|
+
keywords: 'animations,transitions,effects,polish,apps',
|
|
926
|
+
tech_stack: 'swift',
|
|
927
|
+
use_cases: 'CSS animation;motion design',
|
|
720
928
|
},
|
|
721
929
|
'skill:technical-launch-planner': {
|
|
722
930
|
intent_tags: 'launch,technical,planner,deployment,release,checklist,rollout',
|
|
723
931
|
domain_tags: 'deployment,planning,release',
|
|
724
932
|
capability_summary: 'Plan technical product launches with deployment checklists and rollout strategy',
|
|
725
933
|
trigger_patterns: 'when user needs technical launch planning deployment checklists or release management',
|
|
934
|
+
keywords: 'plan,product,launches,checklists,strategy',
|
|
935
|
+
tech_stack: 'architecture',
|
|
726
936
|
},
|
|
727
937
|
'skill:trading-plan-generator': {
|
|
728
938
|
intent_tags: 'trading,plan,finance,strategy,markets,risk,portfolio',
|
|
729
939
|
domain_tags: 'finance,trading,markets',
|
|
730
940
|
capability_summary: 'Generate trading plans with strategy risk management and portfolio analysis',
|
|
731
941
|
trigger_patterns: 'when user needs trading plans investment strategies or portfolio analysis',
|
|
942
|
+
keywords: 'generate,plans,investment,strategies',
|
|
943
|
+
use_cases: 'architecture design;implementation planning',
|
|
732
944
|
},
|
|
733
945
|
'agent:accessibility-compliance': {
|
|
734
946
|
intent_tags: 'accessibility,a11y,compliance,wcag,aria,screen-reader,inclusive',
|
|
735
947
|
domain_tags: 'accessibility,web,compliance',
|
|
736
948
|
capability_summary: 'Accessibility compliance agent for WCAG auditing ARIA implementation and a11y testing',
|
|
737
949
|
trigger_patterns: 'when user needs accessibility auditing WCAG compliance or ARIA implementation',
|
|
950
|
+
tech_stack: 'http,rest',
|
|
951
|
+
use_cases: 'a11y;screen reader',
|
|
738
952
|
},
|
|
739
953
|
'agent:agent-orchestration': {
|
|
740
954
|
intent_tags: 'agent,orchestration,multi-agent,workflow,coordination,pipeline',
|
|
@@ -747,12 +961,16 @@ const RESOURCE_METADATA = {
|
|
|
747
961
|
domain_tags: 'agents,teams,collaboration',
|
|
748
962
|
capability_summary: 'Agent team management with role delegation and collaborative task execution',
|
|
749
963
|
trigger_patterns: 'when user needs agent team collaboration role-based delegation or multi-agent teamwork',
|
|
964
|
+
keywords: 'team,role,collaborative,task,role-based',
|
|
750
965
|
},
|
|
751
966
|
'agent:api-testing-observability': {
|
|
752
967
|
intent_tags: 'api,testing,observability,monitoring,tracing,health-check',
|
|
753
968
|
domain_tags: 'api,testing,observability',
|
|
754
969
|
capability_summary: 'API testing and observability with health checks tracing and monitoring dashboards',
|
|
755
970
|
trigger_patterns: 'when user needs API testing observability setup or endpoint monitoring',
|
|
971
|
+
keywords: 'health,checks,dashboards,setup,endpoint',
|
|
972
|
+
tech_stack: 'rest,openapi,jest,vitest,pytest',
|
|
973
|
+
use_cases: 'API design;create endpoints;write unit tests;increase test coverage',
|
|
756
974
|
},
|
|
757
975
|
'agent:arm-cortex-microcontrollers': {
|
|
758
976
|
intent_tags: 'arm,cortex,embedded,microcontroller,firmware,iot,rtos',
|
|
@@ -765,42 +983,52 @@ const RESOURCE_METADATA = {
|
|
|
765
983
|
domain_tags: 'security,backend,api',
|
|
766
984
|
capability_summary: 'Backend API security with authentication rate limiting and OWASP protection',
|
|
767
985
|
trigger_patterns: 'when user needs API security authentication setup or backend security hardening',
|
|
986
|
+
keywords: 'authentication,rate,limiting,protection,setup,hardening',
|
|
987
|
+
tech_stack: 'owasp,cve,rest,openapi',
|
|
988
|
+
use_cases: 'API design;create endpoints;security audit;vulnerability scan',
|
|
768
989
|
},
|
|
769
990
|
'agent:backend-development': {
|
|
770
991
|
intent_tags: 'backend,development,server,api,node,express,architecture',
|
|
771
992
|
domain_tags: 'backend,server,api',
|
|
772
993
|
capability_summary: 'Backend development agent for server-side API architecture and implementation',
|
|
773
994
|
trigger_patterns: 'when user needs backend server development API architecture or server-side coding',
|
|
995
|
+
tech_stack: 'rest,openapi',
|
|
774
996
|
},
|
|
775
997
|
'agent:blockchain-web3': {
|
|
776
998
|
intent_tags: 'blockchain,web3,smart-contract,solidity,ethereum,defi,nft',
|
|
777
999
|
domain_tags: 'blockchain,web3,ethereum',
|
|
778
1000
|
capability_summary: 'Blockchain and Web3 development with smart contracts Solidity and DeFi patterns',
|
|
779
1001
|
trigger_patterns: 'when user needs blockchain development smart contracts Web3 or Solidity programming',
|
|
1002
|
+
keywords: 'smart,contracts,patterns',
|
|
780
1003
|
},
|
|
781
1004
|
'agent:business-analytics': {
|
|
782
1005
|
intent_tags: 'business,analytics,data,dashboard,kpi,reporting,metrics',
|
|
783
1006
|
domain_tags: 'business,analytics,data',
|
|
784
1007
|
capability_summary: 'Business analytics with KPI dashboards reporting and data-driven insights',
|
|
785
1008
|
trigger_patterns: 'when user needs business analytics KPI dashboards or data reporting setup',
|
|
1009
|
+
keywords: 'dashboards,data-driven,insights,setup',
|
|
786
1010
|
},
|
|
787
1011
|
'agent:c4-architecture': {
|
|
788
1012
|
intent_tags: 'c4,architecture,diagram,system-design,modeling,context,container',
|
|
789
1013
|
domain_tags: 'architecture,c4,design',
|
|
790
1014
|
capability_summary: 'C4 architecture modeling with context container component and code diagrams',
|
|
791
1015
|
trigger_patterns: 'when user needs C4 architecture diagrams system modeling or design documentation',
|
|
1016
|
+
keywords: 'component,diagrams,documentation',
|
|
792
1017
|
},
|
|
793
1018
|
'agent:codebase-cleanup': {
|
|
794
1019
|
intent_tags: 'cleanup,codebase,dead-code,lint,hygiene,unused,technical-debt',
|
|
795
1020
|
domain_tags: 'quality,cleanup,maintenance',
|
|
796
1021
|
capability_summary: 'Codebase cleanup agent for removing dead code fixing lint issues and reducing tech debt',
|
|
797
1022
|
trigger_patterns: 'when user needs codebase cleanup dead code removal or technical debt reduction',
|
|
1023
|
+
tech_stack: 'linter,analyzer',
|
|
798
1024
|
},
|
|
799
1025
|
'agent:comprehensive-review': {
|
|
800
1026
|
intent_tags: 'review,comprehensive,audit,quality,deep,thorough,analysis',
|
|
801
1027
|
domain_tags: 'quality,review,audit',
|
|
802
1028
|
capability_summary: 'Comprehensive code and project review with deep quality and architecture analysis',
|
|
803
1029
|
trigger_patterns: 'when user needs a thorough comprehensive code review or project quality audit',
|
|
1030
|
+
tech_stack: 'linter,analyzer,diff,pr-review',
|
|
1031
|
+
use_cases: 'code review;identify issues;code audit;quality assessment',
|
|
804
1032
|
},
|
|
805
1033
|
'agent:conductor': {
|
|
806
1034
|
intent_tags: 'conductor,orchestrator,workflow,pipeline,automation,dispatch',
|
|
@@ -819,12 +1047,14 @@ const RESOURCE_METADATA = {
|
|
|
819
1047
|
domain_tags: 'context,memory,management',
|
|
820
1048
|
capability_summary: 'Context and memory management for maintaining state across agent sessions',
|
|
821
1049
|
trigger_patterns: 'when user needs context management memory persistence or session state handling',
|
|
1050
|
+
keywords: 'maintaining,sessions',
|
|
822
1051
|
},
|
|
823
1052
|
'agent:customer-sales-automation': {
|
|
824
1053
|
intent_tags: 'customer,sales,automation,crm,pipeline,lead,outreach',
|
|
825
1054
|
domain_tags: 'sales,crm,automation',
|
|
826
1055
|
capability_summary: 'Customer sales automation with CRM pipeline management and lead nurturing',
|
|
827
1056
|
trigger_patterns: 'when user needs sales automation CRM pipeline setup or customer outreach workflows',
|
|
1057
|
+
keywords: 'nurturing,setup',
|
|
828
1058
|
},
|
|
829
1059
|
'agent:data-engineering': {
|
|
830
1060
|
intent_tags: 'data,engineering,pipeline,etl,warehouse,transform,ingest',
|
|
@@ -837,42 +1067,56 @@ const RESOURCE_METADATA = {
|
|
|
837
1067
|
domain_tags: 'data,validation,quality',
|
|
838
1068
|
capability_summary: 'Data validation suite with schema checks integrity rules and quality assurance',
|
|
839
1069
|
trigger_patterns: 'when user needs data validation schema checks or data quality assurance',
|
|
1070
|
+
keywords: 'suite,assurance',
|
|
1071
|
+
tech_stack: 'linter,analyzer',
|
|
840
1072
|
},
|
|
841
1073
|
'agent:database-cloud-optimization': {
|
|
842
1074
|
intent_tags: 'database,cloud,optimization,scaling,cost,performance,tuning',
|
|
843
1075
|
domain_tags: 'database,cloud,optimization',
|
|
844
1076
|
capability_summary: 'Cloud database optimization with scaling strategies cost reduction and performance tuning',
|
|
845
1077
|
trigger_patterns: 'when user needs cloud database optimization scaling or cost reduction strategies',
|
|
1078
|
+
keywords: 'strategies,reduction',
|
|
1079
|
+
tech_stack: 'sql,orm,profiler,benchmark',
|
|
1080
|
+
use_cases: 'database design;schema migration',
|
|
846
1081
|
},
|
|
847
1082
|
'agent:deployment-strategies': {
|
|
848
1083
|
intent_tags: 'deployment,strategies,blue-green,canary,rollout,zero-downtime',
|
|
849
1084
|
domain_tags: 'deployment,devops,strategies',
|
|
850
1085
|
capability_summary: 'Deployment strategy planning with blue-green canary and zero-downtime rollout patterns',
|
|
851
1086
|
trigger_patterns: 'when user needs deployment strategies blue-green canary or zero-downtime rollout planning',
|
|
1087
|
+
keywords: 'strategy,patterns',
|
|
1088
|
+
tech_stack: 'ci,cd,pipeline',
|
|
852
1089
|
},
|
|
853
1090
|
'agent:deployment-validation': {
|
|
854
1091
|
intent_tags: 'deployment,validation,smoke-test,health,verify,post-deploy',
|
|
855
1092
|
domain_tags: 'deployment,validation,devops',
|
|
856
1093
|
capability_summary: 'Post-deployment validation with smoke tests health checks and verification',
|
|
857
1094
|
trigger_patterns: 'when user needs deployment validation smoke testing or post-deploy health checks',
|
|
1095
|
+
keywords: 'post-deployment,smoke,checks,verification',
|
|
1096
|
+
tech_stack: 'ci,cd,pipeline',
|
|
858
1097
|
},
|
|
859
1098
|
'agent:developer-essentials': {
|
|
860
1099
|
intent_tags: 'developer,essentials,tools,productivity,workflow,setup,config',
|
|
861
1100
|
domain_tags: 'development,tools,productivity',
|
|
862
1101
|
capability_summary: 'Developer essentials toolkit for productivity tools workflow setup and configuration',
|
|
863
1102
|
trigger_patterns: 'when user needs developer productivity tools workflow optimization or environment setup',
|
|
1103
|
+
keywords: 'toolkit,configuration,optimization,environment',
|
|
864
1104
|
},
|
|
865
1105
|
'agent:distributed-debugging': {
|
|
866
1106
|
intent_tags: 'distributed,debugging,microservices,tracing,logs,correlation',
|
|
867
1107
|
domain_tags: 'debugging,distributed,microservices',
|
|
868
1108
|
capability_summary: 'Distributed system debugging with trace correlation log analysis and microservice diagnosis',
|
|
869
1109
|
trigger_patterns: 'when user needs distributed debugging microservice tracing or cross-service log analysis',
|
|
1110
|
+
keywords: 'trace,microservice,diagnosis,cross-service',
|
|
1111
|
+
use_cases: 'debug errors;isolate issues',
|
|
870
1112
|
},
|
|
871
1113
|
'agent:documentation-generation': {
|
|
872
1114
|
intent_tags: 'documentation,generation,auto-doc,api-docs,readme,javadoc',
|
|
873
1115
|
domain_tags: 'documentation,generation,automation',
|
|
874
1116
|
capability_summary: 'Automated documentation generation for APIs READMEs and code documentation',
|
|
875
1117
|
trigger_patterns: 'when user needs automated documentation generation API docs or README creation',
|
|
1118
|
+
keywords: 'apis,readmes,docs,creation',
|
|
1119
|
+
use_cases: 'write documentation;update README',
|
|
876
1120
|
},
|
|
877
1121
|
'agent:dotnet-contribution': {
|
|
878
1122
|
intent_tags: 'dotnet,csharp,contribution,aspnet,nuget,entity-framework',
|
|
@@ -885,36 +1129,50 @@ const RESOURCE_METADATA = {
|
|
|
885
1129
|
domain_tags: 'debugging,diagnostics,error',
|
|
886
1130
|
capability_summary: 'Error diagnostics agent for root cause analysis triage and error classification',
|
|
887
1131
|
trigger_patterns: 'when user needs error diagnostics root cause analysis or automated error triage',
|
|
1132
|
+
keywords: 'root,cause',
|
|
1133
|
+
use_cases: 'error handling;error tracking',
|
|
888
1134
|
},
|
|
889
1135
|
'agent:framework-migration': {
|
|
890
1136
|
intent_tags: 'framework,migration,upgrade,transition,compatibility,breaking-changes',
|
|
891
1137
|
domain_tags: 'migration,framework,upgrade',
|
|
892
1138
|
capability_summary: 'Framework migration agent for version upgrades breaking change resolution and transitions',
|
|
893
1139
|
trigger_patterns: 'when user needs to migrate frameworks upgrade versions or resolve breaking changes',
|
|
1140
|
+
keywords: 'version,upgrades,breaking,change,resolution',
|
|
1141
|
+
tech_stack: 'alembic,flyway',
|
|
1142
|
+
use_cases: 'schema migration;data migration',
|
|
894
1143
|
},
|
|
895
1144
|
'agent:frontend-mobile-development': {
|
|
896
1145
|
intent_tags: 'frontend,mobile,react-native,flutter,responsive,cross-platform',
|
|
897
1146
|
domain_tags: 'frontend,mobile,cross-platform',
|
|
898
1147
|
capability_summary: 'Frontend and mobile development with React Native Flutter and cross-platform patterns',
|
|
899
1148
|
trigger_patterns: 'when user needs mobile app development React Native Flutter or cross-platform frontend',
|
|
1149
|
+
keywords: 'react,native,patterns',
|
|
1150
|
+
tech_stack: 'html,css,javascript',
|
|
1151
|
+
use_cases: 'frontend development;component build',
|
|
900
1152
|
},
|
|
901
1153
|
'agent:frontend-mobile-security': {
|
|
902
1154
|
intent_tags: 'frontend,mobile,security,xss,csp,csrf,sanitization',
|
|
903
1155
|
domain_tags: 'security,frontend,mobile',
|
|
904
1156
|
capability_summary: 'Frontend and mobile security with XSS prevention CSP configuration and CSRF protection',
|
|
905
1157
|
trigger_patterns: 'when user needs frontend security XSS prevention or mobile app security hardening',
|
|
1158
|
+
keywords: 'prevention,configuration,protection,hardening',
|
|
1159
|
+
tech_stack: 'owasp,cve,html,css,javascript',
|
|
1160
|
+
use_cases: 'frontend development;component build;security audit;vulnerability scan',
|
|
906
1161
|
},
|
|
907
1162
|
'agent:full-stack-orchestration': {
|
|
908
1163
|
intent_tags: 'fullstack,orchestration,frontend,backend,integration,end-to-end',
|
|
909
1164
|
domain_tags: 'fullstack,orchestration,integration',
|
|
910
1165
|
capability_summary: 'Full-stack orchestration agent for coordinating frontend backend and integration layers',
|
|
911
1166
|
trigger_patterns: 'when user needs full-stack orchestration end-to-end integration or frontend-backend coordination',
|
|
1167
|
+
keywords: 'full-stack,coordinating,layers,frontend-backend,coordination',
|
|
1168
|
+
use_cases: 'frontend development;component build',
|
|
912
1169
|
},
|
|
913
1170
|
'agent:functional-programming': {
|
|
914
1171
|
intent_tags: 'functional,programming,fp,immutable,pure,monad,composition',
|
|
915
1172
|
domain_tags: 'functional,programming,patterns',
|
|
916
1173
|
capability_summary: 'Functional programming patterns with immutability composition and pure function design',
|
|
917
1174
|
trigger_patterns: 'when user needs functional programming patterns monads or immutable design help',
|
|
1175
|
+
keywords: 'immutability,function,monads',
|
|
918
1176
|
},
|
|
919
1177
|
'agent:game-development': {
|
|
920
1178
|
intent_tags: 'game,development,unity,godot,gamedev,engine,mechanics',
|
|
@@ -927,12 +1185,14 @@ const RESOURCE_METADATA = {
|
|
|
927
1185
|
domain_tags: 'legal,compliance,hr',
|
|
928
1186
|
capability_summary: 'HR and legal compliance agent for policy generation GDPR and regulatory requirements',
|
|
929
1187
|
trigger_patterns: 'when user needs HR legal compliance policy generation or GDPR regulatory guidance',
|
|
1188
|
+
keywords: 'regulatory,requirements,guidance',
|
|
930
1189
|
},
|
|
931
1190
|
'agent:incident-response': {
|
|
932
1191
|
intent_tags: 'incident,response,sre,postmortem,alert,escalation,runbook',
|
|
933
1192
|
domain_tags: 'sre,incident,devops',
|
|
934
1193
|
capability_summary: 'Incident response agent with runbook execution escalation and postmortem analysis',
|
|
935
1194
|
trigger_patterns: 'when user needs incident response runbooks escalation workflows or postmortem analysis',
|
|
1195
|
+
tech_stack: 'ci,cd,pipeline',
|
|
936
1196
|
},
|
|
937
1197
|
'agent:julia-development': {
|
|
938
1198
|
intent_tags: 'julia,scientific,computing,numerical,data,performance,math',
|
|
@@ -945,18 +1205,23 @@ const RESOURCE_METADATA = {
|
|
|
945
1205
|
domain_tags: 'jvm,java,kotlin',
|
|
946
1206
|
capability_summary: 'JVM language development agent for Java Kotlin Scala with Spring and Gradle',
|
|
947
1207
|
trigger_patterns: 'when user is working on JVM projects Java Kotlin Scala or Spring applications',
|
|
1208
|
+
tech_stack: 'maven',
|
|
948
1209
|
},
|
|
949
1210
|
'agent:kubernetes-operations': {
|
|
950
1211
|
intent_tags: 'kubernetes,k8s,devops,container,helm,deploy,cluster',
|
|
951
1212
|
domain_tags: 'kubernetes,devops,container',
|
|
952
1213
|
capability_summary: 'Kubernetes operations agent for cluster management Helm deployments and container orchestration',
|
|
953
1214
|
trigger_patterns: 'when user needs Kubernetes cluster management Helm charts or container orchestration',
|
|
1215
|
+
keywords: 'operations,deployments,orchestration,charts',
|
|
1216
|
+
tech_stack: 'k8s,helm,ci,cd,pipeline',
|
|
1217
|
+
use_cases: 'K8s deployment;pod configuration',
|
|
954
1218
|
},
|
|
955
1219
|
'agent:llm-application-dev': {
|
|
956
1220
|
intent_tags: 'llm,application,ai,rag,agent,prompt,chain',
|
|
957
1221
|
domain_tags: 'ai,llm,application',
|
|
958
1222
|
capability_summary: 'LLM application development with RAG agent design and prompt engineering',
|
|
959
1223
|
trigger_patterns: 'when user needs to build LLM applications RAG systems or AI agent architectures',
|
|
1224
|
+
keywords: 'engineering,architectures',
|
|
960
1225
|
},
|
|
961
1226
|
'agent:machine-learning-ops': {
|
|
962
1227
|
intent_tags: 'mlops,ml,training,deployment,pipeline,model,inference',
|
|
@@ -975,60 +1240,79 @@ const RESOURCE_METADATA = {
|
|
|
975
1240
|
domain_tags: 'observability,monitoring,devops',
|
|
976
1241
|
capability_summary: 'Observability stack setup with logging metrics tracing Grafana and Prometheus',
|
|
977
1242
|
trigger_patterns: 'when user needs observability monitoring setup Grafana dashboards or logging infrastructure',
|
|
1243
|
+
keywords: 'stack,setup,dashboards,infrastructure',
|
|
1244
|
+
tech_stack: 'prometheus,grafana,ci,cd,pipeline',
|
|
978
1245
|
},
|
|
979
1246
|
'agent:payment-processing': {
|
|
980
1247
|
intent_tags: 'payment,processing,stripe,billing,checkout,subscription,webhook',
|
|
981
1248
|
domain_tags: 'payment,billing,ecommerce',
|
|
982
1249
|
capability_summary: 'Payment processing integration with Stripe billing subscriptions and checkout flows',
|
|
983
1250
|
trigger_patterns: 'when user needs payment processing Stripe integration or billing system setup',
|
|
1251
|
+
keywords: 'integration,subscriptions,flows,setup',
|
|
984
1252
|
},
|
|
985
1253
|
'agent:performance-testing-review': {
|
|
986
1254
|
intent_tags: 'performance,testing,load,benchmark,stress,k6,artillery',
|
|
987
1255
|
domain_tags: 'performance,testing,benchmark',
|
|
988
1256
|
capability_summary: 'Performance testing with load benchmarking stress testing and bottleneck analysis',
|
|
989
1257
|
trigger_patterns: 'when user needs performance testing load testing or benchmark analysis',
|
|
1258
|
+
keywords: 'benchmarking,bottleneck',
|
|
1259
|
+
tech_stack: 'profiler,apm,jest,vitest,pytest',
|
|
1260
|
+
use_cases: 'optimize performance;reduce latency;write unit tests;increase test coverage',
|
|
990
1261
|
},
|
|
991
1262
|
'agent:quantitative-trading': {
|
|
992
1263
|
intent_tags: 'quant,trading,finance,algorithm,backtest,strategy,market',
|
|
993
1264
|
domain_tags: 'finance,trading,quantitative',
|
|
994
1265
|
capability_summary: 'Quantitative trading agent for algorithmic strategies backtesting and market analysis',
|
|
995
1266
|
trigger_patterns: 'when user needs quantitative trading algorithms backtesting or market analysis tools',
|
|
1267
|
+
keywords: 'algorithmic,strategies,backtesting,algorithms',
|
|
996
1268
|
},
|
|
997
1269
|
'agent:reverse-engineering': {
|
|
998
1270
|
intent_tags: 'reverse-engineering,binary,decompile,analysis,disassembly,forensics',
|
|
999
1271
|
domain_tags: 'security,reverse-engineering,analysis',
|
|
1000
1272
|
capability_summary: 'Reverse engineering agent for binary analysis decompilation and forensic investigation',
|
|
1001
1273
|
trigger_patterns: 'when user needs reverse engineering binary analysis or decompilation assistance',
|
|
1274
|
+
keywords: 'reverse,engineering,decompilation,forensic,investigation',
|
|
1275
|
+
tech_stack: 'owasp,cve',
|
|
1002
1276
|
},
|
|
1003
1277
|
'agent:security-compliance': {
|
|
1004
1278
|
intent_tags: 'security,compliance,soc2,iso,policy,audit,governance',
|
|
1005
1279
|
domain_tags: 'security,compliance,governance',
|
|
1006
1280
|
capability_summary: 'Security compliance agent for SOC2 ISO auditing and governance policy creation',
|
|
1007
1281
|
trigger_patterns: 'when user needs security compliance SOC2 ISO auditing or governance policies',
|
|
1282
|
+
keywords: 'compliance-check,soc2,gdpr,hipaa,policy-enforcement',
|
|
1283
|
+
tech_stack: 'owasp,cve',
|
|
1284
|
+
use_cases: 'security audit;vulnerability scan',
|
|
1008
1285
|
},
|
|
1009
1286
|
'agent:seo-analysis-monitoring': {
|
|
1010
1287
|
intent_tags: 'seo,analysis,monitoring,ranking,tracking,serp,keywords',
|
|
1011
1288
|
domain_tags: 'seo,analysis,monitoring',
|
|
1012
1289
|
capability_summary: 'SEO analysis and monitoring agent for ranking tracking SERP analysis and keyword monitoring',
|
|
1013
1290
|
trigger_patterns: 'when user needs SEO ranking monitoring SERP analysis or keyword tracking',
|
|
1291
|
+
tech_stack: 'prometheus,grafana',
|
|
1292
|
+
use_cases: 'search optimization;meta tags',
|
|
1014
1293
|
},
|
|
1015
1294
|
'agent:seo-content-creation': {
|
|
1016
1295
|
intent_tags: 'seo,content,creation,writing,keywords,optimization,blog',
|
|
1017
1296
|
domain_tags: 'seo,content,writing',
|
|
1018
1297
|
capability_summary: 'SEO content creation agent for keyword-optimized articles and blog writing',
|
|
1019
1298
|
trigger_patterns: 'when user needs SEO-optimized content creation keyword articles or blog writing',
|
|
1299
|
+
keywords: 'keyword-optimized,articles,seo-optimized,keyword',
|
|
1300
|
+
use_cases: 'search optimization;meta tags',
|
|
1020
1301
|
},
|
|
1021
1302
|
'agent:seo-technical-optimization': {
|
|
1022
1303
|
intent_tags: 'seo,technical,optimization,crawl,indexing',
|
|
1023
1304
|
domain_tags: 'seo,technical',
|
|
1024
1305
|
capability_summary: 'Technical SEO optimization agent for site speed crawl efficiency and indexing',
|
|
1025
1306
|
trigger_patterns: 'when user needs technical SEO optimization site speed or crawl improvements',
|
|
1307
|
+
keywords: 'site,speed,efficiency,improvements',
|
|
1308
|
+
use_cases: 'search optimization;meta tags',
|
|
1026
1309
|
},
|
|
1027
1310
|
'agent:shell-scripting': {
|
|
1028
1311
|
intent_tags: 'shell,scripting,bash,zsh,automation,cli,devops',
|
|
1029
1312
|
domain_tags: 'shell,scripting,automation',
|
|
1030
1313
|
capability_summary: 'Shell scripting agent for bash/zsh automation CLI tools and system administration',
|
|
1031
1314
|
trigger_patterns: 'when user needs shell scripts bash automation or CLI tool development',
|
|
1315
|
+
keywords: 'bashzsh,administration,scripts',
|
|
1032
1316
|
},
|
|
1033
1317
|
'agent:startup-business-analyst': {
|
|
1034
1318
|
intent_tags: 'startup,business,analysis,strategy,market,competitive,research',
|
|
@@ -1041,24 +1325,30 @@ const RESOURCE_METADATA = {
|
|
|
1041
1325
|
domain_tags: 'systems,programming,rust,c',
|
|
1042
1326
|
capability_summary: 'Systems programming agent for Rust C low-level memory management and performance',
|
|
1043
1327
|
trigger_patterns: 'when user needs systems programming Rust C low-level coding or memory management',
|
|
1328
|
+
tech_stack: 'cargo',
|
|
1044
1329
|
},
|
|
1045
1330
|
'agent:team-collaboration': {
|
|
1046
1331
|
intent_tags: 'team,collaboration,workflow,communication,project,standup,sprint',
|
|
1047
1332
|
domain_tags: 'team,collaboration,project',
|
|
1048
1333
|
capability_summary: 'Team collaboration agent for project workflows standups and communication optimization',
|
|
1049
1334
|
trigger_patterns: 'when user needs team collaboration workflow optimization or project management setup',
|
|
1335
|
+
keywords: 'standups,optimization,setup',
|
|
1050
1336
|
},
|
|
1051
1337
|
'agent:web-scripting': {
|
|
1052
1338
|
intent_tags: 'web,scripting,scraping,automation,crawl,extract,parse',
|
|
1053
1339
|
domain_tags: 'web,scripting,automation',
|
|
1054
1340
|
capability_summary: 'Web scripting agent for scraping data extraction and web automation tasks',
|
|
1055
1341
|
trigger_patterns: 'when user needs web scraping data extraction or web automation scripting',
|
|
1342
|
+
keywords: 'data,extraction,tasks',
|
|
1343
|
+
tech_stack: 'http,rest',
|
|
1056
1344
|
},
|
|
1057
1345
|
'skill:audit-website': {
|
|
1058
1346
|
intent_tags: 'audit,website,accessibility,performance,seo,security,quality',
|
|
1059
1347
|
domain_tags: 'audit,web,quality',
|
|
1060
1348
|
capability_summary: 'Comprehensive website audit covering accessibility performance SEO and security',
|
|
1061
1349
|
trigger_patterns: 'when user needs a comprehensive website audit covering accessibility performance and SEO',
|
|
1350
|
+
tech_stack: 'http,rest,linter,analyzer',
|
|
1351
|
+
use_cases: 'code audit;quality assessment;a11y;screen reader',
|
|
1062
1352
|
},
|
|
1063
1353
|
'agent:academic-researcher': {
|
|
1064
1354
|
intent_tags: 'academic,research,paper,literature,citation,review,scholar',
|
|
@@ -1071,30 +1361,37 @@ const RESOURCE_METADATA = {
|
|
|
1071
1361
|
domain_tags: 'quality,review,code',
|
|
1072
1362
|
capability_summary: 'Code review agent for bug detection quality analysis and best practice enforcement',
|
|
1073
1363
|
trigger_patterns: 'when user needs automated code review bug detection or quality analysis',
|
|
1364
|
+
keywords: 'detection,practice,enforcement',
|
|
1365
|
+
tech_stack: 'linter,analyzer,diff,pr-review',
|
|
1074
1366
|
},
|
|
1075
1367
|
'agent:content-creator': {
|
|
1076
1368
|
intent_tags: 'content,creator,writing,generate,creative,article,blog',
|
|
1077
1369
|
domain_tags: 'content,writing,creative',
|
|
1078
1370
|
capability_summary: 'Content creation agent for articles blog posts and creative writing generation',
|
|
1079
1371
|
trigger_patterns: 'when user needs content creation article writing or creative content generation',
|
|
1372
|
+
keywords: 'creation,articles,posts',
|
|
1080
1373
|
},
|
|
1081
1374
|
'agent:data-analyst': {
|
|
1082
1375
|
intent_tags: 'data,analyst,analysis,visualization,statistics,charts,insights',
|
|
1083
1376
|
domain_tags: 'data,analysis,visualization',
|
|
1084
1377
|
capability_summary: 'Data analysis agent with statistical analysis visualization and insight generation',
|
|
1085
1378
|
trigger_patterns: 'when user needs data analysis statistical processing or data visualization',
|
|
1379
|
+
keywords: 'statistical,insight,processing',
|
|
1086
1380
|
},
|
|
1087
1381
|
'agent:debugger': {
|
|
1088
1382
|
intent_tags: 'debugger,bug,fix,error,diagnosis,trace,root-cause',
|
|
1089
1383
|
domain_tags: 'debugging,error,fix',
|
|
1090
1384
|
capability_summary: 'Debugging agent for automated bug diagnosis error tracing and fix suggestions',
|
|
1091
1385
|
trigger_patterns: 'when user needs automated debugging bug diagnosis or error tracing',
|
|
1386
|
+
keywords: 'tracing,suggestions',
|
|
1387
|
+
use_cases: 'debug errors;fix bugs',
|
|
1092
1388
|
},
|
|
1093
1389
|
'agent:decision-helper': {
|
|
1094
1390
|
intent_tags: 'decision,helper,analysis,pros-cons,evaluate,compare,trade-off',
|
|
1095
1391
|
domain_tags: 'decision,analysis,evaluation',
|
|
1096
1392
|
capability_summary: 'Decision analysis helper with pros/cons evaluation trade-off comparison and recommendations',
|
|
1097
1393
|
trigger_patterns: 'when user needs help making decisions evaluating options or comparing trade-offs',
|
|
1394
|
+
keywords: 'proscons,comparison,recommendations,making,decisions,evaluating',
|
|
1098
1395
|
},
|
|
1099
1396
|
'agent:deep-research': {
|
|
1100
1397
|
intent_tags: 'research,deep,investigation,analysis,comprehensive,web,synthesis',
|
|
@@ -1107,72 +1404,91 @@ const RESOURCE_METADATA = {
|
|
|
1107
1404
|
domain_tags: 'writing,editing,quality',
|
|
1108
1405
|
capability_summary: 'Writing editor agent for proofreading grammar correction style and clarity improvement',
|
|
1109
1406
|
trigger_patterns: 'when user needs writing editing proofreading or grammar correction',
|
|
1407
|
+
keywords: 'proofreading,correction,improvement',
|
|
1408
|
+
tech_stack: 'linter,analyzer',
|
|
1110
1409
|
},
|
|
1111
1410
|
'agent:email-drafter': {
|
|
1112
1411
|
intent_tags: 'email,drafter,writing,professional,communication,template,reply',
|
|
1113
1412
|
domain_tags: 'email,writing,communication',
|
|
1114
1413
|
capability_summary: 'Email drafting agent for professional communication templates and reply composition',
|
|
1115
1414
|
trigger_patterns: 'when user needs email drafting professional communication or email template creation',
|
|
1415
|
+
keywords: 'drafting,templates,composition,creation',
|
|
1116
1416
|
},
|
|
1117
1417
|
'agent:fact-checker': {
|
|
1118
1418
|
intent_tags: 'fact-check,verify,accuracy,claims,source,evidence,truth',
|
|
1119
1419
|
domain_tags: 'fact-check,verification,accuracy',
|
|
1120
1420
|
capability_summary: 'Fact-checking agent for verifying claims checking sources and assessing accuracy',
|
|
1121
1421
|
trigger_patterns: 'when user needs fact-checking claim verification or source accuracy assessment',
|
|
1422
|
+
keywords: 'fact-checking,verifying,checking,sources,assessing',
|
|
1122
1423
|
},
|
|
1123
1424
|
'agent:fullstack-developer': {
|
|
1124
1425
|
intent_tags: 'fullstack,developer,frontend,backend,web,react,node',
|
|
1125
1426
|
domain_tags: 'fullstack,web,development',
|
|
1126
1427
|
capability_summary: 'Full-stack developer agent for frontend backend and complete web application building',
|
|
1127
1428
|
trigger_patterns: 'when user needs full-stack web development frontend and backend integration',
|
|
1429
|
+
keywords: 'full-stack,complete,integration',
|
|
1430
|
+
tech_stack: 'http,rest',
|
|
1431
|
+
use_cases: 'frontend development;component build',
|
|
1128
1432
|
},
|
|
1129
1433
|
'agent:meeting-notes': {
|
|
1130
1434
|
intent_tags: 'meeting,notes,summary,action-items,minutes,transcript,decisions',
|
|
1131
1435
|
domain_tags: 'meeting,notes,productivity',
|
|
1132
1436
|
capability_summary: 'Meeting notes agent for summarizing discussions extracting action items and decisions',
|
|
1133
1437
|
trigger_patterns: 'when user needs meeting notes summaries action item extraction or minutes generation',
|
|
1438
|
+
keywords: 'summarizing,discussions,extracting,action,items',
|
|
1134
1439
|
},
|
|
1135
1440
|
'agent:project-planner': {
|
|
1136
1441
|
intent_tags: 'project,planner,roadmap,timeline,milestones,tasks,breakdown',
|
|
1137
1442
|
domain_tags: 'project,planning,management',
|
|
1138
1443
|
capability_summary: 'Project planning agent for roadmaps timeline creation and milestone task breakdown',
|
|
1139
1444
|
trigger_patterns: 'when user needs project planning roadmap creation or task breakdown with milestones',
|
|
1445
|
+
keywords: 'roadmaps,creation,milestone,task',
|
|
1446
|
+
tech_stack: 'architecture',
|
|
1140
1447
|
},
|
|
1141
1448
|
'agent:python-expert': {
|
|
1142
1449
|
intent_tags: 'python,expert,advanced,optimization,patterns,best-practices',
|
|
1143
1450
|
domain_tags: 'python,expert,development',
|
|
1144
1451
|
capability_summary: 'Python expert agent for advanced patterns optimization and best practice guidance',
|
|
1145
1452
|
trigger_patterns: 'when user needs expert Python advice advanced patterns or performance optimization',
|
|
1453
|
+
keywords: 'practice,guidance,advice,performance',
|
|
1454
|
+
tech_stack: 'pip',
|
|
1146
1455
|
},
|
|
1147
1456
|
'agent:sprint-planner': {
|
|
1148
1457
|
intent_tags: 'sprint,planner,agile,scrum,backlog,estimation,velocity',
|
|
1149
1458
|
domain_tags: 'agile,sprint,planning',
|
|
1150
1459
|
capability_summary: 'Sprint planning agent for backlog grooming story estimation and velocity tracking',
|
|
1151
1460
|
trigger_patterns: 'when user needs sprint planning backlog grooming or agile estimation',
|
|
1461
|
+
keywords: 'grooming,story,tracking',
|
|
1462
|
+
tech_stack: 'architecture',
|
|
1152
1463
|
},
|
|
1153
1464
|
'agent:strategy-advisor': {
|
|
1154
1465
|
intent_tags: 'strategy,advisor,business,consulting,planning,analysis,recommendation',
|
|
1155
1466
|
domain_tags: 'strategy,business,consulting',
|
|
1156
1467
|
capability_summary: 'Strategy advisor agent for business consulting analysis and strategic recommendations',
|
|
1157
1468
|
trigger_patterns: 'when user needs strategic business advice consulting analysis or planning guidance',
|
|
1469
|
+
keywords: 'strategic,recommendations,advice,guidance',
|
|
1158
1470
|
},
|
|
1159
1471
|
'agent:technical-writer': {
|
|
1160
1472
|
intent_tags: 'technical,writer,documentation,api-docs,guides,tutorials,reference',
|
|
1161
1473
|
domain_tags: 'documentation,technical-writing,guides',
|
|
1162
1474
|
capability_summary: 'Technical writing agent for API docs user guides tutorials and reference documentation',
|
|
1163
1475
|
trigger_patterns: 'when user needs technical writing API documentation user guides or tutorials',
|
|
1476
|
+
use_cases: 'write documentation;update README',
|
|
1164
1477
|
},
|
|
1165
1478
|
'agent:ux-designer': {
|
|
1166
1479
|
intent_tags: 'ux,designer,user-experience,wireframe,usability,persona,journey',
|
|
1167
1480
|
domain_tags: 'ux,design,user-experience',
|
|
1168
1481
|
capability_summary: 'UX design agent for wireframing user research persona creation and usability analysis',
|
|
1169
1482
|
trigger_patterns: 'when user needs UX design wireframing user research or usability analysis',
|
|
1483
|
+
keywords: 'wireframing,research,creation',
|
|
1484
|
+
use_cases: 'user experience;interaction design',
|
|
1170
1485
|
},
|
|
1171
1486
|
'agent:visualization-expert': {
|
|
1172
1487
|
intent_tags: 'visualization,charts,graphs,data-viz,d3,dashboard,infographic',
|
|
1173
1488
|
domain_tags: 'visualization,data,charts',
|
|
1174
1489
|
capability_summary: 'Data visualization expert for charts dashboards infographics and interactive displays',
|
|
1175
1490
|
trigger_patterns: 'when user needs data visualization charts dashboards or interactive graph creation',
|
|
1491
|
+
keywords: 'dashboards,infographics,interactive,displays,graph',
|
|
1176
1492
|
},
|
|
1177
1493
|
|
|
1178
1494
|
// ─── Plugin Skills (locally installed, no git repo) ────────────────────────
|
|
@@ -1182,6 +1498,9 @@ const RESOURCE_METADATA = {
|
|
|
1182
1498
|
capability_summary: 'Execute written implementation plans in separate sessions with review checkpoints',
|
|
1183
1499
|
trigger_patterns: 'when user has a written implementation plan to execute with review checkpoints',
|
|
1184
1500
|
invocation_name: 'superpowers:executing-plans',
|
|
1501
|
+
keywords: 'written,plans,separate,sessions,checkpoints',
|
|
1502
|
+
tech_stack: 'architecture',
|
|
1503
|
+
use_cases: 'architecture design;implementation planning',
|
|
1185
1504
|
},
|
|
1186
1505
|
'skill:superpowers-receiving-code-review': {
|
|
1187
1506
|
intent_tags: 'code-review,feedback,receiving,review-response,technical-rigor,verification',
|
|
@@ -1189,6 +1508,9 @@ const RESOURCE_METADATA = {
|
|
|
1189
1508
|
capability_summary: 'Handle received code review feedback with technical rigor and verification before implementing',
|
|
1190
1509
|
trigger_patterns: 'when receiving code review feedback especially if unclear or technically questionable',
|
|
1191
1510
|
invocation_name: 'superpowers:receiving-code-review',
|
|
1511
|
+
keywords: 'handle,received,technical,rigor,especially,unclear',
|
|
1512
|
+
tech_stack: 'linter,analyzer,diff,pr-review',
|
|
1513
|
+
use_cases: 'code review;identify issues',
|
|
1192
1514
|
},
|
|
1193
1515
|
'skill:superpowers-subagent-development': {
|
|
1194
1516
|
intent_tags: 'subagent,parallel,development,independent,tasks,concurrent,delegation',
|
|
@@ -1196,6 +1518,7 @@ const RESOURCE_METADATA = {
|
|
|
1196
1518
|
capability_summary: 'Execute implementation plans with independent tasks via parallel subagents',
|
|
1197
1519
|
trigger_patterns: 'when executing plans with independent tasks that can be parallelized via subagents',
|
|
1198
1520
|
invocation_name: 'superpowers:subagent-driven-development',
|
|
1521
|
+
keywords: 'execute,plans,subagents,executing,parallelized',
|
|
1199
1522
|
},
|
|
1200
1523
|
'skill:superpowers-finishing-branch': {
|
|
1201
1524
|
intent_tags: 'finish,branch,merge,pr,cleanup,integrate,complete,development',
|
|
@@ -1203,6 +1526,8 @@ const RESOURCE_METADATA = {
|
|
|
1203
1526
|
capability_summary: 'Guide completion of development branches with merge PR or cleanup options',
|
|
1204
1527
|
trigger_patterns: 'when implementation is complete tests pass and need to decide how to integrate the work',
|
|
1205
1528
|
invocation_name: 'superpowers:finishing-a-development-branch',
|
|
1529
|
+
keywords: 'completion,branches,options,pass,decide',
|
|
1530
|
+
tech_stack: 'github',
|
|
1206
1531
|
},
|
|
1207
1532
|
'skill:superpowers-writing-skills': {
|
|
1208
1533
|
intent_tags: 'skill,write,create,edit,deploy,verify,author,markdown',
|
|
@@ -1210,6 +1535,8 @@ const RESOURCE_METADATA = {
|
|
|
1210
1535
|
capability_summary: 'Create edit and verify Claude Code skills before deployment',
|
|
1211
1536
|
trigger_patterns: 'when creating new skills editing existing skills or verifying skills work before deployment',
|
|
1212
1537
|
invocation_name: 'superpowers:writing-skills',
|
|
1538
|
+
keywords: 'claude,deployment,editing,existing,verifying',
|
|
1539
|
+
use_cases: 'create skill;extend Claude',
|
|
1213
1540
|
},
|
|
1214
1541
|
'skill:superpowers-parallel-agents': {
|
|
1215
1542
|
intent_tags: 'parallel,agents,dispatch,concurrent,independent,tasks,multi-agent',
|
|
@@ -1217,6 +1544,7 @@ const RESOURCE_METADATA = {
|
|
|
1217
1544
|
capability_summary: 'Dispatch parallel agents for 2+ independent tasks without shared state',
|
|
1218
1545
|
trigger_patterns: 'when facing 2 or more independent tasks that can be worked on without shared state',
|
|
1219
1546
|
invocation_name: 'superpowers:dispatching-parallel-agents',
|
|
1547
|
+
keywords: 'without,shared,state,facing,worked',
|
|
1220
1548
|
},
|
|
1221
1549
|
'skill:claude-api': {
|
|
1222
1550
|
intent_tags: 'claude,api,anthropic,sdk,build,integration,tool-use,agent-sdk',
|
|
@@ -1224,6 +1552,9 @@ const RESOURCE_METADATA = {
|
|
|
1224
1552
|
capability_summary: 'Build apps with the Claude API or Anthropic SDK including Agent SDK',
|
|
1225
1553
|
trigger_patterns: 'when code imports anthropic sdk or user asks to use Claude API Anthropic SDK or Agent SDK',
|
|
1226
1554
|
invocation_name: 'claude-api',
|
|
1555
|
+
keywords: 'anthropic-api,claude-sdk,tool-use,messages-api',
|
|
1556
|
+
tech_stack: 'rest,openapi',
|
|
1557
|
+
use_cases: 'API design;create endpoints',
|
|
1227
1558
|
},
|
|
1228
1559
|
'skill:postgres-patterns': {
|
|
1229
1560
|
intent_tags: 'postgresql,postgres,database,query,optimization,schema,indexing,security,supabase',
|
|
@@ -1231,6 +1562,8 @@ const RESOURCE_METADATA = {
|
|
|
1231
1562
|
capability_summary: 'PostgreSQL patterns for query optimization schema design indexing and security',
|
|
1232
1563
|
trigger_patterns: 'when user needs PostgreSQL query optimization schema design indexing or security patterns',
|
|
1233
1564
|
invocation_name: 'postgres-patterns',
|
|
1565
|
+
tech_stack: 'orm,mysql',
|
|
1566
|
+
use_cases: 'database design;schema migration',
|
|
1234
1567
|
},
|
|
1235
1568
|
'skill:multi-model-reviewer': {
|
|
1236
1569
|
intent_tags: 'multi-model,review,openrouter,gpt,qwen,claude,code-review,architecture',
|
|
@@ -1238,6 +1571,9 @@ const RESOURCE_METADATA = {
|
|
|
1238
1571
|
capability_summary: 'Multi-model code review via OpenRouter calling Claude GPT Qwen for joint assessment',
|
|
1239
1572
|
trigger_patterns: 'when user requests code review architecture review or multi-model multi-angle analysis',
|
|
1240
1573
|
invocation_name: 'multi-model-reviewer',
|
|
1574
|
+
keywords: 'calling,joint,assessment,requests,multi-angle',
|
|
1575
|
+
tech_stack: 'diff,pr-review,linter,analyzer',
|
|
1576
|
+
use_cases: 'code review;identify issues',
|
|
1241
1577
|
},
|
|
1242
1578
|
'skill:build-error-resolver': {
|
|
1243
1579
|
intent_tags: 'build,error,typescript,type-error,fix,compile,resolution,minimal',
|
|
@@ -1245,6 +1581,8 @@ const RESOURCE_METADATA = {
|
|
|
1245
1581
|
capability_summary: 'Fix build and TypeScript errors with minimal diffs focusing on getting build green',
|
|
1246
1582
|
trigger_patterns: 'when build fails or type errors occur needing quick resolution with minimal changes',
|
|
1247
1583
|
invocation_name: 'build-error-resolver',
|
|
1584
|
+
keywords: 'errors,diffs,focusing,getting,green,fails',
|
|
1585
|
+
use_cases: 'build config;bundler setup;error handling;error tracking',
|
|
1248
1586
|
},
|
|
1249
1587
|
'skill:perplexity-search': {
|
|
1250
1588
|
intent_tags: 'search,web,perplexity,latest,best-practice,documentation,solution',
|
|
@@ -1252,6 +1590,8 @@ const RESOURCE_METADATA = {
|
|
|
1252
1590
|
capability_summary: 'Web search via Perplexity AI for latest programming resources and solutions',
|
|
1253
1591
|
trigger_patterns: 'when needing latest API docs best practices tool recommendations or searching solutions online',
|
|
1254
1592
|
invocation_name: 'perplexity-search',
|
|
1593
|
+
keywords: 'resources,solutions,needing,docs,recommendations',
|
|
1594
|
+
tech_stack: 'http,rest',
|
|
1255
1595
|
},
|
|
1256
1596
|
'skill:claude-code-plugin-dev': {
|
|
1257
1597
|
intent_tags: 'plugin,claude-code,marketplace,mcp,hooks,commands,develop,publish',
|
|
@@ -1259,6 +1599,8 @@ const RESOURCE_METADATA = {
|
|
|
1259
1599
|
capability_summary: 'Create and publish Claude Code plugins with correct metadata format and marketplace support',
|
|
1260
1600
|
trigger_patterns: 'when building Claude Code plugins getting plugin install errors or packaging MCP servers as plugins',
|
|
1261
1601
|
invocation_name: 'claude-code-plugin-dev',
|
|
1602
|
+
keywords: 'plugin-dev,marketplace,plugin-json,hooks-json,mcp-config',
|
|
1603
|
+
tech_stack: 'claude-code,mcp-sdk,json-rpc',
|
|
1262
1604
|
},
|
|
1263
1605
|
'skill:npm-cross-platform-release': {
|
|
1264
1606
|
intent_tags: 'npm,publish,release,cross-platform,binary,github-actions,npx',
|
|
@@ -1266,6 +1608,8 @@ const RESOURCE_METADATA = {
|
|
|
1266
1608
|
capability_summary: 'Cross-platform binary build and npm publish via GitHub Actions with npx support',
|
|
1267
1609
|
trigger_patterns: 'when user needs to publish npm packages set up cross-platform binary distribution or CI/CD release',
|
|
1268
1610
|
invocation_name: 'npm-cross-platform-release',
|
|
1611
|
+
keywords: 'github,actions,packages,distribution',
|
|
1612
|
+
use_cases: 'deploy to production;release management',
|
|
1269
1613
|
},
|
|
1270
1614
|
'skill:fullstack-qa': {
|
|
1271
1615
|
intent_tags: 'qa,fullstack,automation,test,browser,api,ui,e2e,visual,curl',
|
|
@@ -1273,6 +1617,8 @@ const RESOURCE_METADATA = {
|
|
|
1273
1617
|
capability_summary: 'Fullstack automated testing: test suite curl API browser function UI visual review',
|
|
1274
1618
|
trigger_patterns: 'when user needs fullstack testing QA automation browser testing API testing or UI visual review',
|
|
1275
1619
|
invocation_name: 'fullstack-qa',
|
|
1620
|
+
keywords: 'suite,function,review',
|
|
1621
|
+
tech_stack: 'jest,vitest,pytest,chromium,playwright',
|
|
1276
1622
|
},
|
|
1277
1623
|
'skill:strategic-compact': {
|
|
1278
1624
|
intent_tags: 'compact,context,memory,compression,preserve,manual,window',
|
|
@@ -1280,6 +1626,7 @@ const RESOURCE_METADATA = {
|
|
|
1280
1626
|
capability_summary: 'Manual context compaction at logical intervals to preserve context through task phases',
|
|
1281
1627
|
trigger_patterns: 'when context window is getting full and need strategic compaction to preserve important context',
|
|
1282
1628
|
invocation_name: 'strategic-compact',
|
|
1629
|
+
keywords: 'compaction,logical,intervals,task,phases,getting',
|
|
1283
1630
|
},
|
|
1284
1631
|
'skill:keybindings-help': {
|
|
1285
1632
|
intent_tags: 'keybindings,keyboard,shortcuts,rebind,customize,chord,keys',
|
|
@@ -1287,6 +1634,8 @@ const RESOURCE_METADATA = {
|
|
|
1287
1634
|
capability_summary: 'Customize Claude Code keyboard shortcuts rebind keys and add chord bindings',
|
|
1288
1635
|
trigger_patterns: 'when user wants to customize keyboard shortcuts rebind keys or modify keybindings',
|
|
1289
1636
|
invocation_name: 'keybindings-help',
|
|
1637
|
+
keywords: 'bindings,modify',
|
|
1638
|
+
tech_stack: 'claude-code',
|
|
1290
1639
|
},
|
|
1291
1640
|
'skill:simplify': {
|
|
1292
1641
|
intent_tags: 'simplify,refactor,reuse,quality,efficiency,review,clean,code',
|
|
@@ -1294,6 +1643,9 @@ const RESOURCE_METADATA = {
|
|
|
1294
1643
|
capability_summary: 'Review changed code for reuse quality and efficiency then fix any issues found',
|
|
1295
1644
|
trigger_patterns: 'when user wants to review and simplify recently changed code for quality and efficiency',
|
|
1296
1645
|
invocation_name: 'simplify',
|
|
1646
|
+
keywords: 'changed,found,recently',
|
|
1647
|
+
tech_stack: 'linter,analyzer',
|
|
1648
|
+
use_cases: 'simplify code;reduce complexity;refactor code',
|
|
1297
1649
|
},
|
|
1298
1650
|
'skill:loop': {
|
|
1299
1651
|
intent_tags: 'loop,recurring,interval,poll,schedule,repeat,monitor,cron',
|
|
@@ -1301,6 +1653,7 @@ const RESOURCE_METADATA = {
|
|
|
1301
1653
|
capability_summary: 'Run a prompt or slash command on a recurring interval for monitoring or polling',
|
|
1302
1654
|
trigger_patterns: 'when user wants to set up a recurring task poll for status or run something repeatedly',
|
|
1303
1655
|
invocation_name: 'loop',
|
|
1656
|
+
keywords: 'prompt,slash,command,polling,task',
|
|
1304
1657
|
},
|
|
1305
1658
|
'skill:feature-dev': {
|
|
1306
1659
|
intent_tags: 'feature,development,guided,architecture,codebase,implementation,design',
|
|
@@ -1308,6 +1661,7 @@ const RESOURCE_METADATA = {
|
|
|
1308
1661
|
capability_summary: 'Guided feature development with codebase understanding and architecture focus',
|
|
1309
1662
|
trigger_patterns: 'when user needs guided feature development with architecture analysis and codebase understanding',
|
|
1310
1663
|
invocation_name: 'feature-dev:feature-dev',
|
|
1664
|
+
keywords: 'understanding,focus',
|
|
1311
1665
|
},
|
|
1312
1666
|
'skill:mem-search': {
|
|
1313
1667
|
intent_tags: 'memory,search,manage,recall,observations,sessions,prompts,history',
|
|
@@ -1315,6 +1669,8 @@ const RESOURCE_METADATA = {
|
|
|
1315
1669
|
capability_summary: 'Search and manage project memory including observations sessions and prompts',
|
|
1316
1670
|
trigger_patterns: 'when user wants to search memory recall past work manage observations or browse session history',
|
|
1317
1671
|
invocation_name: 'claude-mem-lite:mem',
|
|
1672
|
+
keywords: 'past,browse,session',
|
|
1673
|
+
tech_stack: 'claude-code',
|
|
1318
1674
|
},
|
|
1319
1675
|
|
|
1320
1676
|
// ─── Plugin Commands as Skills ─────────────────────────────────────────────
|
|
@@ -1324,6 +1680,9 @@ const RESOURCE_METADATA = {
|
|
|
1324
1680
|
capability_summary: 'Clean up git branches marked as gone with associated worktree removal',
|
|
1325
1681
|
trigger_patterns: 'when user needs to clean up deleted remote branches or prune gone branches',
|
|
1326
1682
|
invocation_name: 'commit-commands:clean_gone',
|
|
1683
|
+
keywords: 'branches,marked,associated,removal,deleted',
|
|
1684
|
+
tech_stack: 'github',
|
|
1685
|
+
use_cases: 'git workflow;version control;refactor code;reduce complexity',
|
|
1327
1686
|
},
|
|
1328
1687
|
'skill:commit': {
|
|
1329
1688
|
intent_tags: 'git,commit,save,stage,message,changes',
|
|
@@ -1331,6 +1690,8 @@ const RESOURCE_METADATA = {
|
|
|
1331
1690
|
capability_summary: 'Create a git commit with staged changes',
|
|
1332
1691
|
trigger_patterns: 'when user wants to create a git commit',
|
|
1333
1692
|
invocation_name: 'commit-commands:commit',
|
|
1693
|
+
tech_stack: 'github',
|
|
1694
|
+
use_cases: 'git workflow;version control;create commits;open PRs',
|
|
1334
1695
|
},
|
|
1335
1696
|
'skill:commit-push-pr': {
|
|
1336
1697
|
intent_tags: 'git,commit,push,pr,pull-request,merge,publish',
|
|
@@ -1338,6 +1699,8 @@ const RESOURCE_METADATA = {
|
|
|
1338
1699
|
capability_summary: 'Commit push and open a pull request in one workflow',
|
|
1339
1700
|
trigger_patterns: 'when user wants to commit push and create a PR in one step',
|
|
1340
1701
|
invocation_name: 'commit-commands:commit-push-pr',
|
|
1702
|
+
keywords: 'open,pull,request,step',
|
|
1703
|
+
use_cases: 'git workflow;version control;create commits;open PRs',
|
|
1341
1704
|
},
|
|
1342
1705
|
'skill:ralph-cancel': {
|
|
1343
1706
|
intent_tags: 'ralph,cancel,stop,loop,session,abort',
|
|
@@ -1352,6 +1715,7 @@ const RESOURCE_METADATA = {
|
|
|
1352
1715
|
capability_summary: 'Explain Ralph Loop plugin and list available commands',
|
|
1353
1716
|
trigger_patterns: 'when user asks about Ralph Loop what it does or how to use it',
|
|
1354
1717
|
invocation_name: 'ralph-loop:help',
|
|
1718
|
+
keywords: 'loop,plugin,list,available,asks,what',
|
|
1355
1719
|
},
|
|
1356
1720
|
'skill:ralph-loop-start': {
|
|
1357
1721
|
intent_tags: 'ralph,loop,start,autonomous,session,continuous',
|
|
@@ -1366,6 +1730,7 @@ const RESOURCE_METADATA = {
|
|
|
1366
1730
|
capability_summary: 'Resume project execution from saved state with workspace validation',
|
|
1367
1731
|
trigger_patterns: 'when user wants to resume a paused GSD project from saved state',
|
|
1368
1732
|
invocation_name: 'gsd:resume',
|
|
1733
|
+
keywords: 'saved,validation,paused',
|
|
1369
1734
|
},
|
|
1370
1735
|
'skill:gsd-start': {
|
|
1371
1736
|
intent_tags: 'gsd,start,project,requirements,plan,discuss,execute',
|
|
@@ -1373,6 +1738,7 @@ const RESOURCE_METADATA = {
|
|
|
1373
1738
|
capability_summary: 'Interactive project start — discuss requirements research plan then auto-execute',
|
|
1374
1739
|
trigger_patterns: 'when user wants to start a new GSD project with discussion planning and execution',
|
|
1375
1740
|
invocation_name: 'gsd:start',
|
|
1741
|
+
keywords: 'interactive,research,auto-execute,discussion',
|
|
1376
1742
|
},
|
|
1377
1743
|
'skill:gsd-stop': {
|
|
1378
1744
|
intent_tags: 'gsd,stop,pause,save,state,checkpoint',
|
|
@@ -1380,6 +1746,7 @@ const RESOURCE_METADATA = {
|
|
|
1380
1746
|
capability_summary: 'Save current GSD project state and pause execution',
|
|
1381
1747
|
trigger_patterns: 'when user wants to pause or stop a GSD project and save progress',
|
|
1382
1748
|
invocation_name: 'gsd:stop',
|
|
1749
|
+
keywords: 'current,progress',
|
|
1383
1750
|
},
|
|
1384
1751
|
'skill:gsd-prd': {
|
|
1385
1752
|
intent_tags: 'gsd,prd,requirements,document,description,spec,start',
|
|
@@ -1394,6 +1761,8 @@ const RESOURCE_METADATA = {
|
|
|
1394
1761
|
capability_summary: 'Display GSD project progress overview from canonical state fields',
|
|
1395
1762
|
trigger_patterns: 'when user wants to see GSD project status progress or current state',
|
|
1396
1763
|
invocation_name: 'gsd:status',
|
|
1764
|
+
keywords: 'display,canonical,fields,current',
|
|
1765
|
+
tech_stack: 'prometheus,grafana',
|
|
1397
1766
|
},
|
|
1398
1767
|
|
|
1399
1768
|
// ─── Plugin Agent Types ────────────────────────────────────────────────────
|
|
@@ -1403,6 +1772,8 @@ const RESOURCE_METADATA = {
|
|
|
1403
1772
|
capability_summary: 'Design feature architectures by analyzing codebase patterns with implementation blueprints',
|
|
1404
1773
|
trigger_patterns: 'when user needs feature architecture design with codebase analysis and implementation blueprints',
|
|
1405
1774
|
invocation_name: 'feature-dev:code-architect',
|
|
1775
|
+
keywords: 'architectures,analyzing,blueprints',
|
|
1776
|
+
use_cases: 'UI design;layout build',
|
|
1406
1777
|
},
|
|
1407
1778
|
'agent:feature-dev-code-reviewer': {
|
|
1408
1779
|
intent_tags: 'review,bugs,logic,security,quality,conventions,confidence,priority',
|
|
@@ -1410,6 +1781,9 @@ const RESOURCE_METADATA = {
|
|
|
1410
1781
|
capability_summary: 'Review code for bugs security vulnerabilities and quality with confidence-based filtering',
|
|
1411
1782
|
trigger_patterns: 'when user needs focused code review for bugs security issues and high-priority quality problems',
|
|
1412
1783
|
invocation_name: 'feature-dev:code-reviewer',
|
|
1784
|
+
keywords: 'vulnerabilities,confidence-based,filtering,focused,high-priority',
|
|
1785
|
+
tech_stack: 'linter,analyzer,diff,pr-review,owasp',
|
|
1786
|
+
use_cases: 'code review;identify issues',
|
|
1413
1787
|
},
|
|
1414
1788
|
'agent:feature-dev-code-explorer': {
|
|
1415
1789
|
intent_tags: 'explore,analyze,trace,execution,architecture,dependencies,understand,codebase',
|
|
@@ -1417,6 +1791,8 @@ const RESOURCE_METADATA = {
|
|
|
1417
1791
|
capability_summary: 'Deep codebase analysis by tracing execution paths mapping architecture and understanding patterns',
|
|
1418
1792
|
trigger_patterns: 'when user needs deep codebase analysis execution path tracing or architecture understanding',
|
|
1419
1793
|
invocation_name: 'feature-dev:code-explorer',
|
|
1794
|
+
keywords: 'deep,tracing,paths,mapping,understanding,patterns',
|
|
1795
|
+
use_cases: 'explore options;investigate approaches',
|
|
1420
1796
|
},
|
|
1421
1797
|
'agent:code-simplifier-agent': {
|
|
1422
1798
|
intent_tags: 'simplify,refine,clarity,consistency,maintainability,clean,refactor',
|
|
@@ -1424,6 +1800,9 @@ const RESOURCE_METADATA = {
|
|
|
1424
1800
|
capability_summary: 'Simplify and refine code for clarity consistency and maintainability preserving functionality',
|
|
1425
1801
|
trigger_patterns: 'when user wants to simplify code improve clarity or refine for consistency and maintainability',
|
|
1426
1802
|
invocation_name: 'code-simplifier:code-simplifier',
|
|
1803
|
+
keywords: 'preserving,functionality,improve',
|
|
1804
|
+
tech_stack: 'linter,analyzer',
|
|
1805
|
+
use_cases: 'simplify code;reduce complexity',
|
|
1427
1806
|
},
|
|
1428
1807
|
'agent:superpowers-code-reviewer-agent': {
|
|
1429
1808
|
intent_tags: 'review,plan,standards,major-step,validate,milestone,code-review',
|
|
@@ -1431,6 +1810,9 @@ const RESOURCE_METADATA = {
|
|
|
1431
1810
|
capability_summary: 'Review completed project steps against original plan and coding standards',
|
|
1432
1811
|
trigger_patterns: 'when a major project step is completed and needs review against plan and coding standards',
|
|
1433
1812
|
invocation_name: 'superpowers:code-reviewer',
|
|
1813
|
+
keywords: 'completed,steps,against,original,major',
|
|
1814
|
+
tech_stack: 'linter,analyzer,diff,pr-review',
|
|
1815
|
+
use_cases: 'code review;identify issues;architecture design;implementation planning',
|
|
1434
1816
|
},
|
|
1435
1817
|
'agent:gsd-debugger': {
|
|
1436
1818
|
intent_tags: 'debug,systematic,root-cause,analysis,fix,diagnose,gsd',
|
|
@@ -1438,6 +1820,8 @@ const RESOURCE_METADATA = {
|
|
|
1438
1820
|
capability_summary: 'Systematic GSD debugging with root cause analysis and targeted fixes',
|
|
1439
1821
|
trigger_patterns: 'when GSD project encounters bugs needing systematic debugging and root cause analysis',
|
|
1440
1822
|
invocation_name: 'gsd:debugger',
|
|
1823
|
+
keywords: 'root,cause,targeted,fixes,encounters,bugs',
|
|
1824
|
+
use_cases: 'debug errors;isolate issues',
|
|
1441
1825
|
},
|
|
1442
1826
|
'agent:gsd-executor': {
|
|
1443
1827
|
intent_tags: 'execute,task,tdd,self-review,structured,result,gsd',
|
|
@@ -1445,6 +1829,8 @@ const RESOURCE_METADATA = {
|
|
|
1445
1829
|
capability_summary: 'Execute one GSD task with TDD self-review and return structured result',
|
|
1446
1830
|
trigger_patterns: 'when GSD project needs to execute a single task with TDD and structured output',
|
|
1447
1831
|
invocation_name: 'gsd:executor',
|
|
1832
|
+
keywords: 'return,single,output',
|
|
1833
|
+
use_cases: 'write unit tests;increase test coverage',
|
|
1448
1834
|
},
|
|
1449
1835
|
'agent:gsd-reviewer': {
|
|
1450
1836
|
intent_tags: 'review,two-stage,quality,post-execution,gsd,verify',
|
|
@@ -1452,6 +1838,9 @@ const RESOURCE_METADATA = {
|
|
|
1452
1838
|
capability_summary: 'Two-stage code review after GSD executor completes a task',
|
|
1453
1839
|
trigger_patterns: 'when GSD executor completes a task and needs two-stage quality review',
|
|
1454
1840
|
invocation_name: 'gsd:reviewer',
|
|
1841
|
+
keywords: 'executor,completes,task',
|
|
1842
|
+
tech_stack: 'diff,pr-review,linter,analyzer',
|
|
1843
|
+
use_cases: 'code review;identify issues',
|
|
1455
1844
|
},
|
|
1456
1845
|
'agent:gsd-researcher': {
|
|
1457
1846
|
intent_tags: 'research,domain,ecosystem,planning,investigate,gsd,discovery',
|
|
@@ -1459,6 +1848,8 @@ const RESOURCE_METADATA = {
|
|
|
1459
1848
|
capability_summary: 'Research domain ecosystem and gather information before GSD project planning',
|
|
1460
1849
|
trigger_patterns: 'when GSD project needs domain research ecosystem investigation before planning',
|
|
1461
1850
|
invocation_name: 'gsd:researcher',
|
|
1851
|
+
keywords: 'gather,information,investigation',
|
|
1852
|
+
tech_stack: 'architecture',
|
|
1462
1853
|
},
|
|
1463
1854
|
|
|
1464
1855
|
};
|
|
@@ -1506,8 +1897,20 @@ function registerVirtualResources(rdb) {
|
|
|
1506
1897
|
const insert = rdb.prepare(`
|
|
1507
1898
|
INSERT OR IGNORE INTO resources (name, type, status, source, local_path, invocation_name,
|
|
1508
1899
|
intent_tags, domain_tags, capability_summary, trigger_patterns,
|
|
1900
|
+
keywords, tech_stack, use_cases,
|
|
1509
1901
|
created_at, updated_at)
|
|
1510
|
-
VALUES (?, ?, 'active', 'preinstalled', '', ?, ?, ?, ?, ?, datetime('now'), datetime('now'))
|
|
1902
|
+
VALUES (?, ?, 'active', 'preinstalled', '', ?, ?, ?, ?, ?, ?, ?, ?, datetime('now'), datetime('now'))
|
|
1903
|
+
`);
|
|
1904
|
+
|
|
1905
|
+
// Backfill FTS5 fields for existing resources that have empty keywords/tech_stack/use_cases
|
|
1906
|
+
const updateFts = rdb.prepare(`
|
|
1907
|
+
UPDATE resources SET
|
|
1908
|
+
keywords = CASE WHEN (keywords IS NULL OR keywords = '') AND ?1 != '' THEN ?1 ELSE keywords END,
|
|
1909
|
+
tech_stack = CASE WHEN (tech_stack IS NULL OR tech_stack = '') AND ?2 != '' THEN ?2 ELSE tech_stack END,
|
|
1910
|
+
use_cases = CASE WHEN (use_cases IS NULL OR use_cases = '') AND ?3 != '' THEN ?3 ELSE use_cases END,
|
|
1911
|
+
updated_at = datetime('now')
|
|
1912
|
+
WHERE type = ?4 AND name = ?5
|
|
1913
|
+
AND ((keywords IS NULL OR keywords = '') OR (tech_stack IS NULL OR tech_stack = '') OR (use_cases IS NULL OR use_cases = ''))
|
|
1511
1914
|
`);
|
|
1512
1915
|
|
|
1513
1916
|
let count = 0;
|
|
@@ -1524,9 +1927,35 @@ function registerVirtualResources(rdb) {
|
|
|
1524
1927
|
meta.domain_tags || '',
|
|
1525
1928
|
meta.capability_summary || `${type}: ${name.replace(/-/g, ' ')}`,
|
|
1526
1929
|
meta.trigger_patterns || `when user needs ${name.replace(/-/g, ' ')}`,
|
|
1930
|
+
meta.keywords || '',
|
|
1931
|
+
meta.tech_stack || '',
|
|
1932
|
+
meta.use_cases || '',
|
|
1527
1933
|
);
|
|
1528
1934
|
count += changes;
|
|
1935
|
+
|
|
1936
|
+
// Backfill FTS5 fields for existing resources
|
|
1937
|
+
if (changes === 0) {
|
|
1938
|
+
updateFts.run(meta.keywords || '', meta.tech_stack || '', meta.use_cases || '', type, name);
|
|
1939
|
+
}
|
|
1529
1940
|
}
|
|
1941
|
+
|
|
1942
|
+
// Backfill keywords from preinstalled tags for resources still missing keywords
|
|
1943
|
+
try {
|
|
1944
|
+
const backfill = rdb.prepare(`
|
|
1945
|
+
UPDATE resources SET keywords = (
|
|
1946
|
+
SELECT GROUP_CONCAT(json_each.value, ',')
|
|
1947
|
+
FROM preinstalled p, json_each(p.tags)
|
|
1948
|
+
WHERE p.type = resources.type AND p.name = resources.name
|
|
1949
|
+
)
|
|
1950
|
+
WHERE (keywords IS NULL OR keywords = '')
|
|
1951
|
+
AND EXISTS (
|
|
1952
|
+
SELECT 1 FROM preinstalled p
|
|
1953
|
+
WHERE p.type = resources.type AND p.name = resources.name
|
|
1954
|
+
AND p.tags != '[]' AND p.tags IS NOT NULL
|
|
1955
|
+
)
|
|
1956
|
+
`);
|
|
1957
|
+
backfill.run();
|
|
1958
|
+
} catch {}
|
|
1530
1959
|
})();
|
|
1531
1960
|
return count;
|
|
1532
1961
|
}
|