@ngxtm/devkit 3.16.0 → 3.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/merged-commands/skill/sync.md +1 -1
- package/package.json +7 -2
- package/rules-index.json +1 -1
- package/scripts/build-compact-index.js +279 -0
- package/scripts/build-skill-graph.js +208 -0
- package/skills-compact.json +1 -0
- package/skills-graph.json +25 -0
|
@@ -134,7 +134,7 @@ npm run build
|
|
|
134
134
|
|
|
135
135
|
Stage and commit the changes:
|
|
136
136
|
```bash
|
|
137
|
-
git add skills/ rules/ merged-commands/ SKILLS_INDEX.md skills-index.json skills-compact.json rules-index.json
|
|
137
|
+
git add skills/ rules/ merged-commands/ SKILLS_INDEX.md skills-index.json skills-compact.json skills-graph.json rules-index.json
|
|
138
138
|
```
|
|
139
139
|
|
|
140
140
|
Commit message format:
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngxtm/devkit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"description": "Per-project AI skills with smart tech detection - lightweight and context-optimized",
|
|
5
5
|
"main": "cli/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"devkit": "cli/index.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "npm run merge-commands && npm run organize-rules && npm run generate-index && npm run build-compact-index",
|
|
10
|
+
"build": "npm run merge-commands && npm run organize-rules && npm run generate-index && npm run build-skill-graph && npm run build-compact-index",
|
|
11
|
+
"build-skill-graph": "node scripts/build-skill-graph.js",
|
|
11
12
|
"build-compact-index": "node scripts/build-compact-index.js",
|
|
12
13
|
"merge-commands": "node scripts/merge-commands.js",
|
|
13
14
|
"organize-rules": "node scripts/organize-rules.js",
|
|
@@ -25,8 +26,12 @@
|
|
|
25
26
|
"scripts/merge-commands.js",
|
|
26
27
|
"scripts/organize-rules.js",
|
|
27
28
|
"scripts/generate-index.js",
|
|
29
|
+
"scripts/build-skill-graph.js",
|
|
30
|
+
"scripts/build-compact-index.js",
|
|
28
31
|
"hooks/",
|
|
29
32
|
"skills-index.json",
|
|
33
|
+
"skills-compact.json",
|
|
34
|
+
"skills-graph.json",
|
|
30
35
|
"rules-index.json",
|
|
31
36
|
"SKILLS_INDEX.md"
|
|
32
37
|
],
|
package/rules-index.json
CHANGED
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Build Compact Skill Index
|
|
5
|
+
*
|
|
6
|
+
* Creates a minimal index (~20-30KB) for auto-skill detection
|
|
7
|
+
* without overwhelming Claude's context window.
|
|
8
|
+
*
|
|
9
|
+
* Output: skills-compact.json
|
|
10
|
+
* Format: { "skill-name": { "c": "category", "d": "short description" } }
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
const fs = require('fs');
|
|
14
|
+
const path = require('path');
|
|
15
|
+
|
|
16
|
+
const SKILLS_DIR = path.join(__dirname, '..', 'skills');
|
|
17
|
+
const GRAPH_FILE = path.join(__dirname, '..', 'skills-graph.json');
|
|
18
|
+
const OUTPUT_FILE = path.join(__dirname, '..', 'skills-compact.json');
|
|
19
|
+
|
|
20
|
+
// Weight defaults — keep in sync with build-skill-graph.js
|
|
21
|
+
const WEIGHT_DEFAULTS = { enhances: 'strong', 'pairs-with': 'moderate' };
|
|
22
|
+
|
|
23
|
+
// Category short codes
|
|
24
|
+
const CATEGORY_CODES = {
|
|
25
|
+
'security': 'sec',
|
|
26
|
+
'devops': 'ops',
|
|
27
|
+
'ai-ml': 'ai',
|
|
28
|
+
'testing': 'test',
|
|
29
|
+
'database': 'db',
|
|
30
|
+
'mobile': 'mob',
|
|
31
|
+
'rust': 'rs',
|
|
32
|
+
'golang': 'go',
|
|
33
|
+
'python': 'py',
|
|
34
|
+
'data': 'data',
|
|
35
|
+
'performance': 'perf',
|
|
36
|
+
'architecture': 'arch',
|
|
37
|
+
'git-workflow': 'git',
|
|
38
|
+
'documentation': 'doc',
|
|
39
|
+
'backend': 'be',
|
|
40
|
+
'frontend': 'fe',
|
|
41
|
+
'other': 'other'
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
// Category patterns — ORDER MATTERS: specific categories first, broad ones last
|
|
45
|
+
const CATEGORY_PATTERNS = [
|
|
46
|
+
['security', /security|auth|oauth|jwt|owasp|pentest|penetration|vulnerability|exploit|xss|injection|privilege.escalation|active.directory|attack|malware|forensic|reverse.engineer|red.team|burp|shodan|metasploit|sqlmap|brute.?force|encryption|crypto(?!currency)|firewall|ids|ips|siem|soc|threat|cve|hardening|compliance|gdpr|pci|sast|dast|ctf/i],
|
|
47
|
+
['devops', /docker|kubernetes|k8s|ci[\/-]?cd|deploy|aws|azure|gcp|cloud|terraform|ansible|helm|istio|linkerd|jenkins|github.actions|gitlab.ci|argocd|pulumi|vagrant|prometheus|grafana|monitoring|observability|sre|incident|on.call|runbook|infrastructure|server.management|nginx|apache|load.balancer|cdn/i],
|
|
48
|
+
['ai-ml', /\bai\b|machine.learning|\bml\b|\bllm\b|agent(?!.assistant)|openai|anthropic|langchain|langgraph|prompt|embedding|rag\b|mcp\b|fine.tuning|hugging.face|transformer|gpt|claude|gemini|diffusion|stable|midjourney|vision|nlp|neural|deep.learning|tensor|torch|crew.?ai|autogen|semantic|vector/i],
|
|
49
|
+
['testing', /\btest|jest|vitest|playwright|cypress|tdd|bdd|e2e|qa\b|regression|unit.test|integration.test|mock|stub|fixture|coverage|assertion/i],
|
|
50
|
+
['database', /database|sql\b|postgres|mysql|mongo|redis|prisma|drizzle|supabase|firebase|dynamo|cassandra|cockroach|sqlite|migration|schema|query.optim|nosql|elasticsearch|clickhouse|neon/i],
|
|
51
|
+
['mobile', /mobile|react.native|flutter|ios\b|android|swift(?!ui)|kotlin(?!.specialist)|expo|dart\b|xcode|app.store|play.store/i],
|
|
52
|
+
['rust', /\brust\b|cargo|tokio|actix|wasm/i],
|
|
53
|
+
['golang', /\bgolang\b|\bgo\b(?!ogle|dot|od)|gin\b|echo\b|fiber\b/i],
|
|
54
|
+
['python', /\bpython\b|django|flask|fastapi|pandas|numpy|scipy|jupyter|pip\b|poetry|uv\b.*package/i],
|
|
55
|
+
['data', /\bdata\b.*(?:engineer|pipeline|quality|warehouse)|analytics|etl\b|spark\b|kafka\b|airflow|dbt\b|streaming/i],
|
|
56
|
+
['performance', /performance|profiling|optimization|cache|benchmark|latency|throughput|memory.leak/i],
|
|
57
|
+
['architecture', /architecture|system.design|design.pattern|\bsolid\b|clean.architecture|\bddd\b|event.sourc|cqrs|hexagonal|microservice.pattern|domain.driven/i],
|
|
58
|
+
['git-workflow', /\bgit\b|github|gitlab|pull.request|\bpr\b|code.review|branching|merge|commit|changelog|version|release/i],
|
|
59
|
+
['documentation',/\bdoc\b|readme|api.doc|swagger|openapi|technical.writing|jsdoc|typedoc/i],
|
|
60
|
+
['backend', /node\.?js|express|nest\.?js|fastify|hono|backend|server|api\b|rest\b|graphql|grpc|webhook|middleware|routing|endpoint|websocket/i],
|
|
61
|
+
['frontend', /react(?!.native)|vue|angular|svelte|next\.?js|nuxt|remix|astro|frontend|ui\b|ux\b|css|tailwind|component|html|dom|browser|responsive|accessibility|wcag|animation|canvas|three\.?js|d3/i],
|
|
62
|
+
];
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Parse YAML frontmatter
|
|
66
|
+
*/
|
|
67
|
+
function parseFrontmatter(content) {
|
|
68
|
+
const normalized = content.replace(/\r\n/g, '\n').replace(/\r/g, '\n');
|
|
69
|
+
const match = normalized.match(/^---\n([\s\S]*?)\n---/);
|
|
70
|
+
if (!match) return {};
|
|
71
|
+
|
|
72
|
+
const yaml = match[1];
|
|
73
|
+
const result = {};
|
|
74
|
+
|
|
75
|
+
const lines = yaml.split('\n');
|
|
76
|
+
for (const line of lines) {
|
|
77
|
+
const colonIndex = line.indexOf(':');
|
|
78
|
+
if (colonIndex > 0) {
|
|
79
|
+
const key = line.slice(0, colonIndex).trim();
|
|
80
|
+
let value = line.slice(colonIndex + 1).trim();
|
|
81
|
+
if ((value.startsWith('"') && value.endsWith('"')) ||
|
|
82
|
+
(value.startsWith("'") && value.endsWith("'"))) {
|
|
83
|
+
value = value.slice(1, -1);
|
|
84
|
+
}
|
|
85
|
+
result[key] = value;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return result;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Categorize skill
|
|
94
|
+
*/
|
|
95
|
+
function categorizeSkill(name, description) {
|
|
96
|
+
const nameText = name.toLowerCase();
|
|
97
|
+
const fullText = `${name} ${description}`.toLowerCase();
|
|
98
|
+
|
|
99
|
+
// Match on name first (more reliable), then fall back to description
|
|
100
|
+
for (const [category, pattern] of CATEGORY_PATTERNS) {
|
|
101
|
+
if (pattern.test(nameText)) {
|
|
102
|
+
return CATEGORY_CODES[category] || category;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
for (const [category, pattern] of CATEGORY_PATTERNS) {
|
|
106
|
+
if (pattern.test(fullText)) {
|
|
107
|
+
return CATEGORY_CODES[category] || category;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
return 'other';
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Shorten description to max 60 chars
|
|
116
|
+
*/
|
|
117
|
+
function shortenDesc(desc) {
|
|
118
|
+
if (!desc) return '';
|
|
119
|
+
|
|
120
|
+
// Remove markdown, newlines, extra spaces
|
|
121
|
+
let clean = desc
|
|
122
|
+
.replace(/\r?\n/g, ' ')
|
|
123
|
+
.replace(/[#*`_\[\]]/g, '')
|
|
124
|
+
.replace(/\s+/g, ' ')
|
|
125
|
+
.trim();
|
|
126
|
+
|
|
127
|
+
if (clean.length <= 60) return clean;
|
|
128
|
+
|
|
129
|
+
// Cut at word boundary
|
|
130
|
+
const cut = clean.slice(0, 57);
|
|
131
|
+
const lastSpace = cut.lastIndexOf(' ');
|
|
132
|
+
return (lastSpace > 40 ? cut.slice(0, lastSpace) : cut) + '...';
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Build compact index
|
|
137
|
+
*/
|
|
138
|
+
function buildCompactIndex() {
|
|
139
|
+
console.log('Building compact skill index...\n');
|
|
140
|
+
|
|
141
|
+
if (!fs.existsSync(SKILLS_DIR)) {
|
|
142
|
+
console.error('Skills directory not found:', SKILLS_DIR);
|
|
143
|
+
process.exit(1);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
const skillDirs = fs.readdirSync(SKILLS_DIR, { withFileTypes: true })
|
|
147
|
+
.filter(d => d.isDirectory() && !d.name.startsWith('.'))
|
|
148
|
+
.map(d => d.name)
|
|
149
|
+
.sort();
|
|
150
|
+
|
|
151
|
+
console.log(`Found ${skillDirs.length} skill directories`);
|
|
152
|
+
|
|
153
|
+
const index = {
|
|
154
|
+
_categories: CATEGORY_CODES,
|
|
155
|
+
skills: {}
|
|
156
|
+
};
|
|
157
|
+
let processedCount = 0;
|
|
158
|
+
|
|
159
|
+
for (const skillName of skillDirs) {
|
|
160
|
+
const skillPath = path.join(SKILLS_DIR, skillName);
|
|
161
|
+
const skillFile = path.join(skillPath, 'SKILL.md');
|
|
162
|
+
|
|
163
|
+
if (!fs.existsSync(skillFile)) continue;
|
|
164
|
+
|
|
165
|
+
const content = fs.readFileSync(skillFile, 'utf-8');
|
|
166
|
+
const frontmatter = parseFrontmatter(content);
|
|
167
|
+
|
|
168
|
+
const description = frontmatter.description || '';
|
|
169
|
+
const category = categorizeSkill(skillName, description);
|
|
170
|
+
|
|
171
|
+
// Include category and short description for semantic matching
|
|
172
|
+
const shortDesc = shortenDesc(description);
|
|
173
|
+
index.skills[skillName] = shortDesc ? { c: category, d: shortDesc } : category;
|
|
174
|
+
|
|
175
|
+
processedCount++;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
console.log(`Processed ${processedCount} skills`);
|
|
179
|
+
|
|
180
|
+
// Merge cascade fields from skills-graph.json
|
|
181
|
+
if (fs.existsSync(GRAPH_FILE)) {
|
|
182
|
+
let graph;
|
|
183
|
+
try {
|
|
184
|
+
graph = JSON.parse(fs.readFileSync(GRAPH_FILE, 'utf-8'));
|
|
185
|
+
} catch (e) {
|
|
186
|
+
console.error(`Warning: skills-graph.json is malformed, skipping cascade merge: ${e.message}`);
|
|
187
|
+
graph = null;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
if (graph) {
|
|
191
|
+
|
|
192
|
+
// Build set of quarantined skills
|
|
193
|
+
const quarantined = new Set();
|
|
194
|
+
for (const [name, data] of Object.entries(graph.graph || {})) {
|
|
195
|
+
if (data._security === 'quarantined') quarantined.add(name);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
// Merge cascade fields into compact skills
|
|
199
|
+
let cascadeCount = 0;
|
|
200
|
+
for (const [name, data] of Object.entries(graph.graph || {})) {
|
|
201
|
+
if (quarantined.has(name)) continue;
|
|
202
|
+
if (!index.skills[name]) continue;
|
|
203
|
+
if (!data.connections) continue;
|
|
204
|
+
|
|
205
|
+
// Ensure skill entry is an object (not just a category string)
|
|
206
|
+
if (typeof index.skills[name] === 'string') {
|
|
207
|
+
index.skills[name] = { c: index.skills[name] };
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
const enhances = (data.connections.enhances || []).filter(s => !quarantined.has(s));
|
|
211
|
+
const pairsWith = (data.connections['pairs-with'] || []).filter(s => !quarantined.has(s));
|
|
212
|
+
const weights = data.connections.weights || {};
|
|
213
|
+
const domain = data.connections.domain || [];
|
|
214
|
+
|
|
215
|
+
if (enhances.length) index.skills[name].e = enhances;
|
|
216
|
+
if (pairsWith.length) index.skills[name].p = pairsWith;
|
|
217
|
+
|
|
218
|
+
// Only include non-default weights
|
|
219
|
+
const nonDefaultWeights = {};
|
|
220
|
+
for (const [target, weight] of Object.entries(weights)) {
|
|
221
|
+
if (quarantined.has(target)) continue;
|
|
222
|
+
const isEnhance = enhances.includes(target);
|
|
223
|
+
const isPair = pairsWith.includes(target);
|
|
224
|
+
if (isEnhance && weight !== WEIGHT_DEFAULTS.enhances) nonDefaultWeights[target] = weight;
|
|
225
|
+
else if (isPair && weight !== WEIGHT_DEFAULTS['pairs-with']) nonDefaultWeights[target] = weight;
|
|
226
|
+
}
|
|
227
|
+
if (Object.keys(nonDefaultWeights).length) index.skills[name].w = nonDefaultWeights;
|
|
228
|
+
|
|
229
|
+
if (domain.length) index.skills[name].k = domain;
|
|
230
|
+
|
|
231
|
+
cascadeCount++;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// Copy _recipes (removing quarantined skill refs)
|
|
235
|
+
if (graph._recipes && Object.keys(graph._recipes).length) {
|
|
236
|
+
index._recipes = {};
|
|
237
|
+
for (const [name, recipe] of Object.entries(graph._recipes)) {
|
|
238
|
+
const cleanSkills = (recipe.skills || []).filter(s => !quarantined.has(s));
|
|
239
|
+
if (cleanSkills.length < 2) continue;
|
|
240
|
+
index._recipes[name] = {
|
|
241
|
+
triggers: recipe.triggers || [],
|
|
242
|
+
skills: cleanSkills,
|
|
243
|
+
workflow: recipe.workflow || []
|
|
244
|
+
};
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
console.log(`Merged cascade fields for ${cascadeCount} skills from graph`);
|
|
249
|
+
if (quarantined.size) console.log(`Quarantined: ${quarantined.size} skills excluded`);
|
|
250
|
+
} // if (graph)
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
// Write output (no pretty print for smaller size)
|
|
254
|
+
fs.writeFileSync(OUTPUT_FILE, JSON.stringify(index));
|
|
255
|
+
|
|
256
|
+
const stats = fs.statSync(OUTPUT_FILE);
|
|
257
|
+
console.log(`\nGenerated: ${OUTPUT_FILE}`);
|
|
258
|
+
console.log(`Size: ${(stats.size / 1024).toFixed(1)} KB`);
|
|
259
|
+
console.log(`Skills: ${Object.keys(index.skills).length}`);
|
|
260
|
+
|
|
261
|
+
// Category distribution
|
|
262
|
+
const catCount = {};
|
|
263
|
+
for (const val of Object.values(index.skills)) {
|
|
264
|
+
const cat = typeof val === 'string' ? val : val.c;
|
|
265
|
+
catCount[cat] = (catCount[cat] || 0) + 1;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
console.log('\nCategory distribution:');
|
|
269
|
+
Object.entries(catCount)
|
|
270
|
+
.sort((a, b) => b[1] - a[1])
|
|
271
|
+
.forEach(([cat, count]) => {
|
|
272
|
+
console.log(` ${cat}: ${count}`);
|
|
273
|
+
});
|
|
274
|
+
|
|
275
|
+
return index;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
// Run
|
|
279
|
+
buildCompactIndex();
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Build Skill Graph
|
|
5
|
+
*
|
|
6
|
+
* Validates and cleans skills-graph.json:
|
|
7
|
+
* - Removes orphaned entries (skills/commands that no longer exist)
|
|
8
|
+
* - Validates connections (removes broken links)
|
|
9
|
+
* - Validates recipes (removes broken skill refs, deletes recipes with <2 skills)
|
|
10
|
+
* - Cleans orphaned weights
|
|
11
|
+
* - Recomputes _meta.stats and _tiers
|
|
12
|
+
*
|
|
13
|
+
* Runs BEFORE build-compact-index so compact can merge cascade data.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
const fs = require('fs');
|
|
17
|
+
const path = require('path');
|
|
18
|
+
|
|
19
|
+
const GRAPH_FILE = path.join(__dirname, '..', 'skills-graph.json');
|
|
20
|
+
const SKILLS_DIR = path.join(__dirname, '..', 'skills');
|
|
21
|
+
const COMMANDS_DIR = path.join(__dirname, '..', '.claude', 'commands');
|
|
22
|
+
|
|
23
|
+
// Weight defaults — keep in sync with build-compact-index.js
|
|
24
|
+
const WEIGHT_DEFAULTS = { enhances: 'strong', 'pairs-with': 'moderate' };
|
|
25
|
+
|
|
26
|
+
function buildSkillGraph() {
|
|
27
|
+
console.log('Building skill graph...\n');
|
|
28
|
+
|
|
29
|
+
// 1. Read or init graph
|
|
30
|
+
let graph;
|
|
31
|
+
if (fs.existsSync(GRAPH_FILE)) {
|
|
32
|
+
try {
|
|
33
|
+
graph = JSON.parse(fs.readFileSync(GRAPH_FILE, 'utf-8'));
|
|
34
|
+
} catch (e) {
|
|
35
|
+
console.error(`Error: skills-graph.json is malformed: ${e.message}`);
|
|
36
|
+
process.exit(1);
|
|
37
|
+
}
|
|
38
|
+
} else {
|
|
39
|
+
graph = {
|
|
40
|
+
_meta: {
|
|
41
|
+
version: 2,
|
|
42
|
+
lastUpdated: new Date().toISOString().split('T')[0],
|
|
43
|
+
stats: {
|
|
44
|
+
totalSkills: 0, graphedSkills: 0,
|
|
45
|
+
connections: 0, strongConnections: 0, moderateConnections: 0, weakConnections: 0,
|
|
46
|
+
density: 0.0, recipes: 0
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
_tiers: { 't1-orchestrator': [], 't2-hub': [], 't3-utility': [], 't4-connected': [], 't4-standalone': [] },
|
|
50
|
+
_recipes: {},
|
|
51
|
+
graph: {}
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// Ensure sections exist
|
|
56
|
+
if (!graph._recipes) graph._recipes = {};
|
|
57
|
+
if (!graph.graph) graph.graph = {};
|
|
58
|
+
|
|
59
|
+
// 2. Get current skills list (skills/ dirs + .claude/commands/ files, recursive)
|
|
60
|
+
const skillDirs = fs.existsSync(SKILLS_DIR)
|
|
61
|
+
? fs.readdirSync(SKILLS_DIR, { withFileTypes: true })
|
|
62
|
+
.filter(d => d.isDirectory() && !d.name.startsWith('.'))
|
|
63
|
+
.map(d => d.name)
|
|
64
|
+
: [];
|
|
65
|
+
|
|
66
|
+
const commandNames = [];
|
|
67
|
+
if (fs.existsSync(COMMANDS_DIR)) {
|
|
68
|
+
const scanDir = (dir) => {
|
|
69
|
+
for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {
|
|
70
|
+
if (entry.isFile() && entry.name.endsWith('.md')) {
|
|
71
|
+
commandNames.push(entry.name.replace('.md', ''));
|
|
72
|
+
} else if (entry.isDirectory() && !entry.name.startsWith('.')) {
|
|
73
|
+
scanDir(path.join(dir, entry.name));
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
scanDir(COMMANDS_DIR);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
const currentSkills = new Set([...skillDirs, ...commandNames]);
|
|
81
|
+
|
|
82
|
+
// 3. Remove orphaned graph entries
|
|
83
|
+
let orphansRemoved = 0;
|
|
84
|
+
for (const name of Object.keys(graph.graph)) {
|
|
85
|
+
if (!currentSkills.has(name)) {
|
|
86
|
+
delete graph.graph[name];
|
|
87
|
+
orphansRemoved++;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// 4. Validate connections (remove broken links) + clean weights
|
|
92
|
+
let brokenLinksRemoved = 0;
|
|
93
|
+
for (const data of Object.values(graph.graph)) {
|
|
94
|
+
if (!data.connections) continue;
|
|
95
|
+
|
|
96
|
+
for (const connType of ['enhances', 'pairs-with']) {
|
|
97
|
+
if (data.connections[connType]) {
|
|
98
|
+
const before = data.connections[connType].length;
|
|
99
|
+
data.connections[connType] = data.connections[connType]
|
|
100
|
+
.filter(target => currentSkills.has(target));
|
|
101
|
+
brokenLinksRemoved += before - data.connections[connType].length;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// Clean orphaned weights (weight entry but target not in enhances/pairs-with)
|
|
106
|
+
if (data.connections.weights) {
|
|
107
|
+
const validTargets = new Set([
|
|
108
|
+
...(data.connections.enhances || []),
|
|
109
|
+
...(data.connections['pairs-with'] || [])
|
|
110
|
+
]);
|
|
111
|
+
for (const target of Object.keys(data.connections.weights)) {
|
|
112
|
+
if (!validTargets.has(target)) {
|
|
113
|
+
delete data.connections.weights[target];
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// 4.5. Validate recipes (remove broken skill references)
|
|
120
|
+
let recipesRemoved = 0;
|
|
121
|
+
for (const [name, recipe] of Object.entries(graph._recipes)) {
|
|
122
|
+
if (recipe.skills) {
|
|
123
|
+
recipe.skills = recipe.skills.filter(s => currentSkills.has(s));
|
|
124
|
+
}
|
|
125
|
+
if (!recipe.skills || recipe.skills.length < 2) {
|
|
126
|
+
delete graph._recipes[name];
|
|
127
|
+
recipesRemoved++;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// 5. Recompute _meta.stats (including weight breakdown)
|
|
132
|
+
let strongCount = 0, moderateCount = 0, weakCount = 0;
|
|
133
|
+
let totalConnections = 0;
|
|
134
|
+
|
|
135
|
+
for (const data of Object.values(graph.graph)) {
|
|
136
|
+
const enhances = data.connections?.enhances || [];
|
|
137
|
+
const pairsWith = data.connections?.['pairs-with'] || [];
|
|
138
|
+
const weights = data.connections?.weights || {};
|
|
139
|
+
|
|
140
|
+
totalConnections += enhances.length + pairsWith.length;
|
|
141
|
+
|
|
142
|
+
for (const s of enhances) {
|
|
143
|
+
const w = weights[s] || WEIGHT_DEFAULTS.enhances;
|
|
144
|
+
if (w === 'strong') strongCount++;
|
|
145
|
+
else if (w === 'moderate') moderateCount++;
|
|
146
|
+
else weakCount++;
|
|
147
|
+
}
|
|
148
|
+
for (const s of pairsWith) {
|
|
149
|
+
const w = weights[s] || WEIGHT_DEFAULTS['pairs-with'];
|
|
150
|
+
if (w === 'strong') strongCount++;
|
|
151
|
+
else if (w === 'moderate') moderateCount++;
|
|
152
|
+
else weakCount++;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
const graphedCount = Object.keys(graph.graph).length;
|
|
157
|
+
graph._meta.stats = {
|
|
158
|
+
totalSkills: currentSkills.size,
|
|
159
|
+
graphedSkills: graphedCount,
|
|
160
|
+
connections: totalConnections,
|
|
161
|
+
strongConnections: strongCount,
|
|
162
|
+
moderateConnections: moderateCount,
|
|
163
|
+
weakConnections: weakCount,
|
|
164
|
+
density: graphedCount > 0
|
|
165
|
+
? parseFloat((totalConnections / graphedCount).toFixed(2))
|
|
166
|
+
: 0,
|
|
167
|
+
recipes: Object.keys(graph._recipes).length
|
|
168
|
+
};
|
|
169
|
+
graph._meta.lastUpdated = new Date().toISOString().split('T')[0];
|
|
170
|
+
|
|
171
|
+
// 6. Recompute _tiers
|
|
172
|
+
graph._tiers = {
|
|
173
|
+
't1-orchestrator': [],
|
|
174
|
+
't2-hub': [],
|
|
175
|
+
't3-utility': [],
|
|
176
|
+
't4-connected': [],
|
|
177
|
+
't4-standalone': []
|
|
178
|
+
};
|
|
179
|
+
|
|
180
|
+
for (const [name, data] of Object.entries(graph.graph)) {
|
|
181
|
+
const hasConnections = (data.connections?.enhances?.length || 0) +
|
|
182
|
+
(data.connections?.['pairs-with']?.length || 0) > 0;
|
|
183
|
+
const tierKey = {
|
|
184
|
+
1: 't1-orchestrator',
|
|
185
|
+
2: 't2-hub',
|
|
186
|
+
3: 't3-utility',
|
|
187
|
+
4: hasConnections ? 't4-connected' : 't4-standalone'
|
|
188
|
+
}[data.tier] || 't4-standalone';
|
|
189
|
+
|
|
190
|
+
graph._tiers[tierKey].push(name);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// Sort each tier array
|
|
194
|
+
for (const arr of Object.values(graph._tiers)) arr.sort();
|
|
195
|
+
|
|
196
|
+
// 7. Write validated graph
|
|
197
|
+
fs.writeFileSync(GRAPH_FILE, JSON.stringify(graph, null, 2) + '\n');
|
|
198
|
+
|
|
199
|
+
// 8. Report
|
|
200
|
+
const s = graph._meta.stats;
|
|
201
|
+
console.log(`Graph: ${s.graphedSkills}/${s.totalSkills} skills mapped, ${s.connections} connections (${s.strongConnections} strong, ${s.moderateConnections} moderate, ${s.weakConnections} weak), ${s.recipes} recipes, density ${s.density}`);
|
|
202
|
+
|
|
203
|
+
if (orphansRemoved) console.log(` Cleaned: ${orphansRemoved} orphaned entries`);
|
|
204
|
+
if (brokenLinksRemoved) console.log(` Cleaned: ${brokenLinksRemoved} broken links`);
|
|
205
|
+
if (recipesRemoved) console.log(` Cleaned: ${recipesRemoved} invalid recipes`);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
buildSkillGraph();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"_categories":{"security":"sec","devops":"ops","ai-ml":"ai","testing":"test","database":"db","mobile":"mob","rust":"rs","golang":"go","python":"py","data":"data","performance":"perf","architecture":"arch","git-workflow":"git","documentation":"doc","backend":"be","frontend":"fe","other":"other"},"skills":{"3d-web-experience":{"c":"mob","d":"Expert in building 3D experiences for the web -..."},"ab-test-setup":{"c":"test","d":"Structured guide for setting up A/B tests with mandatory..."},"accessibility-compliance-accessibility-audit":{"c":"sec","d":"You are an accessibility expert specializing in WCAG..."},"active-directory-attacks":{"c":"sec","d":"This skill should be used when the user asks to \\\"attack..."},"activecampaign-automation":{"c":"ai","d":"Automate ActiveCampaign tasks via Rube MCP (Composio):..."},"address-github-comments":{"c":"git","d":"Use when you need to address review or issue comments on..."},"aesthetic":{"c":"ai","d":"Create aesthetically beautiful interfaces following..."},"agent-evaluation":{"c":"ai","d":"Testing and benchmarking LLM agents including behavioral..."},"agent-framework-azure-ai-py":{"c":"ops","d":"Build Azure AI Foundry agents using the Microsoft Agent..."},"agent-framework-azure-hosted-agents":"ops","agent-manager-skill":{"c":"ai","d":"Manage multiple local CLI agents via tmux sessions..."},"agent-memory-mcp":{"c":"ai","d":"A hybrid memory system that provides persistent,..."},"agent-memory-systems":{"c":"ai","d":"Memory is the cornerstone of intelligent agents. Without..."},"agent-orchestration-improve-agent":{"c":"ai","d":"Systematic improvement of existing agents through..."},"agent-orchestration-multi-agent-optimize":{"c":"ai","d":"Optimize multi-agent systems with coordinated profiling,..."},"agent-tool-builder":{"c":"ai","d":"Tools are how AI agents interact with the world. A..."},"agents-v2-py":{"c":"ai","d":"Build container-based Foundry Agents with Azure AI..."},"agile-product-owner":{"c":"other","d":"Agile product ownership toolkit for Senior Product Owner..."},"ai-agent-development":{"c":"ai","d":"AI agent development workflow for building autonomous..."},"ai-agents-architect":{"c":"ai","d":"Expert in designing and building autonomous AI agents...."},"ai-artist":{"c":"ai","d":"Craft prompts for AI models (text, image, video). Use..."},"ai-engineer":{"c":"ai","d":"Build production-ready LLM applications, advanced RAG..."},"ai-ml":{"c":"ai","d":"AI and machine learning workflow covering LLM..."},"ai-multimodal":{"c":"ai","d":"Analyze images/audio/video with Gemini API (better..."},"ai-product":{"c":"ai","d":"Every product will be AI-powered. The question is..."},"ai-wrapper-product":{"c":"ai","d":"Expert in building products that wrap AI APIs (OpenAI,..."},"airflow-dag-patterns":{"c":"data","d":"Build production Apache Airflow DAGs with best practices..."},"airtable-automation":{"c":"ai","d":"Automate Airtable tasks via Rube MCP (Composio):..."},"algolia-search":{"c":"be","d":"Expert patterns for Algolia search implementation,..."},"algorithmic-art":{"c":"fe","d":"Creating algorithmic art using p5.js with seeded..."},"amplitude-automation":{"c":"ai","d":"Automate Amplitude tasks via Rube MCP (Composio):..."},"analytics-tracking":{"c":"data","d":">"},"android-jetpack-compose-expert":{"c":"mob","d":"Expert guidance for building modern Android UIs with..."},"angular":{"c":"fe","d":">-"},"angular-architect":{"c":"fe","d":"Use when building Angular 17+ applications with..."},"angular-best-practices":{"c":"fe","d":"Angular performance optimization and best practices..."},"angular-migration":{"c":"db","d":"Migrate from AngularJS to Angular using hybrid mode,..."},"angular-state-management":{"c":"fe","d":"Master modern Angular state management with Signals,..."},"angular-ui-patterns":{"c":"fe","d":"Modern Angular UI patterns for loading states, error..."},"anti-reversing-techniques":{"c":"sec","d":"Understand anti-reversing, obfuscation, and protection..."},"antigravity-workflows":{"c":"sec","d":"Orchestrate multiple Antigravity skills through guided..."},"api-design-principles":{"c":"be","d":"Master REST and GraphQL API design principles to build..."},"api-designer":{"c":"be","d":"Use when designing REST or GraphQL APIs, creating..."},"api-documentation":{"c":"doc","d":"API documentation workflow for generating OpenAPI specs,..."},"api-documentation-generator":{"c":"doc","d":"Generate comprehensive, developer-friendly API..."},"api-documenter":{"c":"doc","d":"Master API documentation with OpenAPI 3.1, AI-powered..."},"api-fuzzing-bug-bounty":{"c":"be","d":"This skill should be used when the user asks to \\\"test..."},"api-patterns":{"c":"be","d":"API design principles and decision-making. REST vs..."},"api-security-best-practices":{"c":"sec","d":"Implement secure API design patterns including..."},"api-security-testing":{"c":"sec","d":"API security testing workflow for REST and GraphQL APIs..."},"api-testing-observability-api-mock":{"c":"ops","d":"You are an API mocking expert specializing in realistic..."},"app-builder":{"c":"ai","d":"Main application building orchestrator. Creates..."},"app-store-optimization":{"c":"mob","d":"Complete App Store Optimization (ASO) toolkit for..."},"application-performance-performance-optimization":{"c":"perf","d":"Optimize end-to-end application performance with..."},"architect-review":{"c":"arch","d":"Master software architect specializing in modern..."},"architecture":{"c":"arch","d":"Architectural decision-making framework. Requirements..."},"architecture-decision-records":{"c":"arch","d":"Write and maintain Architecture Decision Records (ADRs)..."},"architecture-designer":{"c":"arch","d":"Use when designing new system architecture, reviewing..."},"architecture-patterns":{"c":"arch","d":"Implement proven backend architecture patterns including..."},"arm-cortex-expert":{"c":"other","d":">"},"artifacts-builder":{"c":"ai","d":"Suite of tools for creating elaborate, multi-component..."},"asana-automation":{"c":"ai","d":"Automate Asana tasks via Rube MCP (Composio): tasks,..."},"ask-questions-if-underspecified":{"c":"other","d":"Clarify requirements before implementing. Do not use..."},"async-python-patterns":{"c":"py","d":"Master Python asyncio, concurrent programming, and..."},"atlassian-mcp":{"c":"ai","d":"Use when querying Jira issues, searching Confluence..."},"attack-tree-construction":{"c":"sec","d":"Build comprehensive attack trees to visualize threat..."},"audio-transcriber":{"c":"ai","d":"Transform audio recordings into professional Markdown..."},"auth-implementation-patterns":{"c":"sec","d":"Master authentication and authorization patterns..."},"automate-whatsapp":{"c":"ops","d":"Build WhatsApp automations with Kapso workflows:..."},"autonomous-agent-patterns":{"c":"ai","d":"Design patterns for building autonomous coding agents...."},"autonomous-agents":{"c":"ai","d":"Autonomous agents are AI systems that can independently..."},"avalonia-layout-zafiro":{"c":"fe","d":"Guidelines for modern Avalonia UI layout using..."},"avalonia-viewmodels-zafiro":{"c":"fe","d":"Optimal ViewModel and Wizard creation patterns for..."},"avalonia-zafiro-development":{"c":"fe","d":"Mandatory skills, conventions, and behavioral rules for..."},"aws-agentic-ai":{"c":"ops","d":"AWS Bedrock AgentCore comprehensive expert for deploying..."},"aws-cdk-development":{"c":"ops","d":"AWS Cloud Development Kit (CDK) expert for building..."},"aws-cost-cleanup":{"c":"ops","d":"Automated cleanup of unused AWS resources to reduce costs"},"aws-cost-operations":{"c":"ops","d":"This skill provides AWS cost optimization, monitoring,..."},"aws-cost-optimizer":{"c":"ops","d":"Comprehensive AWS cost analysis and optimization..."},"aws-penetration-testing":{"c":"sec","d":"This skill should be used when the user asks to..."},"aws-serverless":{"c":"ops","d":"Specialized skill for building production-ready..."},"aws-serverless-eda":{"c":"ops","d":"AWS serverless and event-driven architecture expert..."},"aws-skills":{"c":"ops","d":"AWS development with infrastructure automation and cloud..."},"azd-deployment":"ops","azure-ai-agents-persistent-dotnet":{"c":"ops","d":"|"},"azure-ai-agents-persistent-java":{"c":"ops","d":"|"},"azure-ai-agents-python":{"c":"ops","d":"Build AI agents using the Azure AI Agents Python SDK..."},"azure-ai-anomalydetector-java":{"c":"ops","d":"Build anomaly detection applications with Azure AI..."},"azure-ai-contentsafety-java":{"c":"ops","d":"Build content moderation applications with Azure AI..."},"azure-ai-contentsafety-py":{"c":"ops","d":"|"},"azure-ai-contentsafety-ts":{"c":"ops","d":"Analyze text and images for harmful content using Azure..."},"azure-ai-contentunderstanding-py":{"c":"ops","d":"|"},"azure-ai-document-intelligence-dotnet":{"c":"ops","d":"|"},"azure-ai-document-intelligence-ts":{"c":"ops","d":"Extract text, tables, and structured data from documents..."},"azure-ai-formrecognizer-java":{"c":"ops","d":"Build document analysis applications with Azure Document..."},"azure-ai-ml-py":{"c":"ops","d":"|"},"azure-ai-openai-dotnet":{"c":"ops","d":"|"},"azure-ai-projects-dotnet":{"c":"ops","d":"|"},"azure-ai-projects-java":{"c":"ops","d":"|"},"azure-ai-projects-py":{"c":"ops","d":"Build AI applications using the Azure AI Projects Python..."},"azure-ai-projects-ts":{"c":"ops","d":"Build AI applications using Azure AI Projects SDK for..."},"azure-ai-search-python":{"c":"ops","d":"Clean code patterns for Azure AI Search Python SDK..."},"azure-ai-textanalytics-py":{"c":"ops","d":"|"},"azure-ai-transcription-py":{"c":"ops","d":"|"},"azure-ai-translation-document-py":{"c":"ops","d":"|"},"azure-ai-translation-text-py":{"c":"ops","d":"|"},"azure-ai-translation-ts":{"c":"ops","d":"Build translation applications using Azure Translation..."},"azure-ai-vision-imageanalysis-java":{"c":"ops","d":"Build image analysis applications with Azure AI Vision..."},"azure-ai-vision-imageanalysis-py":{"c":"ops","d":"|"},"azure-ai-voicelive-dotnet":{"c":"ops","d":"|"},"azure-ai-voicelive-java":{"c":"ops","d":"|"},"azure-ai-voicelive-py":{"c":"ops","d":"Build real-time voice AI applications using Azure AI..."},"azure-ai-voicelive-skill":{"c":"ops","d":"Build real-time voice AI applications using Azure AI..."},"azure-ai-voicelive-ts":{"c":"ops","d":"|"},"azure-appconfiguration-java":{"c":"ops","d":"|"},"azure-appconfiguration-py":{"c":"ops","d":"|"},"azure-appconfiguration-ts":{"c":"ops","d":"Build applications using Azure App Configuration SDK for..."},"azure-communication-callautomation-java":{"c":"ops","d":"Build call automation workflows with Azure Communication..."},"azure-communication-callingserver-java":{"c":"ops","d":"Azure Communication Services CallingServer (legacy) Java..."},"azure-communication-chat-java":{"c":"ops","d":"Build real-time chat applications with Azure..."},"azure-communication-common-java":{"c":"ops","d":"Azure Communication Services common utilities for Java...."},"azure-communication-sms-java":{"c":"ops","d":"Send SMS messages with Azure Communication Services SMS..."},"azure-compute-batch-java":{"c":"ops","d":"|"},"azure-containerregistry-py":{"c":"ops","d":"|"},"azure-cosmos-db-py":{"c":"ops","d":"Build Azure Cosmos DB NoSQL services with Python/FastAPI..."},"azure-cosmos-java":{"c":"ops","d":"|"},"azure-cosmos-py":{"c":"ops","d":"|"},"azure-cosmos-rust":{"c":"ops","d":"|"},"azure-cosmos-ts":{"c":"ops","d":"|"},"azure-data-tables-java":{"c":"ops","d":"Build table storage applications with Azure Tables SDK..."},"azure-data-tables-py":{"c":"ops","d":"|"},"azure-eventgrid-dotnet":{"c":"ops","d":"|"},"azure-eventgrid-java":{"c":"ops","d":"Build event-driven applications with Azure Event Grid..."},"azure-eventgrid-py":{"c":"ops","d":"|"},"azure-eventhub-dotnet":{"c":"ops","d":"|"},"azure-eventhub-java":{"c":"ops","d":"Build real-time streaming applications with Azure Event..."},"azure-eventhub-py":{"c":"ops","d":"|"},"azure-eventhub-rust":{"c":"ops","d":"|"},"azure-eventhub-ts":{"c":"ops","d":"Build event streaming applications using Azure Event..."},"azure-functions":{"c":"ops","d":"Expert patterns for Azure Functions development..."},"azure-identity-dotnet":{"c":"ops","d":"|"},"azure-identity-java":{"c":"ops","d":"Azure Identity Java SDK for authentication with Azure..."},"azure-identity-py":{"c":"ops","d":"|"},"azure-identity-rust":{"c":"ops","d":"|"},"azure-identity-ts":{"c":"ops","d":"Authenticate to Azure services using Azure Identity SDK..."},"azure-keyvault-certificates-rust":{"c":"ops","d":"|"},"azure-keyvault-keys-rust":{"c":"ops","d":"|"},"azure-keyvault-keys-ts":{"c":"ops","d":"Manage cryptographic keys using Azure Key Vault Keys SDK..."},"azure-keyvault-py":{"c":"ops","d":"|"},"azure-keyvault-secrets-rust":{"c":"ops","d":"|"},"azure-keyvault-secrets-ts":{"c":"ops","d":"Manage secrets using Azure Key Vault Secrets SDK for..."},"azure-maps-search-dotnet":{"c":"ops","d":"|"},"azure-messaging-webpubsub-java":{"c":"ops","d":"Build real-time web applications with Azure Web PubSub..."},"azure-messaging-webpubsubservice-py":{"c":"ops","d":"|"},"azure-mgmt-apicenter-dotnet":{"c":"ops","d":"|"},"azure-mgmt-apicenter-py":{"c":"ops","d":"|"},"azure-mgmt-apimanagement-dotnet":{"c":"ops","d":"|"},"azure-mgmt-apimanagement-py":{"c":"ops","d":"|"},"azure-mgmt-applicationinsights-dotnet":{"c":"ops","d":"|"},"azure-mgmt-arizeaiobservabilityeval-dotnet":{"c":"ops","d":"|"},"azure-mgmt-botservice-dotnet":{"c":"ops","d":"|"},"azure-mgmt-botservice-py":{"c":"ops","d":"|"},"azure-mgmt-fabric-dotnet":{"c":"ops","d":"|"},"azure-mgmt-fabric-py":{"c":"ops","d":"|"},"azure-mgmt-mongodbatlas-dotnet":{"c":"ops","d":"Manage MongoDB Atlas Organizations as Azure ARM..."},"azure-mgmt-weightsandbiases-dotnet":{"c":"ops","d":"|"},"azure-microsoft-playwright-testing-ts":{"c":"ops","d":"Run Playwright tests at scale using Azure Playwright..."},"azure-monitor-ingestion-java":{"c":"ops","d":"|"},"azure-monitor-ingestion-py":{"c":"ops","d":"|"},"azure-monitor-opentelemetry-exporter-java":{"c":"ops","d":"|"},"azure-monitor-opentelemetry-exporter-py":{"c":"ops","d":"|"},"azure-monitor-opentelemetry-py":{"c":"ops","d":"|"},"azure-monitor-opentelemetry-ts":{"c":"ops","d":"Instrument applications with Azure Monitor and..."},"azure-monitor-query-java":{"c":"ops","d":"|"},"azure-monitor-query-py":{"c":"ops","d":"|"},"azure-postgres-ts":{"c":"ops","d":"|"},"azure-resource-manager-cosmosdb-dotnet":{"c":"ops","d":"|"},"azure-resource-manager-durabletask-dotnet":{"c":"ops","d":"|"},"azure-resource-manager-mysql-dotnet":{"c":"ops","d":"|"},"azure-resource-manager-playwright-dotnet":{"c":"ops","d":"|"},"azure-resource-manager-postgresql-dotnet":{"c":"ops","d":"|"},"azure-resource-manager-redis-dotnet":{"c":"ops","d":"|"},"azure-resource-manager-sql-dotnet":{"c":"ops","d":"|"},"azure-search-documents-dotnet":{"c":"ops","d":"|"},"azure-search-documents-py":{"c":"ops","d":"|"},"azure-search-documents-ts":{"c":"ops","d":"Build search applications using Azure AI Search SDK for..."},"azure-security-keyvault-keys-dotnet":{"c":"sec","d":"|"},"azure-security-keyvault-keys-java":{"c":"sec","d":"Azure Key Vault Keys Java SDK for cryptographic key..."},"azure-security-keyvault-secrets-java":{"c":"sec","d":"Azure Key Vault Secrets Java SDK for secret management...."},"azure-servicebus-dotnet":{"c":"ops","d":"|"},"azure-servicebus-py":{"c":"ops","d":"|"},"azure-servicebus-ts":{"c":"ops","d":"Build messaging applications using Azure Service Bus SDK..."},"azure-speech-to-text-rest-py":{"c":"ops","d":"|"},"azure-storage-blob-java":{"c":"ops","d":"Build blob storage applications with Azure Storage Blob..."},"azure-storage-blob-py":{"c":"ops","d":"|"},"azure-storage-blob-rust":{"c":"ops","d":"|"},"azure-storage-blob-ts":{"c":"ops","d":"|"},"azure-storage-file-datalake-py":{"c":"ops","d":"|"},"azure-storage-file-share-py":{"c":"ops","d":"|"},"azure-storage-file-share-ts":{"c":"ops","d":"|"},"azure-storage-queue-py":{"c":"ops","d":"|"},"azure-storage-queue-ts":{"c":"ops","d":"|"},"azure-web-pubsub-ts":{"c":"ops","d":"Build real-time messaging applications using Azure Web..."},"backend-architect":{"c":"be","d":"Expert backend architect specializing in scalable API..."},"backend-dev-guidelines":{"c":"be","d":"Opinionated backend development standards for Node.js +..."},"backend-development":{"c":"be","d":"Backend API design, database architecture, microservices..."},"backend-development-feature-development":{"c":"be","d":"Orchestrate end-to-end backend feature development from..."},"backend-security-coder":{"c":"sec","d":"Expert in secure backend coding practices specializing..."},"backtesting-frameworks":{"c":"other","d":"Build robust backtesting systems for trading strategies..."},"bamboohr-automation":{"c":"ai","d":"Automate BambooHR tasks via Rube MCP (Composio):..."},"basecamp-automation":{"c":"ai","d":"Automate Basecamp project management, to-dos, messages,..."},"bash-defensive-patterns":{"c":"ops","d":"Master defensive Bash programming techniques for..."},"bash-linux":{"c":"fe","d":"Bash/Linux terminal patterns. Critical commands, piping,..."},"bash-pro":{"c":"ops","d":"Master of defensive Bash scripting for production..."},"bash-scripting":{"c":"test","d":"Bash scripting workflow for creating production-ready..."},"bats-testing-patterns":{"c":"test","d":"Master Bash Automated Testing System (Bats) for..."},"bazel-build-optimization":{"c":"perf","d":"Optimize Bazel builds for large-scale monorepos. Use..."},"beautiful-prose":{"c":"ai","d":"Hard-edged writing style contract for timeless, forceful..."},"behavioral-modes":{"c":"ai","d":"AI operational modes (brainstorm, implement, debug,..."},"best-practices":{"c":"other","d":">-"},"better-auth":{"c":"sec","d":"Implement authentication and authorization with Better..."},"bevy-ecs-expert":{"c":"rs","d":"Master Bevy's Entity Component System (ECS) in Rust,..."},"billing-automation":{"c":"other","d":"Build automated billing systems for recurring payments,..."},"binary-analysis-patterns":{"c":"other","d":"Master binary analysis patterns including disassembly,..."},"bitbucket-automation":{"c":"ai","d":"Automate Bitbucket repositories, pull requests,..."},"blockchain-developer":{"c":"other","d":"Build production-ready Web3 applications, smart..."},"blockrun":{"c":"ai","d":"Use when user needs capabilities Claude lacks (image..."},"box-automation":{"c":"ops","d":"Automate Box cloud storage operations including file..."},"brainstorming":{"c":"fe","d":"You MUST use this before any creative work - creating..."},"brand-guidelines":{"c":"ai","d":"Applies Anthropic's official brand colors and typography..."},"brand-guidelines-anthropic":{"c":"ai","d":"Applies Anthropic's official brand colors and typography..."},"brand-guidelines-community":{"c":"ai","d":"Applies Anthropic's official brand colors and typography..."},"brevo-automation":{"c":"ai","d":"Automate Brevo (Sendinblue) tasks via Rube MCP..."},"broken-authentication":{"c":"sec","d":"This skill should be used when the user asks to \\\"test..."},"browser-automation":{"c":"fe","d":"Browser automation powers web testing, scraping, and AI..."},"browser-extension-builder":{"c":"fe","d":"Expert in building browser extensions that solve real..."},"building-ai-agent-on-cloudflare":{"c":"ops","d":"|"},"building-mcp-server-on-cloudflare":{"c":"ops","d":"|"},"bullmq-specialist":{"c":"db","d":"BullMQ expert for Redis-backed job queues, background..."},"bun-development":{"c":"test","d":"Modern JavaScript/TypeScript development with Bun..."},"burp-suite-testing":{"c":"sec","d":"This skill should be used when the user asks to..."},"business-analyst":{"c":"ai","d":"Master modern business analysis with AI-powered analytics,"},"busybox-on-windows":{"c":"other","d":"How to use a Win32 build of BusyBox to run many of the..."},"c-pro":{"c":"other","d":"Write efficient C code with proper memory management,..."},"c4-architecture-c4-architecture":{"c":"arch","d":"Generate comprehensive C4 architecture documentation for..."},"c4-code":{"c":"other","d":"Expert C4 Code-level documentation specialist. Analyzes code"},"c4-component":{"c":"fe","d":"Expert C4 Component-level documentation specialist...."},"c4-container":{"c":"other","d":"Expert C4 Container-level documentation specialist...."},"c4-context":{"c":"other","d":"Expert C4 Context-level documentation specialist. Creates"},"cal-com-automation":{"c":"ai","d":"Automate Cal.com tasks via Rube MCP (Composio): manage..."},"calendly-automation":{"c":"ai","d":"Automate Calendly scheduling, event management, invitee..."},"canva-automation":{"c":"ai","d":"Automate Canva tasks via Rube MCP (Composio): designs,..."},"canvas-design":{"c":"fe","d":"Create beautiful visual art in .png and .pdf documents..."},"cc-skill-backend-patterns":{"c":"be","d":"Backend architecture patterns, API design, database..."},"cc-skill-clickhouse-io":{"c":"db","d":"ClickHouse database patterns, query optimization,..."},"cc-skill-coding-standards":{"c":"be","d":"Universal coding standards, best practices, and patterns..."},"cc-skill-continuous-learning":{"c":"ai","d":"Development skill from everything-claude-code"},"cc-skill-frontend-patterns":{"c":"fe","d":"Frontend development patterns for React, Next.js, state..."},"cc-skill-project-guidelines-example":{"c":"other","d":"Project Guidelines Skill (Example)"},"cc-skill-security-review":{"c":"sec","d":"Use this skill when adding authentication, handling user..."},"cc-skill-strategic-compact":{"c":"ai","d":"Development skill from everything-claude-code"},"changelog-automation":{"c":"git","d":"Automate changelog generation from commits, PRs, and..."},"changelog-generator":{"c":"git","d":"Automatically creates user-facing changelogs from git..."},"chaos-engineer":{"c":"sec","d":"Use when designing chaos experiments, implementing..."},"chrome-devtools":{"c":"ops","d":"Browser automation, debugging, and performance analysis..."},"cicd-automation-workflow-automate":{"c":"ops","d":"You are a workflow automation expert specializing in..."},"circleci-automation":{"c":"ai","d":"Automate CircleCI tasks via Rube MCP (Composio): trigger..."},"clarity-gate":{"c":"ai","d":"Pre-ingestion verification for epistemic quality in RAG..."},"claude-ally-health":{"c":"ai","d":"A health assistant skill for medical information..."},"claude-code-guide":{"c":"ai","d":"Master guide for using Claude Code effectively. Includes..."},"claude-d3js-skill":{"c":"ai","d":"Creating interactive data visualisations using d3.js...."},"claude-scientific-skills":{"c":"ai","d":"Scientific research and analysis skills"},"claude-speed-reader":{"c":"ai","d":"-Speed read Claude's responses at 600+ WPM using RSVP..."},"claude-win11-speckit-update-skill":{"c":"ai","d":"Windows 11 system management"},"clean-code":{"c":"other","d":"Pragmatic coding standards - concise, direct, no..."},"clerk-auth":{"c":"sec","d":"Expert patterns for Clerk auth implementation,..."},"cli-developer":{"c":"ai","d":"Use when building CLI tools, implementing argument..."},"clickup-automation":{"c":"ai","d":"Automate ClickUp project management including tasks,..."},"close-automation":{"c":"ai","d":"Automate Close CRM tasks via Rube MCP (Composio): create..."},"cloud-architect":{"c":"ops","d":"Use when designing cloud architectures, planning..."},"cloud-devops":{"c":"ops","d":"Cloud infrastructure and DevOps workflow covering AWS,..."},"cloud-penetration-testing":{"c":"sec","d":"This skill should be used when the user asks to..."},"cloudflare-expert":{"c":"ops","d":"Comprehensive Cloudflare platform skill covering..."},"coda-automation":{"c":"ai","d":"Automate Coda tasks via Rube MCP (Composio): manage..."},"code-documentation":{"c":"doc","d":"Writing effective code documentation - API docs, README..."},"code-documentation-code-explain":{"c":"other","d":"You are a code education expert specializing in..."},"code-documentation-doc-generate":{"c":"doc","d":"You are a documentation expert specializing in creating..."},"code-documenter":{"c":"doc","d":"Use when adding docstrings, creating API documentation,..."},"code-refactoring":{"c":"other","d":"Code refactoring patterns and techniques for improving..."},"code-refactoring-context-restore":{"c":"other","d":"Use when working with code refactoring context restore"},"code-refactoring-refactor-clean":{"c":"arch","d":"You are a code refactoring expert specializing in clean..."},"code-refactoring-tech-debt":{"c":"other","d":"You are a technical debt expert specializing in..."},"code-review":{"c":"git","d":"Automated code review for pull requests using..."},"code-review-ai-ai-review":{"c":"ai","d":"You are an expert AI-powered code review specialist..."},"code-review-checklist":{"c":"git","d":"Code review guidelines covering code quality, security,..."},"code-review-excellence":{"c":"git","d":"Master effective code review practices to provide..."},"code-reviewer":{"c":"git","d":"Comprehensive code review skill for TypeScript,..."},"codebase-cleanup-deps-audit":{"c":"sec","d":"You are a dependency security expert specializing in..."},"codebase-cleanup-refactor-clean":{"c":"arch","d":"You are a code refactoring expert specializing in clean..."},"codebase-cleanup-tech-debt":{"c":"other","d":"You are a technical debt expert specializing in..."},"codex-review":{"c":"ai","d":"Professional code review with auto CHANGELOG generation,..."},"commit":{"c":"git","d":"Create commit messages following Sentry conventions. Use..."},"competitive-ads-extractor":{"c":"other","d":"Extracts and analyzes competitors' ads from ad libraries..."},"competitive-landscape":{"c":"other","d":"This skill should be used when the user asks to \\\\\\\"analyze"},"competitor-alternatives":{"c":"other","d":"When the user wants to create competitor comparison or..."},"comprehensive-review-full-review":{"c":"other","d":"Use when working with comprehensive review full review"},"comprehensive-review-pr-enhance":{"c":"git","d":"You are a PR optimization expert specializing in..."},"computer-use-agents":{"c":"ai","d":"Build AI agents that interact with computers like humans..."},"computer-vision-expert":{"c":"ai","d":"SOTA Computer Vision Expert (2026). Specialized in..."},"concise-planning":{"c":"other","d":"Use when a user asks for a plan for a coding task, to..."},"conductor-implement":{"c":"test","d":"Execute tasks from a track's implementation plan..."},"conductor-manage":{"c":"other","d":"Manage track lifecycle: archive, restore, delete,..."},"conductor-new-track":{"c":"other","d":"Create a new track with specification and phased..."},"conductor-revert":{"c":"git","d":"Git-aware undo by logical work unit (track, phase, or task)"},"conductor-setup":{"c":"other","d":"Initialize project with Conductor artifacts (product..."},"conductor-status":{"c":"other","d":"Display project status, active tracks, and next actions"},"conductor-validator":{"c":"other","d":"Validates Conductor project artifacts for completeness,"},"confluence-automation":{"c":"ai","d":"Automate Confluence page creation, content search, space..."},"content-creator":{"c":"sec","d":"Create SEO-optimized marketing content with consistent..."},"content-marketer":{"c":"ai","d":"Elite content marketing strategist specializing in..."},"content-research-writer":{"c":"other","d":"Assists in writing high-quality content by conducting..."},"context-compression":{"c":"other","d":"Design and evaluate compression strategies for..."},"context-degradation":{"c":"other","d":"Recognize patterns of context failure: lost-in-middle,..."},"context-driven-development":{"c":"other","d":"Use this skill when working with Conductor's context-driven"},"context-engineering":{"c":"other","d":">-"},"context-fundamentals":{"c":"ai","d":"Understand what context is, why it matters, and the..."},"context-management-context-restore":{"c":"other","d":"Use when working with context management context restore"},"context-management-context-save":{"c":"other","d":"Use when working with context management context save"},"context-manager":{"c":"ai","d":"Elite AI context engineering specialist mastering..."},"context-optimization":{"c":"perf","d":"Apply compaction, masking, and caching strategies"},"context-window-management":{"c":"ai","d":"Strategies for managing LLM context windows including..."},"context7-auto-research":{"c":"ai","d":"Automatically fetch latest library/framework..."},"conversation-memory":{"c":"ai","d":"Persistent memory systems for LLM conversations..."},"convertkit-automation":{"c":"ai","d":"Automate ConvertKit (Kit) tasks via Rube MCP (Composio):..."},"copilot-sdk":{"c":"go","d":"Build applications powered by GitHub Copilot using the..."},"copy-editing":{"c":"other","d":"When the user wants to edit, review, or improve existing..."},"copywriting":{"c":"other","d":">"},"core-components":{"c":"fe","d":"Core component library and design system patterns. Use..."},"cosmos-db-python-skill":{"c":"py","d":"Build Azure Cosmos DB NoSQL services with Python/FastAPI..."},"cost-optimization":{"c":"perf","d":"Optimize cloud costs through resource rightsizing,..."},"cpp-pro":{"c":"perf","d":"Use when building C++ applications requiring modern..."},"cqrs-implementation":{"c":"arch","d":"Implement Command Query Responsibility Segregation for..."},"create-pr":{"c":"git","d":"Create pull requests following Sentry conventions. Use..."},"crewai":{"c":"ai","d":"Expert in CrewAI - the leading role-based multi-agent..."},"crypto-bd-agent":{"c":"sec","d":">"},"csharp-developer":{"c":"arch","d":"Use when building C applications with .NET 8+, ASP.NET..."},"csharp-pro":{"c":"other","d":"Write modern C code with advanced features like records,..."},"culture-index":{"c":"other","d":"Index and search culture documentation"},"customer-support":{"c":"ai","d":"Elite AI-powered customer support specialist mastering"},"daily-news-report":{"c":"other","d":"Scrapes content based on a preset URL list, filters..."},"data-engineer":{"c":"data","d":"Build scalable data pipelines, modern data warehouses, and"},"data-engineering-data-driven-feature":{"c":"data","d":"Build features guided by data insights, A/B testing, and..."},"data-engineering-data-pipeline":{"c":"data","d":"You are a data pipeline architecture expert specializing..."},"data-quality-frameworks":{"c":"data","d":"Implement data quality validation with Great..."},"data-scientist":{"c":"ai","d":"Expert data scientist for advanced analytics, machine..."},"data-storytelling":{"c":"data","d":"Transform data into compelling narratives using..."},"data-structure-protocol":{"c":"ai","d":"Give agents persistent structural memory of a codebase —..."},"database":{"c":"db","d":"Database development and operations workflow covering..."},"database-admin":{"c":"db","d":"Expert database administrator specializing in modern cloud"},"database-architect":{"c":"db","d":"Expert database architect specializing in data layer..."},"database-cloud-optimization-cost-optimize":{"c":"ops","d":"You are a cloud cost optimization expert specializing in..."},"database-design":{"c":"db","d":"Database schema design, optimization, and migration..."},"database-migration":{"c":"db","d":"Execute database migrations across ORMs and platforms..."},"database-migrations-migration-observability":{"c":"ops","d":"Migration monitoring, CDC, and observability infrastructure"},"database-migrations-sql-migrations":{"c":"db","d":"SQL database migrations with zero-downtime strategies..."},"database-optimizer":{"c":"db","d":"Use when investigating slow queries, analyzing execution..."},"databases":{"c":"db","d":"Work with MongoDB (document database, BSON documents,..."},"datadog-automation":{"c":"ai","d":"Automate Datadog tasks via Rube MCP (Composio): query..."},"dbos-golang":{"c":"go","d":"DBOS Go SDK for building reliable, fault-tolerant..."},"dbos-python":{"c":"py","d":"DBOS Python SDK for building reliable, fault-tolerant..."},"dbos-typescript":{"c":"other","d":"DBOS TypeScript SDK for building reliable,..."},"dbt-transformation-patterns":{"c":"data","d":"Master dbt (data build tool) for analytics engineering..."},"ddd-context-mapping":{"c":"arch","d":"Map relationships between bounded contexts and define..."},"ddd-strategic-design":{"c":"arch","d":"Design DDD strategic artifacts including subdomains,..."},"ddd-tactical-patterns":{"c":"arch","d":"Apply DDD tactical patterns in code using entities,..."},"debugger":{"c":"test","d":"Debugging specialist for errors, test failures, and..."},"debugging":{"c":"test","d":"Systematic debugging framework ensuring root cause..."},"debugging-strategies":{"c":"perf","d":"Master systematic debugging techniques, profiling tools,..."},"debugging-toolkit-smart-debug":{"c":"other","d":"Use when working with debugging toolkit smart debug"},"debugging-wizard":{"c":"other","d":"Use when investigating errors, analyzing stack traces,..."},"deep-research":{"c":"ai","d":"Execute autonomous multi-step research using Google..."},"defi-protocol-templates":{"c":"other","d":"Implement DeFi protocols with production-ready templates..."},"dependency-management-deps-audit":{"c":"sec","d":"You are a dependency security expert specializing in..."},"dependency-upgrade":{"c":"test","d":"Manage major dependency version upgrades with..."},"deployment-engineer":{"c":"ops","d":"Expert deployment engineer specializing in modern CI/CD..."},"deployment-pipeline-design":{"c":"ops","d":"Design multi-stage CI/CD pipelines with approval gates,..."},"deployment-procedures":{"c":"ops","d":"Production deployment principles and decision-making...."},"deployment-validation-config-validate":{"c":"ops","d":"You are a configuration management expert specializing..."},"design-md":{"c":"ai","d":"Analyze Stitch projects and synthesize a semantic design..."},"design-orchestration":"other","developer-growth-analysis":{"c":"ai","d":"Analyzes your recent Claude Code chat history to..."},"development":{"c":"mob","d":"Comprehensive web, mobile, and backend development..."},"devops":{"c":"ops","d":"Deploy and manage cloud infrastructure on Cloudflare..."},"devops-engineer":{"c":"ops","d":"Use when setting up CI/CD pipelines, containerizing..."},"devops-troubleshooter":{"c":"ops","d":"Expert DevOps troubleshooter specializing in rapid incident"},"discord-automation":{"c":"ai","d":"Automate Discord tasks via Rube MCP (Composio):..."},"discord-bot-architect":{"c":"py","d":"Specialized skill for building production-ready Discord..."},"dispatching-parallel-agents":{"c":"ai","d":"Use when facing 2+ independent tasks that can be worked..."},"distributed-debugging-debug-trace":{"c":"other","d":"You are a debugging expert specializing in setting up..."},"distributed-tracing":{"c":"perf","d":"Implement distributed tracing with Jaeger and Tempo to..."},"django-expert":{"c":"py","d":"Use when building Django web applications or REST APIs..."},"django-pro":{"c":"py","d":"Master Django 5.x with async views, DRF, Celery, and Django"},"doc-coauthoring":{"c":"sec","d":"Guide users through a structured workflow for..."},"docker-expert":{"c":"ops","d":"Docker containerization expert with deep knowledge of..."},"docs-architect":{"c":"other","d":"Creates comprehensive technical documentation from existing"},"docs-seeker":{"c":"ai","d":"Search technical documentation using executable scripts..."},"documentation":{"c":"arch","d":"Documentation generation workflow covering API docs,..."},"documentation-generation-doc-generate":{"c":"doc","d":"You are a documentation expert specializing in creating..."},"documentation-templates":{"c":"ai","d":"Documentation templates and structure guidelines...."},"docusign-automation":{"c":"ai","d":"Automate DocuSign tasks via Rube MCP (Composio):..."},"docx":{"c":"ai","d":"Comprehensive document creation, editing, and analysis..."},"docx-official":{"c":"ai","d":"Comprehensive document creation, editing, and analysis..."},"domain-driven-design":{"c":"arch","d":"Plan and route Domain-Driven Design work from strategic..."},"domain-name-brainstormer":{"c":"fe","d":"Generates creative domain name ideas for your project..."},"dotnet-architect":{"c":"be","d":"Expert .NET backend architect specializing in C, ASP.NET..."},"dotnet-backend":{"c":"be","d":"Build ASP.NET Core 8+ backend services with EF Core,..."},"dotnet-backend-patterns":{"c":"be","d":"Master C/.NET backend development patterns for building..."},"dotnet-core-expert":{"c":"sec","d":"Use when building .NET 8 applications with minimal APIs,..."},"dropbox-automation":{"c":"ai","d":"Automate Dropbox file management, sharing, search,..."},"dx-optimizer":{"c":"other","d":"Developer Experience specialist. Improves tooling,..."},"e2e-testing":{"c":"test","d":"End-to-end testing workflow with Playwright for browser..."},"e2e-testing-patterns":{"c":"test","d":"Master end-to-end testing with Playwright and Cypress to..."},"elixir-pro":{"c":"ai","d":"Write idiomatic Elixir code with OTP patterns,..."},"email-sequence":{"c":"other","d":"When the user wants to create or optimize an email..."},"email-systems":{"c":"other","d":"Email has the highest ROI of any marketing channel. $36..."},"embedded-systems":{"c":"perf","d":"Use when developing firmware for microcontrollers,..."},"embedding-strategies":{"c":"ai","d":"Select and optimize embedding models for semantic search..."},"employment-contract-templates":{"c":"other","d":"Create employment contracts, offer letters, and HR..."},"environment-setup-guide":{"c":"other","d":"Guide developers through setting up development..."},"error-debugging-error-analysis":{"c":"ops","d":"You are an expert error analysis specialist with deep..."},"error-debugging-error-trace":{"c":"ops","d":"You are an error tracking and observability expert..."},"error-debugging-multi-agent-review":{"c":"ai","d":"Use when working with error debugging multi agent review"},"error-detective":{"c":"other","d":"Search logs and codebases for error patterns, stack..."},"error-diagnostics-error-analysis":{"c":"ops","d":"You are an expert error analysis specialist with deep..."},"error-diagnostics-error-trace":{"c":"ops","d":"You are an error tracking and observability expert..."},"error-diagnostics-smart-debug":{"c":"other","d":"Use when working with error diagnostics smart debug"},"error-handling-patterns":{"c":"other","d":"Master error handling patterns across languages..."},"ethical-hacking-methodology":{"c":"sec","d":"This skill should be used when the user asks to \\\"learn..."},"evaluation":{"c":"ai","d":"Build evaluation frameworks for agent systems"},"event-sourcing-architect":{"c":"arch","d":"Expert in event sourcing, CQRS, and event-driven..."},"event-store-design":{"c":"ops","d":"Design and implement event stores for event-sourced..."},"exa-search":{"c":"ai","d":"Semantic search, similar content discovery, and..."},"executing-plans":{"c":"other","d":"Use when you have a written implementation plan to..."},"expo-app-design":{"c":"mob","d":"Build beautiful cross-platform mobile apps with Expo..."},"expo-deployment":{"c":"ops","d":"Deploy Expo apps to iOS App Store, Android Play Store,..."},"fal-audio":{"c":"ai","d":"Text-to-speech and speech-to-text using fal.ai audio models"},"fal-generate":{"c":"ai","d":"Generate images and videos using fal.ai AI models"},"fal-image-edit":{"c":"ai","d":"AI-powered image editing with style transfer and object..."},"fal-platform":{"c":"other","d":"Platform APIs for model management, pricing, and usage..."},"fal-upscale":{"c":"ai","d":"Upscale and enhance image and video resolution using AI"},"fal-workflow":{"c":"ai","d":"Generate workflow JSON files for chaining AI models"},"fastapi-expert":{"c":"py","d":"Use when building high-performance async Python APIs..."},"fastapi-pro":{"c":"py","d":"Build high-performance async APIs with FastAPI,..."},"fastapi-router":{"c":"py","d":"Create FastAPI routers with CRUD operations,..."},"fastapi-router-py":{"c":"py","d":"Create FastAPI routers with CRUD operations,..."},"fastapi-templates":{"c":"py","d":"Create production-ready FastAPI projects with async..."},"feature-forge":{"c":"other","d":"Use when defining new features, gathering requirements,..."},"ffuf-claude-skill":{"c":"ai","d":"Web fuzzing with ffuf"},"figma-automation":{"c":"ai","d":"Automate Figma tasks via Rube MCP (Composio): files,..."},"file-organizer":{"c":"other","d":"Intelligently organizes your files and folders across..."},"file-path-traversal":{"c":"sec","d":"This skill should be used when the user asks to \\\"test..."},"file-uploads":{"c":"ops","d":"Expert at handling file uploads and cloud storage...."},"find-bugs":{"c":"sec","d":"Find bugs, security vulnerabilities, and code quality..."},"find-skills":{"c":"ai","d":"Helps users discover and install agent skills when they..."},"fine-tuning-expert":{"c":"ai","d":"Use when fine-tuning LLMs, training custom models, or..."},"finishing-a-development-branch":{"c":"test","d":"Use when implementation is complete, all tests pass, and..."},"firebase":{"c":"db","d":"Firebase gives you a complete backend in minutes - auth,..."},"firecrawl-scraper":{"c":"be","d":"Deep web scraping, screenshots, PDF parsing, and website..."},"firmware-analyst":{"c":"other","d":"Expert firmware analyst specializing in embedded..."},"fix-review":{"c":"git","d":"Verify fix commits address audit findings without new bugs"},"fixing":{"c":"ops","d":"Fix bugs, errors, test failures, CI/CD issues with..."},"flutter-expert":{"c":"mob","d":"Use when building cross-platform applications with..."},"form-cro":{"c":"other","d":">"},"foundry-iq-agent":{"c":"ai","d":"Build agentic retrieval solutions with Azure AI Search..."},"foundry-iq-python":"py","foundry-nextgen-frontend":{"c":"fe","d":"Build elegant frontend UIs following Microsoft Foundry's..."},"foundry-sdk-python":{"c":"py","d":"Build AI applications using the Azure AI Projects Python..."},"fp-ts-errors":{"c":"other","d":"Handle errors as values using fp-ts Either and..."},"fp-ts-pragmatic":{"c":"other","d":"A practical, jargon-free guide to fp-ts functional..."},"fp-ts-react":{"c":"fe","d":"Practical patterns for using fp-ts with React - hooks,..."},"framework-migration-code-migrate":{"c":"db","d":"You are a code migration expert specializing in..."},"framework-migration-deps-upgrade":{"c":"db","d":"You are a dependency management expert specializing in..."},"framework-migration-legacy-modernize":{"c":"db","d":"Orchestrate a comprehensive legacy system modernization..."},"free-tool-strategy":{"c":"other","d":"When the user wants to plan, evaluate, or build a free..."},"freshdesk-automation":{"c":"ai","d":"Automate Freshdesk helpdesk operations including..."},"freshservice-automation":{"c":"ai","d":"Automate Freshservice ITSM tasks via Rube MCP..."},"frontend-design":{"c":"fe","d":"Create distinctive, production-grade frontend interfaces..."},"frontend-dev-guidelines":{"c":"fe","d":"Opinionated frontend development standards for modern..."},"frontend-developer":{"c":"fe","d":"Build React components, implement responsive layouts,..."},"frontend-development":{"c":"fe","d":"Frontend development guidelines for React/TypeScript..."},"frontend-mobile-development-component-scaffold":{"c":"mob","d":"You are a React component architecture expert..."},"frontend-mobile-security-xss-scan":{"c":"sec","d":"You are a frontend security specialist focusing on..."},"frontend-security-coder":{"c":"sec","d":"Expert in secure frontend coding practices specializing..."},"frontend-slides":{"c":"fe","d":"Create stunning, animation-rich HTML presentations from..."},"frontend-ui-dark-ts":{"c":"fe","d":"Build dark-themed React applications using Tailwind CSS..."},"full-stack-orchestration-full-stack-feature":{"c":"other","d":"Use when working with full stack orchestration full..."},"fullstack-guardian":{"c":"be","d":"Use when implementing features across frontend and..."},"game-developer":{"c":"perf","d":"Use when building game systems, implementing..."},"game-development":{"c":"other","d":"Game development orchestrator. Routes to platform-specifi..."},"gcp-cloud-run":{"c":"ops","d":"Specialized skill for building production-ready..."},"gdpr-data-handling":{"c":"sec","d":"Implement GDPR-compliant data handling with consent..."},"gemini-api-dev":{"c":"ai","d":"Use this skill when building applications with Gemini..."},"geo-fundamentals":{"c":"ai","d":"Generative Engine Optimization for AI search engines..."},"git-advanced-workflows":{"c":"git","d":"Master advanced Git workflows including rebasing,..."},"git-pr-workflows-git-workflow":{"c":"git","d":"Orchestrate a comprehensive git workflow from code..."},"git-pr-workflows-onboard":{"c":"git","d":"You are an expert onboarding specialist and knowledge..."},"git-pr-workflows-pr-enhance":{"c":"git","d":"You are a PR optimization expert specializing in..."},"git-pushing":{"c":"git","d":"Stage, commit, and push git changes with conventional..."},"github-actions-templates":{"c":"ops","d":"Create production-ready GitHub Actions workflows for..."},"github-automation":{"c":"git","d":"Automate GitHub repositories, issues, pull requests,..."},"github-issue-creator":{"c":"git","d":"Convert raw notes, error logs, voice dictation, or..."},"github-workflow-automation":{"c":"git","d":"Automate GitHub workflows with AI assistance. Includes..."},"gitlab-automation":{"c":"git","d":"Automate GitLab project management, issues, merge..."},"gitlab-ci-patterns":{"c":"ops","d":"Build GitLab CI/CD pipelines with multi-stage workflows,..."},"gitops-workflow":{"c":"ops","d":"Implement GitOps workflows with ArgoCD and Flux for..."},"gmail-automation":{"c":"ai","d":"Automate Gmail tasks via Rube MCP (Composio):..."},"go-concurrency-patterns":{"c":"go","d":"Master Go concurrency with goroutines, channels, sync..."},"go-playwright":{"c":"test","d":"Expert capability for robust, stealthy, and efficient..."},"go-rod-master":{"c":"go","d":"Comprehensive guide for browser automation and web..."},"godot-4-migration":{"c":"db","d":"Specialized guide for migrating Godot 3.x projects to..."},"godot-gdscript-patterns":{"c":"perf","d":"Master Godot 4 GDScript patterns including signals,..."},"golang-pro":{"c":"go","d":"Use when building Go applications requiring concurrent..."},"google-adk-python":{"c":"py","d":"Build AI agents with Google ADK Python (Agent..."},"google-analytics-automation":{"c":"data","d":"Automate Google Analytics tasks via Rube MCP (Composio):..."},"google-calendar-automation":{"c":"ai","d":"Automate Google Calendar events, scheduling,..."},"google-drive-automation":{"c":"ai","d":"Automate Google Drive file operations (upload, download,..."},"googlesheets-automation":{"c":"ai","d":"Automate Google Sheets operations (read, write, format,..."},"grafana-dashboards":{"c":"ops","d":"Create and manage production Grafana dashboards for..."},"graphql":{"c":"be","d":"GraphQL gives clients exactly the data they need - no..."},"graphql-architect":{"c":"be","d":"Use when designing GraphQL schemas, implementing Apollo..."},"haskell-pro":{"c":"other","d":"Expert Haskell engineer specializing in advanced type..."},"helm-chart-scaffolding":{"c":"ops","d":"Design, organize, and manage Helm charts for templating..."},"helpdesk-automation":{"c":"ai","d":"Automate HelpDesk tasks via Rube MCP (Composio): list..."},"hig-components-content":{"c":"fe","d":">"},"hig-components-controls":{"c":"fe","d":">-"},"hig-components-dialogs":{"c":"fe","d":">-"},"hig-components-layout":{"c":"fe","d":">"},"hig-components-menus":{"c":"fe","d":">-"},"hig-components-search":{"c":"fe","d":">-"},"hig-components-status":{"c":"fe","d":">"},"hig-components-system":{"c":"fe","d":">"},"hig-foundations":{"c":"other","d":">"},"hig-inputs":{"c":"other","d":">"},"hig-patterns":{"c":"other","d":">"},"hig-platforms":{"c":"other","d":">"},"hig-project-context":{"c":"other","d":">-"},"hig-technologies":{"c":"other","d":">"},"hosted-agents-v2-py":{"c":"ai","d":"Build hosted agents using Azure AI Projects SDK with..."},"hr-pro":{"c":"other","d":"Professional, ethical HR partner for hiring,"},"html-injection-testing":{"c":"sec","d":"This skill should be used when the user asks to \\\"test..."},"hubspot-automation":{"c":"ai","d":"Automate HubSpot CRM operations (contacts, companies,..."},"hubspot-integration":{"c":"sec","d":"Expert patterns for HubSpot CRM integration including..."},"hugging-face-cli":{"c":"ai","d":"Execute Hugging Face Hub operations using the hf CLI...."},"hugging-face-jobs":{"c":"ai","d":"This skill should be used when users want to run any..."},"hybrid-cloud-architect":{"c":"ops","d":"Expert hybrid cloud architect specializing in complex..."},"hybrid-cloud-networking":{"c":"ops","d":"Configure secure, high-performance connectivity between..."},"hybrid-search-implementation":{"c":"ai","d":"Combine vector and keyword search for improved..."},"i18n-localization":{"c":"other","d":"Internationalization and localization patterns...."},"idor-testing":{"c":"test","d":"This skill should be used when the user asks to \\\"test..."},"image-enhancer":{"c":"sec","d":"Improves the quality of images, especially screenshots,..."},"imagen":{"c":"other","d":"|"},"incident-responder":{"c":"ops","d":"Expert SRE incident responder specializing in rapid problem"},"incident-response-incident-response":{"c":"ops","d":"Use when working with incident response incident response"},"incident-response-smart-fix":{"c":"ops","d":"Extended thinking: This workflow implements a..."},"incident-runbook-templates":{"c":"ops","d":"Create structured incident response runbooks with..."},"infinite-gratitude":{"c":"ai","d":"Multi-agent research skill for parallel research..."},"inngest":{"c":"be","d":"Inngest expert for serverless-first background jobs,..."},"instagram-automation":{"c":"ai","d":"Automate Instagram tasks via Rube MCP (Composio): create..."},"interactive-portfolio":{"c":"mob","d":"Expert in building portfolios that actually land jobs..."},"intercom-automation":{"c":"ai","d":"Automate Intercom tasks via Rube MCP (Composio):..."},"internal-comms":{"c":"ops","d":"A set of resources to help me write all kinds of..."},"internal-comms-anthropic":{"c":"ai","d":"A set of resources to help me write all kinds of..."},"internal-comms-community":{"c":"ai","d":"A set of resources to help me write all kinds of..."},"invoice-organizer":{"c":"other","d":"Automatically organizes invoices and receipts for tax..."},"ios-developer":{"c":"mob","d":"Develop native iOS applications with Swift/SwiftUI...."},"issue-creator":{"c":"git","d":"Convert raw notes, error logs, voice dictation, or..."},"istio-traffic-management":{"c":"ops","d":"Configure Istio traffic management including routing,..."},"iterate-pr":{"c":"git","d":"Iterate on a PR until CI passes. Use when you need to..."},"java-architect":{"c":"sec","d":"Use when building enterprise Java applications with..."},"java-pro":{"c":"other","d":"Master Java 21+ with modern features like virtual..."},"javascript-mastery":{"c":"other","d":"Comprehensive JavaScript reference covering 33+..."},"javascript-pro":{"c":"perf","d":"Use when building JavaScript applications with modern..."},"javascript-testing-patterns":{"c":"test","d":"Implement comprehensive testing strategies using Jest,..."},"javascript-typescript":{"c":"be","d":"JavaScript and TypeScript development with ES6+,..."},"javascript-typescript-typescript-scaffold":{"c":"arch","d":"You are a TypeScript project architecture expert..."},"jira-automation":{"c":"ai","d":"Automate Jira tasks via Rube MCP (Composio): issues,..."},"jira-issues":{"c":"other","d":"Create, update, and manage Jira issues from natural..."},"job-application":{"c":"other","d":"Write tailored cover letters and job applications using..."},"julia-pro":{"c":"perf","d":"Master Julia 1.10+ with modern features, performance..."},"k8s-manifest-generator":{"c":"ops","d":"Create production-ready Kubernetes manifests for..."},"k8s-security-policies":{"c":"sec","d":"Implement Kubernetes security policies including..."},"kaizen":{"c":"other","d":"Guide for continuous improvement, error proofing, and..."},"klaviyo-automation":{"c":"ai","d":"Automate Klaviyo tasks via Rube MCP (Composio): manage..."},"kotlin-coroutines-expert":{"c":"mob","d":"Expert patterns for Kotlin Coroutines and Flow, covering..."},"kotlin-specialist":{"c":"mob","d":"Use when building Kotlin applications requiring..."},"kpi-dashboard-design":{"c":"ops","d":"Design effective KPI dashboards with metrics selection,..."},"kubernetes-architect":{"c":"ops","d":"Expert Kubernetes architect specializing in cloud-native"},"kubernetes-deployment":{"c":"ops","d":"Kubernetes deployment workflow for container..."},"kubernetes-specialist":{"c":"ops","d":"Use when deploying or managing Kubernetes workloads..."},"langchain-architecture":{"c":"ai","d":"Design LLM applications using the LangChain framework..."},"langfuse":{"c":"ops","d":"Expert in Langfuse - the open-source LLM observability..."},"langgraph":{"c":"ai","d":"Expert in LangGraph - the production-grade framework for..."},"laravel-expert":{"c":"sec","d":"Senior Laravel Engineer role for production-grade,..."},"laravel-security-audit":{"c":"sec","d":"Security auditor for Laravel applications. Analyzes code..."},"laravel-specialist":{"c":"sec","d":"Use when building Laravel 10+ applications requiring..."},"last30days":{"c":"ai","d":"Research a topic from the last 30 days on Reddit + X +..."},"launch-strategy":{"c":"go","d":"When the user wants to plan a product launch, feature..."},"lead-research-assistant":{"c":"other","d":"Identifies high-quality leads for your product or..."},"learn":{"c":"ai","d":"Guided project building — you code, AI mentors. Build..."},"legacy-modernizer":{"c":"db","d":"Use when modernizing legacy systems, implementing..."},"legal-advisor":{"c":"other","d":"Draft privacy policies, terms of service, disclaimers,..."},"linear-automation":{"c":"ai","d":"Automate Linear tasks via Rube MCP (Composio): issues,..."},"linear-claude-skill":{"c":"ai","d":"Manage Linear issues, projects, and teams"},"linkedin-automation":{"c":"ai","d":"Automate LinkedIn tasks via Rube MCP (Composio): create..."},"linkerd-patterns":{"c":"ops","d":"Implement Linkerd service mesh patterns for lightweight,..."},"lint-and-validate":{"c":"other","d":"Automatic quality control, linting, and static analysis..."},"linux-privilege-escalation":{"c":"sec","d":"This skill should be used when the user asks to..."},"linux-shell-scripting":{"c":"fe","d":"This skill should be used when the user asks to \\\"create..."},"linux-troubleshooting":{"c":"fe","d":"Linux system troubleshooting workflow for diagnosing and..."},"llm-app-patterns":{"c":"ai","d":"Production-ready patterns for building LLM applications...."},"llm-application-dev":{"c":"ai","d":"Building applications with Large Language Models -..."},"llm-application-dev-ai-assistant":{"c":"ai","d":"You are an AI assistant development expert specializing..."},"llm-application-dev-langchain-agent":{"c":"ai","d":"You are an expert LangChain agent developer specializing..."},"llm-application-dev-prompt-optimize":{"c":"ai","d":"You are an expert prompt engineer specializing in..."},"llm-evaluation":{"c":"ai","d":"Implement comprehensive evaluation strategies for LLM..."},"loki-mode":{"c":"sec","d":"Multi-agent autonomous startup system for Claude Code...."},"m365-agents-dotnet":{"c":"ai","d":"|"},"m365-agents-py":{"c":"ai","d":"|"},"m365-agents-ts":{"c":"ai","d":"|"},"machine-learning-ops-ml-pipeline":{"c":"ai","d":"Design and implement a complete ML pipeline for: $ARGUMENTS"},"mailchimp-automation":{"c":"ai","d":"Automate Mailchimp email marketing including campaigns,..."},"make-automation":{"c":"ai","d":"Automate Make (Integromat) tasks via Rube MCP..."},"makepad-skills":{"c":"rs","d":"Makepad UI development skills for Rust apps: setup,..."},"malware-analyst":{"c":"sec","d":"Expert malware analyst specializing in defensive malware..."},"manifest":{"c":"ops","d":"Install and configure the Manifest observability plugin..."},"markdown-novel-viewer":{"c":"be","d":"View markdown files with calm, book-like reading..."},"market-sizing-analysis":{"c":"other","d":"This skill should be used when the user asks to..."},"marketing-ideas":{"c":"other","d":"Provide proven marketing strategies and growth ideas for..."},"marketing-psychology":{"c":"other","d":"Apply behavioral science and mental models to marketing..."},"mcp-builder":{"c":"ai","d":"Guide for creating high-quality MCP (Model Context..."},"mcp-builder-ms":{"c":"ai","d":"Guide for creating high-quality MCP (Model Context..."},"mcp-developer":{"c":"ai","d":"Use when building MCP servers or clients that connect AI..."},"mcp-management":{"c":"ai","d":"Manage MCP servers - discover, analyze, execute..."},"media-processing":{"c":"data","d":"Process multimedia files with FFmpeg (video/audio..."},"meeting-insights-analyzer":{"c":"fe","d":"Analyzes meeting transcripts and recordings to uncover..."},"memory-forensics":{"c":"sec","d":"Master memory forensics techniques including memory..."},"memory-safety-patterns":{"c":"rs","d":"Implement memory-safe programming with RAII, ownership,..."},"memory-systems":{"c":"arch","d":"Design short-term, long-term, and graph-based memory..."},"mermaid-expert":{"c":"other","d":"Create Mermaid diagrams for flowcharts, sequences, ERDs, and"},"mermaidjs-v11":{"c":"arch","d":"Create diagrams with Mermaid.js v11 syntax. Use for..."},"metasploit-framework":{"c":"sec","d":"This skill should be used when the user asks to \\\"use..."},"micro-saas-launcher":{"c":"other","d":"Expert in launching small, focused SaaS products fast -..."},"microservices-architect":{"c":"arch","d":"Use when designing distributed systems, decomposing..."},"microservices-patterns":{"c":"arch","d":"Design microservices architectures with service..."},"microsoft-azure-webjobs-extensions-authentication-events-dotnet":{"c":"sec","d":"|"},"microsoft-teams-automation":{"c":"ai","d":"Automate Microsoft Teams tasks via Rube MCP (Composio):..."},"minecraft-bukkit-pro":{"c":"go","d":"Master Minecraft server plugin development with Bukkit,..."},"miro-automation":{"c":"ai","d":"Automate Miro tasks via Rube MCP (Composio): boards,..."},"mixpanel-automation":{"c":"ai","d":"Automate Mixpanel tasks via Rube MCP (Composio): events,..."},"ml-engineer":{"c":"ai","d":"Build production ML systems with PyTorch 2.x,..."},"ml-pipeline":{"c":"ai","d":"Use when building ML pipelines, orchestrating training..."},"ml-pipeline-workflow":{"c":"ai","d":"Build end-to-end MLOps pipelines from data preparation..."},"mlops-engineer":{"c":"ai","d":"Build comprehensive ML pipelines, experiment tracking,..."},"mobile-design":{"c":"mob","d":"Mobile-first design thinking and decision-making for iOS..."},"mobile-developer":{"c":"mob","d":"Develop React Native, Flutter, or native mobile apps..."},"mobile-development":{"c":"mob","d":"Build modern mobile applications with React Native,..."},"mobile-security-coder":{"c":"sec","d":"Expert in secure mobile coding practices specializing in..."},"modern-javascript-patterns":{"c":"other","d":"Master ES6+ features including async/await,..."},"monday-automation":{"c":"ai","d":"Automate Monday.com work management including boards,..."},"monitoring-expert":{"c":"ops","d":"Use when setting up monitoring systems, logging,..."},"monorepo-architect":{"c":"arch","d":"Expert in monorepo architecture, build systems, and..."},"monorepo-management":{"c":"other","d":"Master monorepo management with Turborepo, Nx, and pnpm..."},"moodle-external-api-development":{"c":"be","d":"Create custom external web service APIs for Moodle LMS...."},"mtls-configuration":{"c":"other","d":"Configure mutual TLS (mTLS) for zero-trust..."},"multi-agent-brainstorming":"ai","multi-agent-patterns":{"c":"ai","d":"Master orchestrator, peer-to-peer, and hierarchical..."},"multi-cloud-architecture":{"c":"ops","d":"Design multi-cloud architectures using a decision..."},"multi-platform-apps-multi-platform":{"c":"ops","d":"Build and deploy the same feature consistently across..."},"n8n-code-python":{"c":"py","d":"Write Python code in n8n Code nodes. Use when writing..."},"n8n-mcp-tools-expert":{"c":"ai","d":"Expert guide for using n8n-mcp MCP tools effectively...."},"n8n-node-configuration":{"c":"other","d":"Operation-aware node configuration guidance. Use when..."},"nanobanana-ppt-skills":{"c":"ai","d":"AI-powered PPT generation with document analysis and..."},"neon-postgres":{"c":"db","d":"Expert patterns for Neon serverless Postgres, branching,..."},"nerdzao-elite":{"c":"test","d":"Senior Elite Software Engineer (15+) and Senior Product..."},"nerdzao-elite-gemini-high":{"c":"ai","d":"Modo Elite Coder + UX Pixel-Perfect otimizado..."},"nestjs-expert":{"c":"be","d":"Nest.js framework expert specializing in module..."},"network-101":{"c":"test","d":"This skill should be used when the user asks to \\\"set up..."},"network-engineer":{"c":"ops","d":"Expert network engineer specializing in modern cloud..."},"nextjs-app-router-patterns":{"c":"fe","d":"Master Next.js 14+ App Router with Server Components,..."},"nextjs-best-practices":{"c":"fe","d":"Next.js App Router principles. Server Components, data..."},"nextjs-developer":{"c":"fe","d":"Use when building Next.js 14+ applications with App..."},"nextjs-supabase-auth":{"c":"sec","d":"Expert integration of Supabase Auth with Next.js App..."},"nft-standards":{"c":"other","d":"Implement NFT standards (ERC-721, ERC-1155) with proper..."},"nodejs-backend-patterns":{"c":"be","d":"Build production-ready Node.js backend services with..."},"nodejs-best-practices":{"c":"be","d":"Node.js development principles and decision-making...."},"nosql-expert":{"c":"db","d":"Expert guidance for distributed NoSQL databases..."},"notebooklm":{"c":"sec","d":"Use this skill to query your Google NotebookLM notebooks..."},"notebooklm-skill":{"c":"sec","d":"Use this skill to query your Google NotebookLM notebooks..."},"notion-automation":{"c":"ai","d":"Automate Notion tasks via Rube MCP (Composio): pages,..."},"notion-template-business":{"c":"other","d":"Expert in building and selling Notion templates as a..."},"nx-workspace-patterns":{"c":"other","d":"Configure and optimize Nx monorepo workspaces. Use when..."},"observability-engineer":{"c":"ops","d":"Build production-ready monitoring, logging, and tracing..."},"observability-monitoring-monitor-setup":{"c":"ops","d":"You are a monitoring and observability expert..."},"observability-monitoring-slo-implement":{"c":"ops","d":"You are an SLO (Service Level Objective) expert..."},"observe-whatsapp":{"c":"be","d":"Observe and troubleshoot WhatsApp in Kapso: debug..."},"obsidian-clipper-template-creator":{"c":"other","d":"Guide for creating templates for the Obsidian Web..."},"office-productivity":{"c":"other","d":"Office productivity workflow covering document creation,..."},"on-call-handoff-patterns":{"c":"ops","d":"Master on-call shift handoffs with context transfer,..."},"onboarding-cro":{"c":"other","d":"When the user wants to optimize post-signup onboarding,..."},"one-drive-automation":{"c":"ai","d":"Automate OneDrive file management, search, uploads,..."},"openapi-spec-generation":{"c":"doc","d":"Generate and maintain OpenAPI 3.1 specifications from..."},"os-scripting":{"c":"fe","d":"Operating system and shell scripting troubleshooting..."},"oss-hunter":{"c":"other","d":"Automatically hunt for high-impact OSS contribution..."},"outlook-automation":{"c":"ai","d":"Automate Outlook tasks via Rube MCP (Composio): emails,..."},"outlook-calendar-automation":{"c":"ai","d":"Automate Outlook Calendar tasks via Rube MCP (Composio):..."},"page-cro":{"c":"other","d":">"},"pagerduty-automation":{"c":"ops","d":"Automate PagerDuty tasks via Rube MCP (Composio): manage..."},"paid-ads":{"c":"other","d":"When the user wants help with paid advertising campaigns..."},"pandas-pro":{"c":"py","d":"Use when working with pandas DataFrames, data cleaning,..."},"parallel-agents":{"c":"ai","d":"Native multi-agent orchestration using Claude Code's..."},"payment-integration":{"c":"other","d":"Integrate Stripe, PayPal, and payment processors...."},"paypal-integration":{"c":"be","d":"Integrate PayPal payment processing with support for..."},"paywall-upgrade-cro":{"c":"other","d":"When the user wants to create or optimize in-app..."},"pci-compliance":{"c":"sec","d":"Implement PCI DSS compliance requirements for secure..."},"pdf":{"c":"ai","d":"Comprehensive PDF manipulation toolkit for extracting..."},"pdf-official":{"c":"ai","d":"Comprehensive PDF manipulation toolkit for extracting..."},"pentest-checklist":{"c":"sec","d":"This skill should be used when the user asks to \\\"plan a..."},"pentest-commands":{"c":"sec","d":"This skill should be used when the user asks to \\\"run..."},"performance-engineer":{"c":"perf","d":"Expert performance engineer specializing in modern..."},"performance-profiling":{"c":"perf","d":"Performance profiling principles. Measurement, analysis,..."},"performance-testing-review-ai-review":{"c":"ai","d":"You are an expert AI-powered code review specialist..."},"performance-testing-review-multi-agent-review":{"c":"ai","d":"Use when working with performance testing review multi..."},"personal-tool-builder":{"c":"other","d":"Expert in building custom tools that solve your own..."},"php-pro":{"c":"other","d":"Use when building PHP applications with modern PHP 8.3+..."},"pipedrive-automation":{"c":"ai","d":"Automate Pipedrive CRM operations including deals,..."},"plaid-fintech":{"c":"sec","d":"Expert patterns for Plaid API integration including Link..."},"plan-writing":{"c":"other","d":"Structured task planning with clear breakdowns,..."},"planning":{"c":"other","d":"Use when you need to plan technical solutions that are..."},"planning-with-files":{"c":"other","d":"Implements Manus-style file-based planning for complex..."},"plans-kanban":{"c":"other","d":"View plans dashboard with progress tracking and timeline..."},"playwright-expert":{"c":"test","d":"Use when writing E2E tests with Playwright, setting up..."},"playwright-skill":{"c":"test","d":"Complete browser automation with Playwright...."},"podcast-generation":"other","popup-cro":{"c":"git","d":"Create and optimize popups, modals, overlays, slide-ins,..."},"posix-shell-pro":{"c":"other","d":"Expert in strict POSIX sh scripting for maximum..."},"postgres-best-practices":{"c":"db","d":"Postgres performance optimization and best practices..."},"postgres-pro":{"c":"db","d":"Use when optimizing PostgreSQL queries, configuring..."},"postgresql":{"c":"db","d":"Design a PostgreSQL-specific schema. Covers..."},"postgresql-optimization":{"c":"db","d":"PostgreSQL database optimization workflow for query..."},"posthog-automation":{"c":"ai","d":"Automate PostHog tasks via Rube MCP (Composio): events,..."},"postmark-automation":{"c":"ai","d":"Automate Postmark email delivery tasks via Rube MCP..."},"postmortem-writing":{"c":"ops","d":"Write effective blameless postmortems with root cause..."},"powershell-windows":{"c":"other","d":"PowerShell Windows patterns. Critical pitfalls, operator..."},"pptx":{"c":"ai","d":"Presentation creation, editing, and analysis. When..."},"pptx-official":{"c":"ai","d":"Presentation creation, editing, and analysis. When..."},"pricing-strategy":{"c":"other","d":"Design pricing, packaging, and monetization strategies..."},"prisma-expert":{"c":"db","d":"Prisma ORM expert for schema design, migrations, query..."},"privilege-escalation-methods":{"c":"sec","d":"This skill should be used when the user asks to..."},"problem-solving":{"c":"git","d":"Apply systematic problem-solving techniques for..."},"product-manager-toolkit":{"c":"go","d":"Comprehensive toolkit for product managers including..."},"product-strategist":{"c":"ai","d":"Strategic product leadership toolkit for Head of Product..."},"production-code-audit":{"c":"perf","d":"Autonomously deep-scan entire codebase line-by-line,..."},"programmatic-seo":{"c":"other","d":">"},"projection-patterns":{"c":"perf","d":"Build read models and projections from event streams...."},"prometheus-configuration":{"c":"ops","d":"Set up Prometheus for comprehensive metric collection,..."},"prompt-caching":{"c":"ai","d":"Caching strategies for LLM prompts including Anthropic..."},"prompt-engineer":{"c":"ai","d":"Use when designing prompts for LLMs, optimizing model..."},"prompt-engineering":{"c":"ai","d":"Expert guide on prompt engineering patterns, best..."},"prompt-engineering-patterns":{"c":"ai","d":"Master advanced prompt engineering techniques to..."},"prompt-library":{"c":"ai","d":"Curated collection of high-quality prompts for various..."},"protocol-reverse-engineering":{"c":"sec","d":"Master network protocol reverse engineering including..."},"pydantic-models":{"c":"db","d":"Create Pydantic models following the multi-model pattern..."},"pydantic-models-py":{"c":"db","d":"Create Pydantic models following the multi-model pattern..."},"pypict-skill":{"c":"test","d":"Pairwise test generation"},"python-development":{"c":"py","d":"Modern Python development with Python 3.12+, Django,..."},"python-development-python-scaffold":{"c":"py","d":"You are a Python project architecture expert..."},"python-fastapi-development":{"c":"py","d":"Python FastAPI backend development with async patterns,..."},"python-packaging":{"c":"py","d":"Create distributable Python packages with proper project..."},"python-patterns":{"c":"py","d":"Python development principles and decision-making...."},"python-performance-optimization":{"c":"py","d":"Profile and optimize Python code using cProfile, memory..."},"python-pro":{"c":"py","d":"Use when building Python 3.11+ applications requiring..."},"python-testing-patterns":{"c":"test","d":"Implement comprehensive testing strategies with pytest,..."},"qa-regression":{"c":"test","d":"Automate QA regression testing with reusable test..."},"quant-analyst":{"c":"other","d":"Build financial models, backtest trading strategies, and..."},"radix-ui-design-system":{"c":"fe","d":"Build accessible design systems with Radix UI..."},"raffle-winner-picker":{"c":"fe","d":"Picks random winners from lists, spreadsheets, or Google..."},"rag-architect":{"c":"ai","d":"Use when building RAG systems, vector databases, or..."},"rag-engineer":{"c":"ai","d":"Expert in building Retrieval-Augmented Generation..."},"rag-implementation":{"c":"ai","d":"Retrieval-Augmented Generation patterns including..."},"rails-expert":{"c":"perf","d":"Use when building Rails 7+ web applications with..."},"react-best-practices":{"c":"fe","d":"React and Next.js performance optimization guidelines..."},"react-doctor":{"c":"fe","d":"Run react-doctor to scan React codebase for health..."},"react-expert":{"c":"fe","d":"Use when building React 18+ applications requiring..."},"react-flow-architect":{"c":"fe","d":"Expert ReactFlow architect for building interactive..."},"react-flow-node":{"c":"fe","d":"Create React Flow node components with TypeScript types,..."},"react-flow-node-ts":{"c":"fe","d":"Create React Flow node components with TypeScript types,..."},"react-modernization":{"c":"fe","d":"Upgrade React applications to latest versions, migrate..."},"react-native-architecture":{"c":"mob","d":"Build production React Native apps with Expo,..."},"react-native-expert":{"c":"mob","d":"Use when building cross-platform mobile applications..."},"react-nextjs-development":{"c":"fe","d":"React and Next.js 14+ application development with App..."},"react-patterns":{"c":"fe","d":"Modern React patterns and principles. Hooks,..."},"react-state-management":{"c":"fe","d":"Master modern React state management with Redux Toolkit,..."},"react-ui-patterns":{"c":"fe","d":"Modern React UI patterns for loading states, error..."},"readme":{"c":"doc","d":"When the user wants to create or update a README.md file..."},"receiving-code-review":{"c":"git","d":"Use when receiving code review feedback, before..."},"red-team-tactics":{"c":"sec","d":"Red team tactics principles based on MITRE ATT&CK...."},"red-team-tools":{"c":"sec","d":"This skill should be used when the user asks to \\\"follow..."},"reddit-automation":{"c":"ai","d":"Automate Reddit tasks via Rube MCP (Composio): search..."},"reference-builder":{"c":"doc","d":"Creates exhaustive technical references and API..."},"referral-program":{"c":"other","d":"When the user wants to create, optimize, or analyze a..."},"remotion-best-practices":{"c":"fe","d":"Best practices for Remotion - Video creation in React"},"render-automation":{"c":"ops","d":"Automate Render tasks via Rube MCP (Composio): services,..."},"repomix":{"c":"sec","d":"Package entire code repositories into single AI-friendly..."},"requesting-code-review":{"c":"git","d":"Use when completing tasks, implementing major features,..."},"research":{"c":"other","d":"Use when you need to research, analyze, and plan..."},"research-engineer":{"c":"other","d":"An uncompromising Academic Research Engineer. Operates..."},"reverse-engineer":{"c":"sec","d":"Expert reverse engineer specializing in binary analysis,"},"risk-manager":{"c":"other","d":"Monitor portfolio risk, R-multiples, and position..."},"risk-metrics-calculation":{"c":"ops","d":"Calculate portfolio risk metrics including VaR, CVaR,..."},"ruby-pro":{"c":"other","d":"Write idiomatic Ruby code with metaprogramming, Rails..."},"rust-async-patterns":{"c":"rs","d":"Master Rust async programming with Tokio, async traits,..."},"rust-engineer":{"c":"rs","d":"Use when building Rust applications requiring memory..."},"rust-pro":{"c":"rs","d":"Master Rust 1.75+ with modern async patterns, advanced..."},"saga-orchestration":{"c":"other","d":"Implement saga patterns for distributed transactions and..."},"sales-automator":{"c":"other","d":"Draft cold emails, follow-ups, and proposal templates...."},"salesforce-automation":{"c":"ai","d":"Automate Salesforce tasks via Rube MCP (Composio):..."},"salesforce-developer":{"c":"fe","d":"Use when developing Salesforce applications, Apex code,..."},"salesforce-development":{"c":"be","d":"Expert patterns for Salesforce platform development..."},"sast-configuration":{"c":"sec","d":"Configure Static Application Security Testing (SAST)..."},"scala-pro":{"c":"other","d":"Master enterprise-grade Scala development with functional"},"scanning-tools":{"c":"sec","d":"This skill should be used when the user asks to..."},"schema-markup":{"c":"db","d":">"},"screen-reader-testing":{"c":"test","d":"Test web applications with screen readers including..."},"screenshots":{"c":"sec","d":"Generate marketing screenshots of your app using..."},"scroll-experience":{"c":"fe","d":"Expert in building immersive scroll-driven experiences -..."},"search-specialist":{"c":"other","d":"Expert web researcher using advanced search techniques and"},"secrets-management":{"c":"ops","d":"Implement secure secrets management for CI/CD pipelines..."},"secure-code-guardian":{"c":"sec","d":"Use when implementing authentication/authorization,..."},"security-audit":{"c":"sec","d":"Comprehensive security auditing workflow covering web..."},"security-auditor":{"c":"sec","d":"Expert security auditor specializing in DevSecOps,..."},"security-bluebook-builder":{"c":"sec","d":"Build security Blue Books for sensitive apps"},"security-compliance-compliance-check":{"c":"sec","d":"You are a compliance expert specializing in regulatory..."},"security-requirement-extraction":{"c":"sec","d":"Derive security requirements from threat models and..."},"security-reviewer":{"c":"sec","d":"Use when conducting security audits, reviewing code for..."},"security-scanning-security-dependencies":{"c":"sec","d":"You are a security expert specializing in dependency..."},"security-scanning-security-hardening":{"c":"sec","d":"Coordinate multi-layer security scanning and hardening..."},"security-scanning-security-sast":{"c":"sec","d":"Static Application Security Testing (SAST) for code..."},"segment-automation":{"c":"ai","d":"Automate Segment tasks via Rube MCP (Composio): track..."},"segment-cdp":{"c":"data","d":"Expert patterns for Segment Customer Data Platform..."},"sendgrid-automation":{"c":"ai","d":"Automate SendGrid email operations including sending..."},"senior-architect":{"c":"db","d":"Comprehensive software architecture skill for designing..."},"senior-backend":{"c":"be","d":"Comprehensive backend development skill for building..."},"senior-computer-vision":{"c":"ai","d":"World-class computer vision skill for image/video..."},"senior-data-engineer":{"c":"data","d":"World-class data engineering skill for building scalable..."},"senior-data-scientist":{"c":"test","d":"World-class data science skill for statistical modeling,..."},"senior-devops":{"c":"ops","d":"Comprehensive DevOps skill for CI/CD, infrastructure..."},"senior-frontend":{"c":"fe","d":"Comprehensive frontend development skill for building..."},"senior-fullstack":{"c":"db","d":"Comprehensive fullstack development skill for building..."},"senior-ml-engineer":{"c":"ai","d":"World-class ML engineering skill for productionizing ML..."},"senior-prompt-engineer":{"c":"ai","d":"World-class prompt engineering skill for LLM..."},"senior-qa":{"c":"test","d":"Comprehensive QA and testing skill for quality..."},"senior-secops":{"c":"sec","d":"Comprehensive SecOps skill for application security,..."},"senior-security":{"c":"sec","d":"Comprehensive security engineering skill for application..."},"sentry-automation":{"c":"ai","d":"Automate Sentry tasks via Rube MCP (Composio): manage..."},"seo-audit":{"c":"other","d":">"},"seo-authority-builder":{"c":"sec","d":"Analyzes content for E-E-A-T signals and suggests..."},"seo-cannibalization-detector":{"c":"other","d":"Analyzes multiple provided pages to identify keyword..."},"seo-content-auditor":{"c":"other","d":"Analyzes provided content for quality, E-E-A-T signals,..."},"seo-content-planner":{"c":"other","d":"Creates comprehensive content outlines and topic..."},"seo-content-refresher":{"c":"other","d":"Identifies outdated elements in provided content and..."},"seo-content-writer":{"c":"other","d":"Writes SEO-optimized content based on provided keywords..."},"seo-fundamentals":{"c":"other","d":"SEO fundamentals, E-E-A-T, Core Web Vitals, and Google..."},"seo-keyword-strategist":{"c":"other","d":"Analyzes keyword usage in provided content, calculates..."},"seo-meta-optimizer":{"c":"other","d":"Creates optimized meta titles, descriptions, and URL..."},"seo-snippet-hunter":{"c":"other","d":"Formats content to be eligible for featured snippets and..."},"seo-structure-architect":{"c":"other","d":"Analyzes and optimizes content structure including header"},"sequential-thinking":{"c":"ai","d":"Apply structured, reflective problem-solving for complex..."},"server-management":{"c":"ops","d":"Server management principles and decision-making...."},"service-mesh-expert":{"c":"sec","d":"Expert service mesh architect specializing in Istio,..."},"service-mesh-observability":{"c":"ops","d":"Implement comprehensive observability for service meshes..."},"shader-programming-glsl":{"c":"other","d":"Expert guide for writing efficient GLSL shaders..."},"sharp-edges":{"c":"other","d":"Identify error-prone APIs and dangerous configurations"},"shellcheck-configuration":{"c":"ops","d":"Master ShellCheck static analysis configuration and..."},"shodan-reconnaissance":{"c":"sec","d":"This skill should be used when the user asks to \\\"search..."},"shopify-apps":{"c":"be","d":"Expert patterns for Shopify app development including..."},"shopify-automation":{"c":"ai","d":"Automate Shopify tasks via Rube MCP (Composio):..."},"shopify-development":{"c":"other","d":"|"},"shopify-expert":{"c":"be","d":"Use when building Shopify themes, apps, custom..."},"signup-flow-cro":{"c":"git","d":"When the user wants to optimize signup, registration,..."},"similarity-search-patterns":{"c":"ai","d":"Implement efficient similarity search with vector..."},"skill-creator":{"c":"ai","d":"Guide for creating effective skills. This skill should..."},"skill-creator-ms":{"c":"ops","d":"Guide for creating effective skills for AI coding agents..."},"skill-developer":{"c":"ai","d":"Create and manage Claude Code skills following Anthropic..."},"skill-rails-upgrade":{"c":"other","d":"Analyze Rails apps and provide upgrade assessments"},"skill-seekers":{"c":"ai","d":"-Automatically convert documentation websites, GitHub..."},"skill-share":{"c":"ai","d":"A skill that creates new Claude skills and automatically..."},"slack-automation":{"c":"ai","d":"Automate Slack messaging, channel management, search,..."},"slack-bot-builder":{"c":"sec","d":"Build Slack apps using the Bolt framework across Python,..."},"slack-gif-creator":{"c":"fe","d":"Toolkit for creating animated GIFs optimized for Slack,..."},"slo-implementation":{"c":"ops","d":"Define and implement Service Level Indicators (SLIs) and..."},"smtp-penetration-testing":{"c":"sec","d":"This skill should be used when the user asks to..."},"social-content":{"c":"sec","d":"When the user wants help creating, scheduling, or..."},"software-architecture":{"c":"arch","d":"Guide for quality focused software architecture. This..."},"solidity-security":{"c":"sec","d":"Master smart contract security best practices to prevent..."},"spark-engineer":{"c":"data","d":"Use when building Apache Spark applications, distributed..."},"spark-optimization":{"c":"data","d":"Optimize Apache Spark jobs with partitioning, caching,..."},"spec-miner":{"c":"other","d":"Use when understanding legacy or undocumented systems,..."},"spring-boot-engineer":{"c":"sec","d":"Use when building Spring Boot 3.x applications,..."},"sql-injection-testing":{"c":"sec","d":"This skill should be used when the user asks to \\\"test..."},"sql-optimization-patterns":{"c":"db","d":"Master SQL query optimization, indexing strategies, and..."},"sql-pro":{"c":"db","d":"Use when optimizing SQL queries, designing database..."},"sqlmap-database-pentesting":{"c":"sec","d":"This skill should be used when the user asks to..."},"square-automation":{"c":"ai","d":"Automate Square tasks via Rube MCP (Composio): payments,..."},"sre-engineer":{"c":"ops","d":"Use when defining SLIs/SLOs, managing error budgets, or..."},"ssh-penetration-testing":{"c":"sec","d":"This skill should be used when the user asks to..."},"startup-analyst":{"c":"other","d":"Expert startup business analyst specializing in market..."},"startup-business-analyst-business-case":{"c":"other","d":"Generate comprehensive investor-ready business case..."},"startup-business-analyst-financial-projections":{"c":"other","d":"Create detailed 3-5 year financial model with revenue,..."},"startup-business-analyst-market-opportunity":{"c":"other","d":"Generate comprehensive market opportunity analysis with..."},"startup-financial-modeling":{"c":"other","d":"This skill should be used when the user asks to..."},"startup-metrics-framework":{"c":"other","d":"This skill should be used when the user asks about..."},"stitch-ui-design":{"c":"fe","d":"Expert guide for creating effective prompts for Google..."},"stride-analysis-patterns":{"c":"sec","d":"Apply STRIDE methodology to systematically identify..."},"stripe-automation":{"c":"ai","d":"Automate Stripe tasks via Rube MCP (Composio):..."},"stripe-integration":{"c":"be","d":"Get paid from day one. Payments, subscriptions, billing..."},"subagent-driven-development":{"c":"ai","d":"Use when executing implementation plans with independent..."},"supabase-automation":{"c":"db","d":"Automate Supabase database queries, table management,..."},"superpowers-lab":{"c":"ai","d":"Lab environment for Claude superpowers"},"swift-expert":{"c":"mob","d":"Use when building iOS/macOS applications with Swift..."},"swiftui-expert-skill":{"c":"fe","d":"Write, review, or improve SwiftUI code following best..."},"systematic-debugging":{"c":"other","d":"4-phase systematic debugging methodology with root cause..."},"systems-programming-rust-project":{"c":"rs","d":"You are a Rust project architecture expert specializing..."},"tailwind-design-system":{"c":"fe","d":"Build scalable design systems with Tailwind CSS, design..."},"tailwind-patterns":{"c":"fe","d":"Tailwind CSS v4 principles. CSS-first configuration,..."},"tavily-web":{"c":"be","d":"Web search, content extraction, crawling, and research..."},"tdd-orchestrator":{"c":"test","d":"Master TDD orchestrator specializing in red-green-refactor"},"tdd-workflow":{"c":"test","d":"Test-Driven Development workflow principles...."},"tdd-workflows-tdd-cycle":{"c":"test","d":"Use when working with tdd workflows tdd cycle"},"tdd-workflows-tdd-green":{"c":"test","d":"Implement the minimal code needed to make failing tests..."},"tdd-workflows-tdd-red":{"c":"test","d":"Generate failing tests for the TDD red phase to define..."},"tdd-workflows-tdd-refactor":{"c":"test","d":"Use when working with tdd workflows tdd refactor"},"team-collaboration-issue":{"c":"git","d":"You are a GitHub issue resolution expert specializing in..."},"team-collaboration-standup-notes":{"c":"ai","d":"You are an expert team communication specialist focused..."},"team-composition-analysis":{"c":"other","d":"This skill should be used when the user asks to \\\\\\\"plan..."},"telegram-automation":{"c":"ai","d":"Automate Telegram tasks via Rube MCP (Composio): send..."},"telegram-bot-builder":{"c":"ai","d":"Expert in building Telegram bots that solve real..."},"telegram-mini-app":{"c":"sec","d":"Expert in building Telegram Mini Apps (TWA) - web apps..."},"template-skill":{"c":"ai","d":"Replace with description of the skill and when Claude..."},"temporal-python-pro":{"c":"py","d":"Master Temporal workflow orchestration with Python SDK...."},"temporal-python-testing":{"c":"test","d":"Test Temporal workflows with pytest, time-skipping, and..."},"terraform-engineer":{"c":"ops","d":"Use when implementing infrastructure as code with..."},"terraform-infrastructure":{"c":"ops","d":"Terraform infrastructure as code workflow for..."},"terraform-module-library":{"c":"ops","d":"Build reusable Terraform modules for AWS, Azure, and GCP..."},"terraform-skill":{"c":"ops","d":"Terraform infrastructure as code best practices"},"terraform-specialist":{"c":"ops","d":"Expert Terraform/OpenTofu specialist mastering advanced IaC"},"test-automator":{"c":"test","d":"Master AI-powered test automation with modern frameworks,"},"test-driven-development":{"c":"test","d":"Use when implementing any feature or bugfix, before..."},"test-fixing":{"c":"test","d":"Run tests and systematically fix all failing tests using..."},"test-master":{"c":"test","d":"Use when writing tests, creating test strategies, or..."},"testing-patterns":{"c":"test","d":"Testing patterns and principles. Unit, integration,..."},"testing-qa":{"c":"test","d":"Comprehensive testing and QA workflow covering unit..."},"theme-factory":{"c":"fe","d":"Toolkit for styling artifacts with a theme. These..."},"threat-mitigation-mapping":{"c":"sec","d":"Map identified threats to appropriate security controls..."},"threat-modeling-expert":{"c":"sec","d":"Expert in threat modeling methodologies, security..."},"threejs":{"c":"fe","d":"Build immersive 3D web experiences with Three.js -..."},"threejs-skills":{"c":"fe","d":"Create 3D scenes, interactive experiences, and visual..."},"tiktok-automation":{"c":"ai","d":"Automate TikTok tasks via Rube MCP (Composio):..."},"todoist-automation":{"c":"ai","d":"Automate Todoist task management, projects, sections,..."},"tool-design":{"c":"ai","d":"Build tools that agents can use effectively, including..."},"top-web-vulnerabilities":{"c":"sec","d":"This skill should be used when the user asks to..."},"track-management":{"c":"other","d":"Use this skill when creating, managing, or working with..."},"trello-automation":{"c":"ai","d":"Automate Trello boards, cards, and workflows via Rube..."},"trigger-dev":{"c":"ai","d":"Trigger.dev expert for background jobs, AI workflows,..."},"turborepo-caching":{"c":"other","d":"Configure Turborepo for efficient monorepo builds with..."},"tutorial-engineer":{"c":"other","d":"Creates step-by-step tutorials and educational content..."},"twilio-communications":{"c":"be","d":"Build communication features with Twilio: SMS messaging,..."},"twitter-automation":{"c":"ai","d":"Automate Twitter/X tasks via Rube MCP (Composio): posts,..."},"typescript-advanced-types":{"c":"other","d":"Master TypeScript's advanced type system including..."},"typescript-expert":{"c":"other","d":">-"},"typescript-pro":{"c":"other","d":"Use when building TypeScript applications requiring..."},"ui-design-system":{"c":"fe","d":"UI design system toolkit for Senior UI Designer..."},"ui-skills":{"c":"fe","d":"Opinionated, evolving constraints to guide agents when..."},"ui-styling":{"c":"fe","d":"Create beautiful, accessible user interfaces with..."},"ui-ux-designer":{"c":"fe","d":"Create interface designs, wireframes, and design..."},"ui-ux-pro-max":{"c":"fe","d":"UI/UX design intelligence. 50 styles, 21 palettes, 50..."},"ui-visual-validator":{"c":"fe","d":"Rigorous visual validation expert specializing in UI..."},"unit-testing-test-generate":{"c":"test","d":"Generate comprehensive, maintainable unit tests across..."},"unity-developer":{"c":"other","d":"Build Unity games with optimized C scripts, efficient..."},"unity-ecs-patterns":{"c":"perf","d":"Master Unity ECS (Entity Component System) with DOTS,..."},"unreal-engine-cpp-pro":{"c":"perf","d":"Expert guide for Unreal Engine 5.x C++ development,..."},"upgrading-expo":{"c":"mob","d":"Guidelines for upgrading Expo SDK versions and fixing..."},"upstash-qstash":{"c":"ops","d":"Upstash QStash expert for serverless message queues,..."},"using-git-worktrees":{"c":"git","d":"Use when starting feature work that needs isolation from..."},"using-neon":{"c":"db","d":"Guides and best practices for working with Neon..."},"using-superpowers":{"c":"other","d":"Use when starting any conversation - establishes how to..."},"uv-package-manager":{"c":"py","d":"Master the uv package manager for fast Python dependency..."},"ux-researcher-designer":{"c":"fe","d":"UX research and design toolkit for Senior UX..."},"varlock-claude-skill":{"c":"ai","d":"Secure environment variable management ensuring secrets..."},"vector-database-engineer":{"c":"ai","d":"Expert in vector databases, embedding strategies, and..."},"vector-index-tuning":{"c":"ai","d":"Optimize vector index performance for latency, recall,..."},"vercel-automation":{"c":"ops","d":"Automate Vercel tasks via Rube MCP (Composio): manage..."},"vercel-deploy":{"c":"ops","d":"Deploy applications to Vercel with edge functions,..."},"vercel-deploy-claimable":{"c":"ops","d":"Deploy applications and websites to Vercel. Use this..."},"vercel-deployment":{"c":"ops","d":"Expert knowledge for deploying to Vercel with Next.js..."},"verification-before-completion":{"c":"git","d":"Use when about to claim work is complete, fixed, or..."},"vexor":{"c":"ai","d":"Vector-powered CLI for semantic file search with a..."},"video-downloader":{"c":"other","d":"Downloads videos from YouTube and other platforms for..."},"viral-generator-builder":{"c":"test","d":"Expert in building shareable generator tools that go..."},"voice-agents":{"c":"ai","d":"Voice agents represent the frontier of AI interaction -..."},"voice-ai-development":{"c":"ai","d":"Expert in building voice AI applications - from..."},"voice-ai-engine-development":{"c":"ai","d":"Build real-time conversational AI voice engines using..."},"vue-expert":{"c":"fe","d":"Provides Vue 3 expertise including Composition API,..."},"vue-expert-js":{"c":"fe","d":"Use when building Vue 3 applications with JavaScript..."},"vulnerability-scanner":{"c":"sec","d":"Advanced vulnerability analysis principles. OWASP 2025,..."},"wcag-audit-patterns":{"c":"fe","d":"Conduct WCAG 2.2 accessibility audits with automated..."},"web-artifacts-builder":{"c":"ai","d":"Suite of tools for creating elaborate, multi-component..."},"web-design-guidelines":{"c":"sec","d":"Review UI code for Web Interface Guidelines compliance...."},"web-frameworks":{"c":"perf","d":"Build modern full-stack web applications with Next.js..."},"web-performance-optimization":{"c":"perf","d":"Optimize website and web application performance..."},"web-security-testing":{"c":"sec","d":"Web application security testing workflow for OWASP Top..."},"web3-testing":{"c":"test","d":"Test smart contracts comprehensively using Hardhat and..."},"webapp-testing":{"c":"test","d":"Toolkit for interacting with and testing local web..."},"webflow-automation":{"c":"ai","d":"Automate Webflow CMS collections, site publishing, page..."},"websocket-engineer":{"c":"sec","d":"Use when building real-time communication systems with..."},"whatsapp-automation":{"c":"ai","d":"Automate WhatsApp Business tasks via Rube MCP..."},"wiki-architect":{"c":"other","d":"Analyzes code repositories and generates hierarchical..."},"wiki-changelog":{"c":"git","d":"Analyzes git commit history and generates structured..."},"wiki-onboarding":{"c":"other","d":"Generates two complementary onboarding guides \\u2014 a..."},"wiki-page-writer":{"c":"other","d":"Generates rich technical documentation pages with..."},"wiki-qa":{"c":"test","d":"Answers questions about a code repository using source..."},"wiki-researcher":{"c":"other","d":"Conducts multi-turn iterative deep research on specific..."},"wiki-vitepress":{"c":"other","d":"Packages generated wiki Markdown into a VitePress static..."},"windows-privilege-escalation":{"c":"sec","d":"This skill should be used when the user asks to..."},"wireshark-analysis":{"c":"other","d":"This skill should be used when the user asks to..."},"wordpress":{"c":"sec","d":"Complete WordPress development workflow covering theme..."},"wordpress-penetration-testing":{"c":"sec","d":"This skill should be used when the user asks to..."},"wordpress-plugin-development":{"c":"go","d":"WordPress plugin development workflow covering plugin..."},"wordpress-pro":{"c":"sec","d":"Use when developing WordPress themes, plugins,..."},"wordpress-theme-development":{"c":"arch","d":"WordPress theme development workflow covering theme..."},"wordpress-woocommerce-development":{"c":"other","d":"WooCommerce store development workflow covering store..."},"workflow-automation":{"c":"ops","d":"Workflow automation is the infrastructure that makes AI..."},"workflow-orchestration-patterns":{"c":"other","d":"Design durable workflows with Temporal for distributed..."},"workflow-patterns":{"c":"test","d":"Use this skill when implementing tasks according to..."},"wrike-automation":{"c":"ai","d":"Automate Wrike project management via Rube MCP..."},"writing-plans":{"c":"other","d":"Use when you have a spec or requirements for a..."},"writing-skills":{"c":"ops","d":"Use when creating new skills, editing existing skills,..."},"x-article-publisher-skill":{"c":"other","d":"Publish articles to X/Twitter"},"xlsx":{"c":"ai","d":"Comprehensive spreadsheet creation, editing, and..."},"xlsx-official":{"c":"ai","d":"Comprehensive spreadsheet creation, editing, and..."},"xss-html-injection":{"c":"sec","d":"This skill should be used when the user asks to \\\"test..."},"youtube-automation":{"c":"ai","d":"Automate YouTube tasks via Rube MCP (Composio): upload..."},"youtube-summarizer":{"c":"other","d":"Extract transcripts from YouTube videos and generate..."},"youtube-transcript":{"c":"other","d":"Download YouTube video transcripts when user provides a..."},"zapier-make-patterns":{"c":"other","d":"No-code automation democratizes workflow building...."},"zendesk-automation":{"c":"ai","d":"Automate Zendesk tasks via Rube MCP (Composio): tickets,..."},"zoho-crm-automation":{"c":"ai","d":"Automate Zoho CRM tasks via Rube MCP (Composio):..."},"zoom-automation":{"c":"ai","d":"Automate Zoom meeting creation, management, recordings,..."},"zustand-store":{"c":"be","d":"Create Zustand stores with TypeScript, subscribeWithSelec..."},"zustand-store-ts":{"c":"be","d":"Create Zustand stores with TypeScript, subscribeWithSelec..."}}}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_meta": {
|
|
3
|
+
"version": 2,
|
|
4
|
+
"lastUpdated": "2026-02-27",
|
|
5
|
+
"stats": {
|
|
6
|
+
"totalSkills": 1125,
|
|
7
|
+
"graphedSkills": 0,
|
|
8
|
+
"connections": 0,
|
|
9
|
+
"strongConnections": 0,
|
|
10
|
+
"moderateConnections": 0,
|
|
11
|
+
"weakConnections": 0,
|
|
12
|
+
"density": 0,
|
|
13
|
+
"recipes": 0
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"_tiers": {
|
|
17
|
+
"t1-orchestrator": [],
|
|
18
|
+
"t2-hub": [],
|
|
19
|
+
"t3-utility": [],
|
|
20
|
+
"t4-connected": [],
|
|
21
|
+
"t4-standalone": []
|
|
22
|
+
},
|
|
23
|
+
"_recipes": {},
|
|
24
|
+
"graph": {}
|
|
25
|
+
}
|