superskill 0.2.7 → 0.4.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/.claude-plugin/plugin.json +3 -3
- package/CHANGELOG.md +32 -0
- package/LICENSE +0 -4
- package/README.md +67 -59
- package/dist/cli.js +19 -1
- package/dist/cli.js.map +1 -1
- package/dist/commands/init.js +1 -1
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/skill/activate.d.ts +6 -1
- package/dist/commands/skill/activate.js +52 -15
- package/dist/commands/skill/activate.js.map +1 -1
- package/dist/commands/skill/catalog.d.ts +38 -3
- package/dist/commands/skill/catalog.js +125 -178
- package/dist/commands/skill/catalog.js.map +1 -1
- package/dist/commands/skill/generate.js +4 -4
- package/dist/commands/skill/generate.js.map +1 -1
- package/dist/commands/skill/helpers.js +4 -4
- package/dist/commands/skill/helpers.js.map +1 -1
- package/dist/commands/skill/install.js +1 -1
- package/dist/commands/skill/install.js.map +1 -1
- package/dist/commands/skill/manifest.js +13 -7
- package/dist/commands/skill/manifest.js.map +1 -1
- package/dist/commands/skill/marketplace.js +1 -1
- package/dist/commands/skill/marketplace.js.map +1 -1
- package/dist/commands/skill/resolve.js +5 -5
- package/dist/commands/skill/resolve.js.map +1 -1
- package/dist/commands/skill/validate.js +1 -1
- package/dist/commands/skill/validate.js.map +1 -1
- package/dist/commands/skill/web-discovery.d.ts +3 -19
- package/dist/commands/skill/web-discovery.js +15 -172
- package/dist/commands/skill/web-discovery.js.map +1 -1
- package/dist/config.js +1 -1
- package/dist/config.js.map +1 -1
- package/dist/core/registry.js +4 -6
- package/dist/core/registry.js.map +1 -1
- package/dist/lib/analytics.js +1 -1
- package/dist/lib/analytics.js.map +1 -1
- package/dist/lib/auto-profile.js +1 -1
- package/dist/lib/auto-profile.js.map +1 -1
- package/dist/lib/escape-regex.js +1 -1
- package/dist/lib/escape-regex.js.map +1 -1
- package/dist/lib/frontmatter.js +1 -1
- package/dist/lib/frontmatter.js.map +1 -1
- package/dist/lib/github-client.d.ts +19 -0
- package/dist/lib/github-client.js +68 -0
- package/dist/lib/github-client.js.map +1 -0
- package/dist/lib/project-detector.js +1 -1
- package/dist/lib/project-detector.js.map +1 -1
- package/dist/lib/registry-loader.d.ts +69 -0
- package/dist/lib/registry-loader.js +134 -0
- package/dist/lib/registry-loader.js.map +1 -0
- package/dist/lib/safe-external-path.js +1 -1
- package/dist/lib/safe-external-path.js.map +1 -1
- package/dist/lib/search-engine.js +1 -1
- package/dist/lib/search-engine.js.map +1 -1
- package/dist/lib/security-scanner.d.ts +16 -0
- package/dist/lib/security-scanner.js +44 -0
- package/dist/lib/security-scanner.js.map +1 -0
- package/dist/lib/session-registry.js +1 -1
- package/dist/lib/session-registry.js.map +1 -1
- package/dist/lib/skill-cache.js +3 -3
- package/dist/lib/skill-cache.js.map +1 -1
- package/dist/lib/skill-registry.js +1 -1
- package/dist/lib/skill-registry.js.map +1 -1
- package/dist/lib/skill-scanner.d.ts +59 -0
- package/dist/lib/skill-scanner.js +165 -0
- package/dist/lib/skill-scanner.js.map +1 -0
- package/dist/lib/skill-session.d.ts +37 -0
- package/dist/lib/skill-session.js +62 -0
- package/dist/lib/skill-session.js.map +1 -0
- package/dist/lib/stack-detector.js +1 -1
- package/dist/lib/stack-detector.js.map +1 -1
- package/dist/lib/text-utils.d.ts +14 -0
- package/dist/lib/text-utils.js +45 -0
- package/dist/lib/text-utils.js.map +1 -0
- package/dist/lib/token-estimator.js +1 -1
- package/dist/lib/token-estimator.js.map +1 -1
- package/dist/lib/trigger-matcher.d.ts +45 -0
- package/dist/lib/trigger-matcher.js +129 -0
- package/dist/lib/trigger-matcher.js.map +1 -0
- package/dist/lib/url-utils.d.ts +17 -0
- package/dist/lib/url-utils.js +45 -0
- package/dist/lib/url-utils.js.map +1 -0
- package/dist/lib/vault-fs.js +1 -1
- package/dist/lib/vault-fs.js.map +1 -1
- package/dist/mcp-server.js +19 -2
- package/dist/mcp-server.js.map +1 -1
- package/dist/setup/configure.js +1 -1
- package/dist/setup/configure.js.map +1 -1
- package/dist/setup/detect.js +1 -1
- package/dist/setup/detect.js.map +1 -1
- package/dist/setup/instructions.js +1 -1
- package/dist/setup/instructions.js.map +1 -1
- package/dist/setup/json-config.js +1 -1
- package/dist/setup/json-config.js.map +1 -1
- package/dist/setup/postinstall.js +1 -1
- package/dist/setup/postinstall.js.map +1 -1
- package/dist/setup/preuninstall.js +1 -1
- package/dist/setup/preuninstall.js.map +1 -1
- package/dist/setup/teardown.js +1 -1
- package/dist/setup/teardown.js.map +1 -1
- package/dist/setup/toml-config.js +1 -1
- package/dist/setup/toml-config.js.map +1 -1
- package/dist/setup/types.js +1 -1
- package/dist/setup/types.js.map +1 -1
- package/dist/test-helpers.js +1 -1
- package/dist/test-helpers.js.map +1 -1
- package/package.json +4 -4
- package/registry/index.json +1162 -0
- package/LICENSE-COMMERCIAL.md +0 -46
|
@@ -0,0 +1,1162 @@
|
|
|
1
|
+
{
|
|
2
|
+
"registry_version": "0.3.0",
|
|
3
|
+
"generated_at": "2026-03-25T00:00:00Z",
|
|
4
|
+
"sources": {
|
|
5
|
+
"ecc": {
|
|
6
|
+
"repo": "affaan-m/everything-claude-code",
|
|
7
|
+
"base_url": "https://raw.githubusercontent.com/affaan-m/everything-claude-code/main"
|
|
8
|
+
},
|
|
9
|
+
"superpowers": {
|
|
10
|
+
"repo": "obra/superpowers",
|
|
11
|
+
"base_url": "https://raw.githubusercontent.com/obra/superpowers/main"
|
|
12
|
+
},
|
|
13
|
+
"gstack": {
|
|
14
|
+
"repo": "garrytan/gstack",
|
|
15
|
+
"base_url": "https://raw.githubusercontent.com/garrytan/gstack/main"
|
|
16
|
+
},
|
|
17
|
+
"anthropics": {
|
|
18
|
+
"repo": "anthropics/skills",
|
|
19
|
+
"base_url": "https://raw.githubusercontent.com/anthropics/skills/main"
|
|
20
|
+
},
|
|
21
|
+
"design-skillstack": {
|
|
22
|
+
"repo": "freshtechbro/claudedesignskills",
|
|
23
|
+
"base_url": "https://raw.githubusercontent.com/freshtechbro/claudedesignskills/main"
|
|
24
|
+
},
|
|
25
|
+
"taste-skill": {
|
|
26
|
+
"repo": "Leonxlnx/taste-skill",
|
|
27
|
+
"base_url": "https://raw.githubusercontent.com/Leonxlnx/taste-skill/main"
|
|
28
|
+
},
|
|
29
|
+
"bencium": {
|
|
30
|
+
"repo": "bencium/bencium-claude-code-design-skill",
|
|
31
|
+
"base_url": "https://raw.githubusercontent.com/bencium/bencium-claude-code-design-skill/main"
|
|
32
|
+
},
|
|
33
|
+
"frontend-design-pro": {
|
|
34
|
+
"repo": "claudekit/frontend-design-pro-demo",
|
|
35
|
+
"base_url": "https://raw.githubusercontent.com/claudekit/frontend-design-pro-demo/main"
|
|
36
|
+
},
|
|
37
|
+
"ui-ux-pro-max": {
|
|
38
|
+
"repo": "nextlevelbuilder/ui-ux-pro-max-skill",
|
|
39
|
+
"base_url": "https://raw.githubusercontent.com/nextlevelbuilder/ui-ux-pro-max-skill/main"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"domains": [
|
|
43
|
+
{
|
|
44
|
+
"id": "tdd",
|
|
45
|
+
"name": "Test-Driven Development",
|
|
46
|
+
"description": "TDD workflow and testing patterns",
|
|
47
|
+
"priority": "core",
|
|
48
|
+
"triggers": ["test", "tdd", "spec", "coverage", "unit test", "assert", "mock", "fixture", "testing", "test first", "red green refactor"]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "planning",
|
|
52
|
+
"name": "Planning",
|
|
53
|
+
"description": "Implementation planning and review",
|
|
54
|
+
"priority": "core",
|
|
55
|
+
"triggers": ["plan", "architect", "design system", "implementation plan", "roadmap", "strategy", "scope", "requirements"]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"id": "code-review",
|
|
59
|
+
"name": "Code Review",
|
|
60
|
+
"description": "Reviewing and receiving code feedback",
|
|
61
|
+
"priority": "core",
|
|
62
|
+
"triggers": ["review", "code review", "pr review", "pull request", "feedback", "critique", "refactor review"]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "debugging",
|
|
66
|
+
"name": "Debugging",
|
|
67
|
+
"description": "Systematic debugging and investigation",
|
|
68
|
+
"priority": "core",
|
|
69
|
+
"triggers": ["debug", "investigate", "fix bug", "troubleshoot", "error", "broken", "crash", "stack trace", "exception"]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "verification",
|
|
73
|
+
"name": "Verification",
|
|
74
|
+
"description": "Pre-completion verification checks",
|
|
75
|
+
"priority": "core",
|
|
76
|
+
"triggers": ["verify", "validate", "check build", "lint", "type check", "pre-commit", "quality gate"]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"id": "brainstorming",
|
|
80
|
+
"name": "Brainstorming",
|
|
81
|
+
"description": "Ideation and exploratory thinking",
|
|
82
|
+
"priority": "core",
|
|
83
|
+
"triggers": ["brainstorm", "ideate", "explore ideas", "think through", "what if", "creative", "options", "alternatives"]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"id": "agent-orchestration",
|
|
87
|
+
"name": "Agent Orchestration",
|
|
88
|
+
"description": "Multi-agent loops and pipelines",
|
|
89
|
+
"priority": "core",
|
|
90
|
+
"triggers": ["agent", "orchestrate", "subagent", "parallel agent", "multi agent", "pipeline", "fan out", "dispatch"]
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "security",
|
|
94
|
+
"name": "Security",
|
|
95
|
+
"description": "Security review, scanning, guardrails",
|
|
96
|
+
"priority": "core",
|
|
97
|
+
"triggers": ["security", "vulnerability", "owasp", "auth review", "pentest", "hardening", "xss", "injection", "csrf"]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "shipping",
|
|
101
|
+
"name": "Shipping",
|
|
102
|
+
"description": "Deployment and release workflow",
|
|
103
|
+
"priority": "core",
|
|
104
|
+
"triggers": ["deploy", "ship", "release", "ci cd", "rollback", "production", "launch", "publish"]
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"id": "frontend-design",
|
|
108
|
+
"name": "Frontend Design",
|
|
109
|
+
"description": "UI/UX design and component systems",
|
|
110
|
+
"priority": "core",
|
|
111
|
+
"triggers": ["frontend", "ui", "ux", "component", "design page", "css", "tailwind", "layout", "responsive", "web design", "user interface", "user experience", "design system", "figma", "wireframe", "prototype"]
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"id": "git-workflow",
|
|
115
|
+
"name": "Git Workflow",
|
|
116
|
+
"description": "Branching, worktrees, merge workflow",
|
|
117
|
+
"priority": "core",
|
|
118
|
+
"triggers": ["git", "branch", "worktree", "merge", "rebase", "cherry pick", "stash", "commit strategy"]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id": "go",
|
|
122
|
+
"name": "Go",
|
|
123
|
+
"description": "Go idioms, patterns, testing, review",
|
|
124
|
+
"priority": "extended",
|
|
125
|
+
"triggers": ["golang", "go test", "goroutine", "go mod", "go func", "go package", "go interface", "go channel"]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"id": "python",
|
|
129
|
+
"name": "Python",
|
|
130
|
+
"description": "Python idioms, patterns, testing, review",
|
|
131
|
+
"priority": "extended",
|
|
132
|
+
"triggers": ["python", "pytest", "pip", "django", "flask", "fastapi", "pep8", "virtualenv", "poetry"]
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"id": "django",
|
|
136
|
+
"name": "Django",
|
|
137
|
+
"description": "Django framework patterns and security",
|
|
138
|
+
"priority": "extended",
|
|
139
|
+
"triggers": ["django", "drf", "django rest", "django model", "django view", "manage.py", "django admin"]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"id": "spring-boot",
|
|
143
|
+
"name": "Spring Boot",
|
|
144
|
+
"description": "Spring Boot patterns and testing",
|
|
145
|
+
"priority": "extended",
|
|
146
|
+
"triggers": ["spring", "spring boot", "java", "jpa", "hibernate", "maven", "gradle", "spring security"]
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"id": "swift",
|
|
150
|
+
"name": "Swift",
|
|
151
|
+
"description": "Swift/iOS/SwiftUI patterns",
|
|
152
|
+
"priority": "extended",
|
|
153
|
+
"triggers": ["swift", "swiftui", "ios", "xcode", "uikit", "cocoapods", "spm", "apple", "macos"]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "cpp",
|
|
157
|
+
"name": "C++",
|
|
158
|
+
"description": "C++ patterns and testing",
|
|
159
|
+
"priority": "extended",
|
|
160
|
+
"triggers": ["c++", "cpp", "cmake", "clang", "gcc", "stl", "header file", "template"]
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"id": "java",
|
|
164
|
+
"name": "Java",
|
|
165
|
+
"description": "Java patterns and standards",
|
|
166
|
+
"priority": "extended",
|
|
167
|
+
"triggers": ["java", "jvm", "maven", "gradle", "spring", "junit", "jackson"]
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"id": "database",
|
|
171
|
+
"name": "Database",
|
|
172
|
+
"description": "Database patterns and migrations",
|
|
173
|
+
"priority": "extended",
|
|
174
|
+
"triggers": ["database", "sql", "schema", "migration", "postgres", "mysql", "supabase", "query", "index", "orm"]
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"id": "docker",
|
|
178
|
+
"name": "Docker",
|
|
179
|
+
"description": "Docker and Compose patterns",
|
|
180
|
+
"priority": "extended",
|
|
181
|
+
"triggers": ["docker", "container", "compose", "dockerfile", "k8s", "kubernetes", "image", "registry"]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"id": "api-design",
|
|
185
|
+
"name": "API Design",
|
|
186
|
+
"description": "REST API design patterns",
|
|
187
|
+
"priority": "extended",
|
|
188
|
+
"triggers": ["api design", "rest api", "endpoint", "pagination", "rate limit", "openapi", "swagger", "graphql"]
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"id": "frontend-patterns",
|
|
192
|
+
"name": "Frontend Patterns",
|
|
193
|
+
"description": "React/Next.js patterns",
|
|
194
|
+
"priority": "extended",
|
|
195
|
+
"triggers": ["react", "nextjs", "next.js", "state management", "hooks", "redux", "zustand", "tanstack"]
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"id": "backend-patterns",
|
|
199
|
+
"name": "Backend Patterns",
|
|
200
|
+
"description": "Node/Express patterns",
|
|
201
|
+
"priority": "extended",
|
|
202
|
+
"triggers": ["express", "nodejs", "node.js", "server pattern", "middleware", "backend", "fastify"]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": "coding-standards",
|
|
206
|
+
"name": "Coding Standards",
|
|
207
|
+
"description": "Universal coding standards",
|
|
208
|
+
"priority": "extended",
|
|
209
|
+
"triggers": ["coding standard", "style guide", "convention", "best practice", "linter", "formatter"]
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": "content-business",
|
|
213
|
+
"name": "Content & Business",
|
|
214
|
+
"description": "Writing, marketing, investor materials",
|
|
215
|
+
"priority": "reference",
|
|
216
|
+
"triggers": ["article", "blog post", "content", "newsletter", "copywriting", "market research", "competitor", "investor", "pitch deck", "fundraising", "outreach", "cold email", "linkedin", "twitter", "social media", "marketing"]
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"id": "3d-animation",
|
|
220
|
+
"name": "3D Animation",
|
|
221
|
+
"description": "WebGL, Three.js, animation workflows",
|
|
222
|
+
"priority": "reference",
|
|
223
|
+
"triggers": ["threejs", "three.js", "webgl", "3d", "animation", "gsap", "framer", "babylon", "r3f", "react three fiber"]
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": "agent-engineering",
|
|
227
|
+
"name": "Agent Engineering",
|
|
228
|
+
"description": "Agent harness, eval, cost optimization",
|
|
229
|
+
"priority": "reference",
|
|
230
|
+
"triggers": ["agent harness", "agent eval", "cost optimization", "agent loop", "agent engineer", "eval pipeline", "llm cost", "model routing"]
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"id": "meta",
|
|
234
|
+
"name": "Meta/Tooling",
|
|
235
|
+
"description": "Skill management, compaction, learning",
|
|
236
|
+
"priority": "reference",
|
|
237
|
+
"triggers": ["skill manage", "compaction", "skill install", "learning capture", "skill create", "knowledge base"]
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"skills": [
|
|
241
|
+
{
|
|
242
|
+
"id": "ecc/tdd-workflow",
|
|
243
|
+
"name": "TDD Workflow",
|
|
244
|
+
"source": "ecc",
|
|
245
|
+
"path": "skills/tdd-workflow/SKILL.md",
|
|
246
|
+
"domains": ["tdd"],
|
|
247
|
+
"description": "Full TDD red-green-refactor loop with 80%+ coverage",
|
|
248
|
+
"triggers": ["red green refactor", "test first", "coverage threshold", "write test before code"],
|
|
249
|
+
"version": "2026-03-25"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "ecc/golang-testing",
|
|
253
|
+
"name": "Go Testing",
|
|
254
|
+
"source": "ecc",
|
|
255
|
+
"path": "skills/golang-testing/SKILL.md",
|
|
256
|
+
"domains": ["tdd", "go"],
|
|
257
|
+
"description": "Go table-driven tests, benchmarks, fuzzing, TDD",
|
|
258
|
+
"triggers": ["go test", "table driven", "benchmark", "fuzz", "go coverage"],
|
|
259
|
+
"version": "2026-03-25"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "ecc/python-testing",
|
|
263
|
+
"name": "Python Testing",
|
|
264
|
+
"source": "ecc",
|
|
265
|
+
"path": "skills/python-testing/SKILL.md",
|
|
266
|
+
"domains": ["tdd", "python"],
|
|
267
|
+
"description": "Python pytest, fixtures, mocking, parametrize",
|
|
268
|
+
"triggers": ["pytest", "fixture", "parametrize", "mock", "python coverage"],
|
|
269
|
+
"version": "2026-03-25"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"id": "ecc/e2e-testing",
|
|
273
|
+
"name": "E2E Testing",
|
|
274
|
+
"source": "ecc",
|
|
275
|
+
"path": "skills/e2e-testing/SKILL.md",
|
|
276
|
+
"domains": ["tdd"],
|
|
277
|
+
"description": "Playwright E2E patterns and CI/CD integration",
|
|
278
|
+
"triggers": ["playwright", "e2e", "end to end", "browser test", "cypress"],
|
|
279
|
+
"version": "2026-03-25"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"id": "ecc/plan",
|
|
283
|
+
"name": "/plan",
|
|
284
|
+
"source": "ecc",
|
|
285
|
+
"path": "commands/plan.md",
|
|
286
|
+
"domains": ["planning"],
|
|
287
|
+
"description": "Implementation planning slash command",
|
|
288
|
+
"triggers": ["implementation plan", "step by step", "task breakdown"],
|
|
289
|
+
"version": "2026-03-25"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"id": "ecc/go-review",
|
|
293
|
+
"name": "Go Review",
|
|
294
|
+
"source": "ecc",
|
|
295
|
+
"path": "commands/go-review.md",
|
|
296
|
+
"domains": ["code-review", "go"],
|
|
297
|
+
"description": "Go code review for idioms and concurrency",
|
|
298
|
+
"triggers": ["go review", "goroutine review", "go idiom"],
|
|
299
|
+
"version": "2026-03-25"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"id": "ecc/python-review",
|
|
303
|
+
"name": "Python Review",
|
|
304
|
+
"source": "ecc",
|
|
305
|
+
"path": "skills/python-review/SKILL.md",
|
|
306
|
+
"domains": ["code-review", "python"],
|
|
307
|
+
"description": "Python PEP 8, type hints, security review",
|
|
308
|
+
"triggers": ["python review", "pep8 review", "type hint"],
|
|
309
|
+
"version": "2026-03-25"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"id": "ecc/verification-loop",
|
|
313
|
+
"name": "Verification Loop",
|
|
314
|
+
"source": "ecc",
|
|
315
|
+
"path": "skills/verification-loop/SKILL.md",
|
|
316
|
+
"domains": ["verification"],
|
|
317
|
+
"description": "Build/types/lint/test verification gates",
|
|
318
|
+
"triggers": ["verification gate", "build check", "pre-merge"],
|
|
319
|
+
"version": "2026-03-25"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"id": "ecc/autonomous-loops",
|
|
323
|
+
"name": "Autonomous Loops",
|
|
324
|
+
"source": "ecc",
|
|
325
|
+
"path": "skills/autonomous-loops/SKILL.md",
|
|
326
|
+
"domains": ["agent-orchestration"],
|
|
327
|
+
"description": "Autonomous agent execution patterns",
|
|
328
|
+
"triggers": ["autonomous loop", "self-driving agent", "continuous execution"],
|
|
329
|
+
"version": "2026-03-25"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"id": "ecc/ralphinho-rfc-pipeline",
|
|
333
|
+
"name": "RFC Pipeline",
|
|
334
|
+
"source": "ecc",
|
|
335
|
+
"path": "skills/ralphinho-rfc-pipeline/SKILL.md",
|
|
336
|
+
"domains": ["agent-orchestration"],
|
|
337
|
+
"description": "RFC-driven multi-agent DAG execution",
|
|
338
|
+
"triggers": ["rfc pipeline", "dag execution", "merge queue"],
|
|
339
|
+
"version": "2026-03-25"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"id": "ecc/security-review",
|
|
343
|
+
"name": "Security Review",
|
|
344
|
+
"source": "ecc",
|
|
345
|
+
"path": "skills/security-review/SKILL.md",
|
|
346
|
+
"domains": ["security"],
|
|
347
|
+
"description": "Auth, input validation, secrets, OWASP checklist",
|
|
348
|
+
"triggers": ["security checklist", "owasp", "auth review", "input validation"],
|
|
349
|
+
"version": "2026-03-25"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"id": "ecc/security-scan",
|
|
353
|
+
"name": "Security Scan",
|
|
354
|
+
"source": "ecc",
|
|
355
|
+
"path": "skills/security-scan/SKILL.md",
|
|
356
|
+
"domains": ["security"],
|
|
357
|
+
"description": "AgentShield config scanning for Claude Code",
|
|
358
|
+
"triggers": ["security scan", "agentshield", "config scan"],
|
|
359
|
+
"version": "2026-03-25"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"id": "ecc/deployment-patterns",
|
|
363
|
+
"name": "Deployment Patterns",
|
|
364
|
+
"source": "ecc",
|
|
365
|
+
"path": "skills/deployment-patterns/SKILL.md",
|
|
366
|
+
"domains": ["shipping"],
|
|
367
|
+
"description": "CI/CD, Docker, health checks, rollbacks",
|
|
368
|
+
"triggers": ["deployment", "ci cd pipeline", "health check", "rollback strategy"],
|
|
369
|
+
"version": "2026-03-25"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"id": "ecc/golang-patterns",
|
|
373
|
+
"name": "Go Patterns",
|
|
374
|
+
"source": "ecc",
|
|
375
|
+
"path": "skills/golang-patterns/SKILL.md",
|
|
376
|
+
"domains": ["go"],
|
|
377
|
+
"description": "Idiomatic Go patterns and conventions",
|
|
378
|
+
"triggers": ["go pattern", "go idiom", "go convention", "go best practice"],
|
|
379
|
+
"version": "2026-03-25"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"id": "ecc/python-patterns",
|
|
383
|
+
"name": "Python Patterns",
|
|
384
|
+
"source": "ecc",
|
|
385
|
+
"path": "skills/python-patterns/SKILL.md",
|
|
386
|
+
"domains": ["python"],
|
|
387
|
+
"description": "Pythonic idioms and PEP 8 standards",
|
|
388
|
+
"triggers": ["python pattern", "pythonic", "pep8"],
|
|
389
|
+
"version": "2026-03-25"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"id": "ecc/django-patterns",
|
|
393
|
+
"name": "Django Patterns",
|
|
394
|
+
"source": "ecc",
|
|
395
|
+
"path": "skills/django-patterns/SKILL.md",
|
|
396
|
+
"domains": ["django"],
|
|
397
|
+
"description": "Django architecture, DRF, ORM patterns",
|
|
398
|
+
"triggers": ["django architecture", "drf pattern", "orm pattern", "django model"],
|
|
399
|
+
"version": "2026-03-25"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"id": "ecc/django-security",
|
|
403
|
+
"name": "Django Security",
|
|
404
|
+
"source": "ecc",
|
|
405
|
+
"path": "skills/django-security/SKILL.md",
|
|
406
|
+
"domains": ["django", "security"],
|
|
407
|
+
"description": "Django CSRF, XSS, SQL injection prevention",
|
|
408
|
+
"triggers": ["django csrf", "django xss", "django injection"],
|
|
409
|
+
"version": "2026-03-25"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"id": "ecc/django-tdd",
|
|
413
|
+
"name": "Django TDD",
|
|
414
|
+
"source": "ecc",
|
|
415
|
+
"path": "skills/django-tdd/SKILL.md",
|
|
416
|
+
"domains": ["django", "tdd"],
|
|
417
|
+
"description": "Django testing with pytest-django",
|
|
418
|
+
"triggers": ["django test", "pytest-django", "django fixture"],
|
|
419
|
+
"version": "2026-03-25"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"id": "ecc/django-verification",
|
|
423
|
+
"name": "Django Verification",
|
|
424
|
+
"source": "ecc",
|
|
425
|
+
"path": "skills/django-verification/SKILL.md",
|
|
426
|
+
"domains": ["django", "verification"],
|
|
427
|
+
"description": "Django verification loop",
|
|
428
|
+
"triggers": ["django verify", "django check", "django lint"],
|
|
429
|
+
"version": "2026-03-25"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"id": "ecc/springboot-patterns",
|
|
433
|
+
"name": "Spring Boot Patterns",
|
|
434
|
+
"source": "ecc",
|
|
435
|
+
"path": "skills/springboot-patterns/SKILL.md",
|
|
436
|
+
"domains": ["spring-boot"],
|
|
437
|
+
"description": "Spring Boot architecture and caching",
|
|
438
|
+
"triggers": ["spring boot pattern", "spring architecture", "spring cache"],
|
|
439
|
+
"version": "2026-03-25"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"id": "ecc/springboot-security",
|
|
443
|
+
"name": "Spring Boot Security",
|
|
444
|
+
"source": "ecc",
|
|
445
|
+
"path": "skills/springboot-security/SKILL.md",
|
|
446
|
+
"domains": ["spring-boot", "security"],
|
|
447
|
+
"description": "Spring Security authn/authz",
|
|
448
|
+
"triggers": ["spring security", "spring auth", "spring oauth"],
|
|
449
|
+
"version": "2026-03-25"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"id": "ecc/springboot-tdd",
|
|
453
|
+
"name": "Spring Boot TDD",
|
|
454
|
+
"source": "ecc",
|
|
455
|
+
"path": "skills/springboot-tdd/SKILL.md",
|
|
456
|
+
"domains": ["spring-boot", "tdd"],
|
|
457
|
+
"description": "Spring Boot JUnit 5, Mockito, Testcontainers",
|
|
458
|
+
"triggers": ["spring test", "junit5", "mockito", "testcontainers"],
|
|
459
|
+
"version": "2026-03-25"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"id": "ecc/springboot-verification",
|
|
463
|
+
"name": "Spring Boot Verification",
|
|
464
|
+
"source": "ecc",
|
|
465
|
+
"path": "skills/springboot-verification/SKILL.md",
|
|
466
|
+
"domains": ["spring-boot", "verification"],
|
|
467
|
+
"description": "Spring Boot verification loop",
|
|
468
|
+
"triggers": ["spring verify", "spring build check"],
|
|
469
|
+
"version": "2026-03-25"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"id": "ecc/swiftui-patterns",
|
|
473
|
+
"name": "SwiftUI Patterns",
|
|
474
|
+
"source": "ecc",
|
|
475
|
+
"path": "skills/swiftui-patterns/SKILL.md",
|
|
476
|
+
"domains": ["swift"],
|
|
477
|
+
"description": "SwiftUI state management, navigation, performance",
|
|
478
|
+
"triggers": ["swiftui pattern", "swiftui state", "swiftui navigation"],
|
|
479
|
+
"version": "2026-03-25"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"id": "ecc/swift-concurrency",
|
|
483
|
+
"name": "Swift Concurrency",
|
|
484
|
+
"source": "ecc",
|
|
485
|
+
"path": "skills/swift-concurrency-6-2/SKILL.md",
|
|
486
|
+
"domains": ["swift"],
|
|
487
|
+
"description": "Swift 6.2 concurrency model",
|
|
488
|
+
"triggers": ["swift concurrency", "async await swift", "swift actor"],
|
|
489
|
+
"version": "2026-03-25"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"id": "ecc/swift-actor-persistence",
|
|
493
|
+
"name": "Swift Actor Persistence",
|
|
494
|
+
"source": "ecc",
|
|
495
|
+
"path": "skills/swift-actor-persistence/SKILL.md",
|
|
496
|
+
"domains": ["swift"],
|
|
497
|
+
"description": "Thread-safe data persistence with actors",
|
|
498
|
+
"triggers": ["swift actor", "swift persistence", "thread safe storage"],
|
|
499
|
+
"version": "2026-03-25"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"id": "ecc/swift-protocol-di",
|
|
503
|
+
"name": "Swift Protocol DI",
|
|
504
|
+
"source": "ecc",
|
|
505
|
+
"path": "skills/swift-protocol-di-testing/SKILL.md",
|
|
506
|
+
"domains": ["swift"],
|
|
507
|
+
"description": "Protocol-based dependency injection for testing",
|
|
508
|
+
"triggers": ["swift protocol", "swift dependency injection", "swift di"],
|
|
509
|
+
"version": "2026-03-25"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"id": "ecc/cpp-coding-standards",
|
|
513
|
+
"name": "C++ Standards",
|
|
514
|
+
"source": "ecc",
|
|
515
|
+
"path": "skills/cpp-coding-standards/SKILL.md",
|
|
516
|
+
"domains": ["cpp"],
|
|
517
|
+
"description": "C++ Core Guidelines enforcement",
|
|
518
|
+
"triggers": ["cpp standard", "c++ guideline", "core guidelines"],
|
|
519
|
+
"version": "2026-03-25"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"id": "ecc/cpp-testing",
|
|
523
|
+
"name": "C++ Testing",
|
|
524
|
+
"source": "ecc",
|
|
525
|
+
"path": "skills/cpp-testing/SKILL.md",
|
|
526
|
+
"domains": ["cpp", "tdd"],
|
|
527
|
+
"description": "GoogleTest/CTest patterns",
|
|
528
|
+
"triggers": ["gtest", "googletest", "ctest", "cpp test"],
|
|
529
|
+
"version": "2026-03-25"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"id": "ecc/java-coding-standards",
|
|
533
|
+
"name": "Java Standards",
|
|
534
|
+
"source": "ecc",
|
|
535
|
+
"path": "skills/java-coding-standards/SKILL.md",
|
|
536
|
+
"domains": ["java"],
|
|
537
|
+
"description": "Java Spring Boot coding standards",
|
|
538
|
+
"triggers": ["java standard", "java convention", "java naming"],
|
|
539
|
+
"version": "2026-03-25"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"id": "ecc/jpa-patterns",
|
|
543
|
+
"name": "JPA Patterns",
|
|
544
|
+
"source": "ecc",
|
|
545
|
+
"path": "skills/jpa-patterns/SKILL.md",
|
|
546
|
+
"domains": ["java", "database"],
|
|
547
|
+
"description": "JPA/Hibernate entity and query patterns",
|
|
548
|
+
"triggers": ["jpa", "hibernate", "entity pattern", "jpql"],
|
|
549
|
+
"version": "2026-03-25"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"id": "ecc/api-design",
|
|
553
|
+
"name": "API Design",
|
|
554
|
+
"source": "ecc",
|
|
555
|
+
"path": "skills/api-design/SKILL.md",
|
|
556
|
+
"domains": ["api-design"],
|
|
557
|
+
"description": "REST API patterns, pagination, versioning",
|
|
558
|
+
"triggers": ["rest pattern", "api pagination", "api versioning"],
|
|
559
|
+
"version": "2026-03-25"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"id": "ecc/backend-patterns",
|
|
563
|
+
"name": "Backend Patterns",
|
|
564
|
+
"source": "ecc",
|
|
565
|
+
"path": "skills/backend-patterns/SKILL.md",
|
|
566
|
+
"domains": ["backend-patterns"],
|
|
567
|
+
"description": "Node/Express/Next.js server patterns",
|
|
568
|
+
"triggers": ["express pattern", "node pattern", "backend architecture"],
|
|
569
|
+
"version": "2026-03-25"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"id": "ecc/frontend-patterns",
|
|
573
|
+
"name": "Frontend Patterns",
|
|
574
|
+
"source": "ecc",
|
|
575
|
+
"path": "skills/frontend-patterns/SKILL.md",
|
|
576
|
+
"domains": ["frontend-patterns"],
|
|
577
|
+
"description": "React/Next.js state and performance",
|
|
578
|
+
"triggers": ["react pattern", "nextjs pattern", "state pattern"],
|
|
579
|
+
"version": "2026-03-25"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"id": "ecc/coding-standards",
|
|
583
|
+
"name": "Coding Standards",
|
|
584
|
+
"source": "ecc",
|
|
585
|
+
"path": "skills/coding-standards/SKILL.md",
|
|
586
|
+
"domains": ["coding-standards"],
|
|
587
|
+
"description": "Universal TS/JS/React standards",
|
|
588
|
+
"triggers": ["typescript standard", "javascript convention", "ts best practice"],
|
|
589
|
+
"version": "2026-03-25"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"id": "ecc/docker-patterns",
|
|
593
|
+
"name": "Docker Patterns",
|
|
594
|
+
"source": "ecc",
|
|
595
|
+
"path": "skills/docker-patterns/SKILL.md",
|
|
596
|
+
"domains": ["docker"],
|
|
597
|
+
"description": "Docker Compose, container security, networking",
|
|
598
|
+
"triggers": ["docker compose", "container pattern", "docker network"],
|
|
599
|
+
"version": "2026-03-25"
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"id": "ecc/postgres-patterns",
|
|
603
|
+
"name": "Postgres Patterns",
|
|
604
|
+
"source": "ecc",
|
|
605
|
+
"path": "skills/postgres-patterns/SKILL.md",
|
|
606
|
+
"domains": ["database"],
|
|
607
|
+
"description": "PostgreSQL query optimization and schema design",
|
|
608
|
+
"triggers": ["postgres", "postgresql", "pg query", "schema design"],
|
|
609
|
+
"version": "2026-03-25"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"id": "ecc/database-migrations",
|
|
613
|
+
"name": "Database Migrations",
|
|
614
|
+
"source": "ecc",
|
|
615
|
+
"path": "skills/database-migrations/SKILL.md",
|
|
616
|
+
"domains": ["database"],
|
|
617
|
+
"description": "Zero-downtime schema migrations",
|
|
618
|
+
"triggers": ["migration", "schema change", "zero downtime", "migrate"],
|
|
619
|
+
"version": "2026-03-25"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"id": "ecc/clickhouse",
|
|
623
|
+
"name": "ClickHouse",
|
|
624
|
+
"source": "ecc",
|
|
625
|
+
"path": "skills/clickhouse-io/SKILL.md",
|
|
626
|
+
"domains": ["database"],
|
|
627
|
+
"description": "ClickHouse analytics patterns",
|
|
628
|
+
"triggers": ["clickhouse", "olap", "analytics database", "columnar"],
|
|
629
|
+
"version": "2026-03-25"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"id": "ecc/article-writing",
|
|
633
|
+
"name": "Article Writing",
|
|
634
|
+
"source": "ecc",
|
|
635
|
+
"path": "skills/article-writing/SKILL.md",
|
|
636
|
+
"domains": ["content-business"],
|
|
637
|
+
"description": "Long-form content in distinctive voice",
|
|
638
|
+
"triggers": ["article", "blog post", "long form", "writing guide"],
|
|
639
|
+
"version": "2026-03-25"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"id": "ecc/content-engine",
|
|
643
|
+
"name": "Content Engine",
|
|
644
|
+
"source": "ecc",
|
|
645
|
+
"path": "skills/content-engine/SKILL.md",
|
|
646
|
+
"domains": ["content-business"],
|
|
647
|
+
"description": "Multi-platform content systems",
|
|
648
|
+
"triggers": ["content system", "multi platform", "content calendar", "repurpose"],
|
|
649
|
+
"version": "2026-03-25"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"id": "ecc/investor-materials",
|
|
653
|
+
"name": "Investor Materials",
|
|
654
|
+
"source": "ecc",
|
|
655
|
+
"path": "skills/investor-materials/SKILL.md",
|
|
656
|
+
"domains": ["content-business"],
|
|
657
|
+
"description": "Pitch decks, memos, financial models",
|
|
658
|
+
"triggers": ["pitch deck", "investor memo", "financial model", "fundraising"],
|
|
659
|
+
"version": "2026-03-25"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"id": "ecc/investor-outreach",
|
|
663
|
+
"name": "Investor Outreach",
|
|
664
|
+
"source": "ecc",
|
|
665
|
+
"path": "skills/investor-outreach/SKILL.md",
|
|
666
|
+
"domains": ["content-business"],
|
|
667
|
+
"description": "Cold emails, intros, follow-ups",
|
|
668
|
+
"triggers": ["cold email", "investor intro", "follow up", "outreach"],
|
|
669
|
+
"version": "2026-03-25"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"id": "ecc/market-research",
|
|
673
|
+
"name": "Market Research",
|
|
674
|
+
"source": "ecc",
|
|
675
|
+
"path": "skills/market-research/SKILL.md",
|
|
676
|
+
"domains": ["content-business"],
|
|
677
|
+
"description": "Competitive analysis and due diligence",
|
|
678
|
+
"triggers": ["market research", "competitive analysis", "due diligence", "market size"],
|
|
679
|
+
"version": "2026-03-25"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"id": "ecc/frontend-slides",
|
|
683
|
+
"name": "Frontend Slides",
|
|
684
|
+
"source": "ecc",
|
|
685
|
+
"path": "skills/frontend-slides/SKILL.md",
|
|
686
|
+
"domains": ["content-business"],
|
|
687
|
+
"description": "Animation-rich HTML presentations",
|
|
688
|
+
"triggers": ["presentation", "slides", "html slides", "pitch presentation"],
|
|
689
|
+
"version": "2026-03-25"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"id": "ecc/agentic-engineering",
|
|
693
|
+
"name": "Agentic Engineering",
|
|
694
|
+
"source": "ecc",
|
|
695
|
+
"path": "skills/agentic-engineering/SKILL.md",
|
|
696
|
+
"domains": ["agent-engineering"],
|
|
697
|
+
"description": "Eval-first agent execution",
|
|
698
|
+
"triggers": ["eval first", "agentic", "agent evaluation"],
|
|
699
|
+
"version": "2026-03-25"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"id": "ecc/agent-harness",
|
|
703
|
+
"name": "Agent Harness",
|
|
704
|
+
"source": "ecc",
|
|
705
|
+
"path": "skills/agent-harness-construction/SKILL.md",
|
|
706
|
+
"domains": ["agent-engineering"],
|
|
707
|
+
"description": "Agent action space design",
|
|
708
|
+
"triggers": ["action space", "tool definition", "agent harness"],
|
|
709
|
+
"version": "2026-03-25"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"id": "ecc/eval-harness",
|
|
713
|
+
"name": "Eval Harness",
|
|
714
|
+
"source": "ecc",
|
|
715
|
+
"path": "skills/eval-harness/SKILL.md",
|
|
716
|
+
"domains": ["agent-engineering"],
|
|
717
|
+
"description": "Eval-driven development framework",
|
|
718
|
+
"triggers": ["eval harness", "eval driven", "evaluation framework"],
|
|
719
|
+
"version": "2026-03-25"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"id": "ecc/cost-aware-llm",
|
|
723
|
+
"name": "Cost-Aware LLM",
|
|
724
|
+
"source": "ecc",
|
|
725
|
+
"path": "skills/cost-aware-llm-pipeline/SKILL.md",
|
|
726
|
+
"domains": ["agent-engineering"],
|
|
727
|
+
"description": "LLM cost optimization and routing",
|
|
728
|
+
"triggers": ["llm cost", "model routing", "budget tracking", "cost optimize"],
|
|
729
|
+
"version": "2026-03-25"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"id": "ecc/continuous-agent-loop",
|
|
733
|
+
"name": "Continuous Agent Loop",
|
|
734
|
+
"source": "ecc",
|
|
735
|
+
"path": "skills/continuous-agent-loop/SKILL.md",
|
|
736
|
+
"domains": ["agent-orchestration"],
|
|
737
|
+
"description": "Quality gates and recovery controls",
|
|
738
|
+
"triggers": ["continuous loop", "quality gate", "recovery control"],
|
|
739
|
+
"version": "2026-03-25"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"id": "ecc/strategic-compact",
|
|
743
|
+
"name": "Strategic Compact",
|
|
744
|
+
"source": "ecc",
|
|
745
|
+
"path": "skills/strategic-compact/SKILL.md",
|
|
746
|
+
"domains": ["meta"],
|
|
747
|
+
"description": "Manual context compaction at logical intervals",
|
|
748
|
+
"triggers": ["compaction", "context window", "compact context"],
|
|
749
|
+
"version": "2026-03-25"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"id": "ecc/continuous-learning",
|
|
753
|
+
"name": "Continuous Learning",
|
|
754
|
+
"source": "ecc",
|
|
755
|
+
"path": "skills/continuous-learning/SKILL.md",
|
|
756
|
+
"domains": ["meta"],
|
|
757
|
+
"description": "Extract reusable patterns from sessions",
|
|
758
|
+
"triggers": ["learning capture", "pattern extract", "session learning"],
|
|
759
|
+
"version": "2026-03-25"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"id": "ecc/continuous-learning-v2",
|
|
763
|
+
"name": "Continuous Learning v2",
|
|
764
|
+
"source": "ecc",
|
|
765
|
+
"path": "skills/continuous-learning-v2/SKILL.md",
|
|
766
|
+
"domains": ["meta"],
|
|
767
|
+
"description": "Instinct-based learning with confidence scoring",
|
|
768
|
+
"triggers": ["instinct", "confidence scoring", "learning v2"],
|
|
769
|
+
"version": "2026-03-25"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"id": "ecc/search-first",
|
|
773
|
+
"name": "Search First",
|
|
774
|
+
"source": "ecc",
|
|
775
|
+
"path": "skills/search-first/SKILL.md",
|
|
776
|
+
"domains": ["meta"],
|
|
777
|
+
"description": "Research-before-coding workflow",
|
|
778
|
+
"triggers": ["search first", "research before coding", "existing solution"],
|
|
779
|
+
"version": "2026-03-25"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"id": "superpowers/test-driven-development",
|
|
783
|
+
"name": "Test-Driven Development",
|
|
784
|
+
"source": "superpowers",
|
|
785
|
+
"path": "skills/test-driven-development/SKILL.md",
|
|
786
|
+
"domains": ["tdd"],
|
|
787
|
+
"description": "Superpowers TDD methodology",
|
|
788
|
+
"triggers": ["test driven", "superpowers tdd", "write tests first"],
|
|
789
|
+
"version": "2026-03-25"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"id": "superpowers/writing-plans",
|
|
793
|
+
"name": "Writing Plans",
|
|
794
|
+
"source": "superpowers",
|
|
795
|
+
"path": "skills/writing-plans/SKILL.md",
|
|
796
|
+
"domains": ["planning"],
|
|
797
|
+
"description": "Multi-step implementation planning",
|
|
798
|
+
"triggers": ["write plan", "implementation steps", "plan document"],
|
|
799
|
+
"version": "2026-03-25"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"id": "superpowers/executing-plans",
|
|
803
|
+
"name": "Executing Plans",
|
|
804
|
+
"source": "superpowers",
|
|
805
|
+
"path": "skills/executing-plans/SKILL.md",
|
|
806
|
+
"domains": ["planning"],
|
|
807
|
+
"description": "Plan execution with review checkpoints",
|
|
808
|
+
"triggers": ["execute plan", "plan execution", "checkpoint review"],
|
|
809
|
+
"version": "2026-03-25"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"id": "superpowers/requesting-code-review",
|
|
813
|
+
"name": "Requesting Code Review",
|
|
814
|
+
"source": "superpowers",
|
|
815
|
+
"path": "skills/requesting-code-review/SKILL.md",
|
|
816
|
+
"domains": ["code-review"],
|
|
817
|
+
"description": "How to request reviews effectively",
|
|
818
|
+
"triggers": ["request review", "review request", "pre-merge review"],
|
|
819
|
+
"version": "2026-03-25"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"id": "superpowers/receiving-code-review",
|
|
823
|
+
"name": "Receiving Code Review",
|
|
824
|
+
"source": "superpowers",
|
|
825
|
+
"path": "skills/receiving-code-review/SKILL.md",
|
|
826
|
+
"domains": ["code-review"],
|
|
827
|
+
"description": "Technical rigor when receiving feedback",
|
|
828
|
+
"triggers": ["receive feedback", "review response", "address comments"],
|
|
829
|
+
"version": "2026-03-25"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"id": "superpowers/systematic-debugging",
|
|
833
|
+
"name": "Systematic Debugging",
|
|
834
|
+
"source": "superpowers",
|
|
835
|
+
"path": "skills/systematic-debugging/SKILL.md",
|
|
836
|
+
"domains": ["debugging"],
|
|
837
|
+
"description": "Step-by-step debugging methodology",
|
|
838
|
+
"triggers": ["systematic debug", "root cause", "bisect", "isolate bug"],
|
|
839
|
+
"version": "2026-03-25"
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"id": "superpowers/verification-before-completion",
|
|
843
|
+
"name": "Verification Before Completion",
|
|
844
|
+
"source": "superpowers",
|
|
845
|
+
"path": "skills/verification-before-completion/SKILL.md",
|
|
846
|
+
"domains": ["verification"],
|
|
847
|
+
"description": "Evidence before assertions",
|
|
848
|
+
"triggers": ["verify before done", "evidence first", "prove it works"],
|
|
849
|
+
"version": "2026-03-25"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"id": "superpowers/brainstorming",
|
|
853
|
+
"name": "Brainstorming",
|
|
854
|
+
"source": "superpowers",
|
|
855
|
+
"path": "skills/brainstorming/SKILL.md",
|
|
856
|
+
"domains": ["brainstorming"],
|
|
857
|
+
"description": "Structured brainstorming before creative work",
|
|
858
|
+
"triggers": ["structured brainstorm", "creative exploration", "divergent thinking"],
|
|
859
|
+
"version": "2026-03-25"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"id": "superpowers/dispatching-parallel-agents",
|
|
863
|
+
"name": "Dispatching Parallel Agents",
|
|
864
|
+
"source": "superpowers",
|
|
865
|
+
"path": "skills/dispatching-parallel-agents/SKILL.md",
|
|
866
|
+
"domains": ["agent-orchestration"],
|
|
867
|
+
"description": "Fan-out/fan-in agent dispatch",
|
|
868
|
+
"triggers": ["fan out", "parallel dispatch", "concurrent agents"],
|
|
869
|
+
"version": "2026-03-25"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"id": "superpowers/subagent-driven-development",
|
|
873
|
+
"name": "Subagent-Driven Development",
|
|
874
|
+
"source": "superpowers",
|
|
875
|
+
"path": "skills/subagent-driven-development/SKILL.md",
|
|
876
|
+
"domains": ["agent-orchestration"],
|
|
877
|
+
"description": "Independent task execution via subagents",
|
|
878
|
+
"triggers": ["subagent", "task delegation", "independent execution"],
|
|
879
|
+
"version": "2026-03-25"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"id": "superpowers/using-git-worktrees",
|
|
883
|
+
"name": "Git Worktrees",
|
|
884
|
+
"source": "superpowers",
|
|
885
|
+
"path": "skills/using-git-worktrees/SKILL.md",
|
|
886
|
+
"domains": ["git-workflow"],
|
|
887
|
+
"description": "Isolated git worktree workflow",
|
|
888
|
+
"triggers": ["worktree", "git worktree", "isolated branch"],
|
|
889
|
+
"version": "2026-03-25"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"id": "superpowers/finishing-branch",
|
|
893
|
+
"name": "Finishing a Branch",
|
|
894
|
+
"source": "superpowers",
|
|
895
|
+
"path": "skills/finishing-a-development-branch/SKILL.md",
|
|
896
|
+
"domains": ["git-workflow"],
|
|
897
|
+
"description": "Branch cleanup, merge, PR options",
|
|
898
|
+
"triggers": ["finish branch", "merge branch", "branch cleanup", "create pr"],
|
|
899
|
+
"version": "2026-03-25"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"id": "superpowers/using-superpowers",
|
|
903
|
+
"name": "Using Superpowers",
|
|
904
|
+
"source": "superpowers",
|
|
905
|
+
"path": "skills/using-superpowers/SKILL.md",
|
|
906
|
+
"domains": ["meta"],
|
|
907
|
+
"description": "How to find and invoke skills",
|
|
908
|
+
"triggers": ["find skill", "invoke skill", "skill discovery"],
|
|
909
|
+
"version": "2026-03-25"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"id": "superpowers/writing-skills",
|
|
913
|
+
"name": "Writing Skills",
|
|
914
|
+
"source": "superpowers",
|
|
915
|
+
"path": "skills/writing-skills/SKILL.md",
|
|
916
|
+
"domains": ["meta"],
|
|
917
|
+
"description": "How to author and deploy skills",
|
|
918
|
+
"triggers": ["write skill", "author skill", "skill template"],
|
|
919
|
+
"version": "2026-03-25"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"id": "gstack/plan-review",
|
|
923
|
+
"name": "/plan + Review",
|
|
924
|
+
"source": "gstack",
|
|
925
|
+
"path": "plan-ceo-review/SKILL.md",
|
|
926
|
+
"domains": ["planning"],
|
|
927
|
+
"description": "CEO/eng/design plan review workflow",
|
|
928
|
+
"triggers": ["ceo review", "plan review", "stakeholder review"],
|
|
929
|
+
"version": "2026-03-25"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"id": "gstack/review",
|
|
933
|
+
"name": "/review",
|
|
934
|
+
"source": "gstack",
|
|
935
|
+
"path": "review/SKILL.md",
|
|
936
|
+
"domains": ["code-review"],
|
|
937
|
+
"description": "Code review slash command",
|
|
938
|
+
"triggers": ["review command", "review slash"],
|
|
939
|
+
"version": "2026-03-25"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"id": "gstack/investigate",
|
|
943
|
+
"name": "/investigate",
|
|
944
|
+
"source": "gstack",
|
|
945
|
+
"path": "investigate/SKILL.md",
|
|
946
|
+
"domains": ["debugging"],
|
|
947
|
+
"description": "Investigation workflow for bugs",
|
|
948
|
+
"triggers": ["investigate bug", "root cause analysis", "incident investigation"],
|
|
949
|
+
"version": "2026-03-25"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"id": "gstack/office-hours",
|
|
953
|
+
"name": "/office-hours",
|
|
954
|
+
"source": "gstack",
|
|
955
|
+
"path": "office-hours/SKILL.md",
|
|
956
|
+
"domains": ["brainstorming"],
|
|
957
|
+
"description": "Collaborative brainstorming sessions",
|
|
958
|
+
"triggers": ["office hours", "collaborative session", "pair brainstorm"],
|
|
959
|
+
"version": "2026-03-25"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"id": "gstack/guard",
|
|
963
|
+
"name": "/guard",
|
|
964
|
+
"source": "gstack",
|
|
965
|
+
"path": "guard/SKILL.md",
|
|
966
|
+
"domains": ["security"],
|
|
967
|
+
"description": "Security guardrail enforcement",
|
|
968
|
+
"triggers": ["guardrail", "security guard", "enforce policy"],
|
|
969
|
+
"version": "2026-03-25"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"id": "gstack/ship",
|
|
973
|
+
"name": "/ship",
|
|
974
|
+
"source": "gstack",
|
|
975
|
+
"path": "ship/SKILL.md",
|
|
976
|
+
"domains": ["shipping"],
|
|
977
|
+
"description": "Ship-it workflow",
|
|
978
|
+
"triggers": ["ship it", "release workflow", "go live"],
|
|
979
|
+
"version": "2026-03-25"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"id": "gstack/qa",
|
|
983
|
+
"name": "/qa",
|
|
984
|
+
"source": "gstack",
|
|
985
|
+
"path": "qa/SKILL.md",
|
|
986
|
+
"domains": ["tdd"],
|
|
987
|
+
"description": "QA testing workflow",
|
|
988
|
+
"triggers": ["qa test", "quality assurance", "manual test"],
|
|
989
|
+
"version": "2026-03-25"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"id": "gstack/browse",
|
|
993
|
+
"name": "/browse",
|
|
994
|
+
"source": "gstack",
|
|
995
|
+
"path": "browse/SKILL.md",
|
|
996
|
+
"domains": ["meta"],
|
|
997
|
+
"description": "Browser-based exploration",
|
|
998
|
+
"triggers": ["browse", "web explore", "browser tool"],
|
|
999
|
+
"version": "2026-03-25"
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
"id": "anthropics/frontend-design",
|
|
1003
|
+
"name": "Frontend Design",
|
|
1004
|
+
"source": "anthropics",
|
|
1005
|
+
"path": "skills/frontend-design/SKILL.md",
|
|
1006
|
+
"domains": ["frontend-design"],
|
|
1007
|
+
"description": "Anthropic official frontend design skill",
|
|
1008
|
+
"triggers": ["anthropic design", "official frontend", "design skill"],
|
|
1009
|
+
"version": "2026-03-25"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"id": "anthropics/claude-api",
|
|
1013
|
+
"name": "Claude API",
|
|
1014
|
+
"source": "anthropics",
|
|
1015
|
+
"path": "claude-api/SKILL.md",
|
|
1016
|
+
"domains": ["agent-engineering"],
|
|
1017
|
+
"description": "Build apps with Claude API/SDK",
|
|
1018
|
+
"triggers": ["claude api", "anthropic sdk", "claude sdk"],
|
|
1019
|
+
"version": "2026-03-25"
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"id": "taste-skill/taste",
|
|
1023
|
+
"name": "Design Taste",
|
|
1024
|
+
"source": "taste-skill",
|
|
1025
|
+
"path": "SKILL.md",
|
|
1026
|
+
"domains": ["frontend-design"],
|
|
1027
|
+
"description": "High-agency anti-slop design engineering",
|
|
1028
|
+
"triggers": ["design taste", "anti slop", "design quality"],
|
|
1029
|
+
"version": "2026-03-25"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"id": "bencium/ux-designer",
|
|
1033
|
+
"name": "Bencium UX Designer",
|
|
1034
|
+
"source": "bencium",
|
|
1035
|
+
"path": "skills/bencium-controlled-ux-designer/SKILL.md",
|
|
1036
|
+
"domains": ["frontend-design"],
|
|
1037
|
+
"description": "WCAG 2.1 AA systematic UX methodology",
|
|
1038
|
+
"triggers": ["wcag", "accessibility", "a11y", "ux methodology"],
|
|
1039
|
+
"version": "2026-03-25"
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"id": "frontend-design-pro/fdp",
|
|
1043
|
+
"name": "Frontend Design Pro",
|
|
1044
|
+
"source": "frontend-design-pro",
|
|
1045
|
+
"path": "skills/frontend-design-pro/SKILL.md",
|
|
1046
|
+
"domains": ["frontend-design"],
|
|
1047
|
+
"description": "11 aesthetics + real photo matching",
|
|
1048
|
+
"triggers": ["design pro", "aesthetic", "photo matching", "visual design"],
|
|
1049
|
+
"version": "2026-03-25"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"id": "ui-ux-pro-max/uupm",
|
|
1053
|
+
"name": "UI/UX Pro Max",
|
|
1054
|
+
"source": "ui-ux-pro-max",
|
|
1055
|
+
"path": "skills/ui-ux-pro-max/SKILL.md",
|
|
1056
|
+
"domains": ["frontend-design"],
|
|
1057
|
+
"description": "Cross-platform UI/UX intelligence",
|
|
1058
|
+
"triggers": ["cross platform", "ui intelligence", "ux pro"],
|
|
1059
|
+
"version": "2026-03-25"
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"id": "design-skillstack/threejs",
|
|
1063
|
+
"name": "Three.js WebGL",
|
|
1064
|
+
"source": "design-skillstack",
|
|
1065
|
+
"path": "plugins/bundles/core-3d-animation/skills/threejs-webgl/SKILL.md",
|
|
1066
|
+
"domains": ["3d-animation"],
|
|
1067
|
+
"description": "Three.js 3D web development",
|
|
1068
|
+
"triggers": ["three.js", "threejs", "webgl scene", "3d web"],
|
|
1069
|
+
"version": "2026-03-25"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"id": "design-skillstack/gsap",
|
|
1073
|
+
"name": "GSAP ScrollTrigger",
|
|
1074
|
+
"source": "design-skillstack",
|
|
1075
|
+
"path": "plugins/bundles/core-3d-animation/skills/gsap-scrolltrigger/SKILL.md",
|
|
1076
|
+
"domains": ["3d-animation"],
|
|
1077
|
+
"description": "GSAP animation and scroll triggers",
|
|
1078
|
+
"triggers": ["gsap", "scrolltrigger", "scroll animation", "timeline"],
|
|
1079
|
+
"version": "2026-03-25"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"id": "design-skillstack/r3f",
|
|
1083
|
+
"name": "React Three Fiber",
|
|
1084
|
+
"source": "design-skillstack",
|
|
1085
|
+
"path": ".claude/skills/react-three-fiber/SKILL.md",
|
|
1086
|
+
"domains": ["3d-animation"],
|
|
1087
|
+
"description": "Declarative 3D with React",
|
|
1088
|
+
"triggers": ["react three fiber", "r3f", "declarative 3d"],
|
|
1089
|
+
"version": "2026-03-25"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"id": "design-skillstack/framer-motion",
|
|
1093
|
+
"name": "Framer Motion",
|
|
1094
|
+
"source": "design-skillstack",
|
|
1095
|
+
"path": "plugins/bundles/core-3d-animation/skills/motion-framer/SKILL.md",
|
|
1096
|
+
"domains": ["3d-animation"],
|
|
1097
|
+
"description": "React animation library",
|
|
1098
|
+
"triggers": ["framer motion", "framer", "motion", "react animation"],
|
|
1099
|
+
"version": "2026-03-25"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"id": "design-skillstack/babylonjs",
|
|
1103
|
+
"name": "Babylon.js",
|
|
1104
|
+
"source": "design-skillstack",
|
|
1105
|
+
"path": "plugins/bundles/core-3d-animation/skills/babylonjs-engine/SKILL.md",
|
|
1106
|
+
"domains": ["3d-animation"],
|
|
1107
|
+
"description": "Babylon.js 3D engine",
|
|
1108
|
+
"triggers": ["babylonjs", "babylon.js", "3d engine"],
|
|
1109
|
+
"version": "2026-03-25"
|
|
1110
|
+
}
|
|
1111
|
+
],
|
|
1112
|
+
"profiles": [
|
|
1113
|
+
{
|
|
1114
|
+
"name": "ecc-first",
|
|
1115
|
+
"description": "ECC wins all collisions, Superpowers fills unique gaps (debugging, brainstorming, git)",
|
|
1116
|
+
"resolutions": [
|
|
1117
|
+
{ "domain_id": "tdd", "chosen_skill_id": "ecc/tdd-workflow" },
|
|
1118
|
+
{ "domain_id": "planning", "chosen_skill_id": "ecc/plan" },
|
|
1119
|
+
{ "domain_id": "code-review", "chosen_skill_id": "ecc/go-review" },
|
|
1120
|
+
{ "domain_id": "verification", "chosen_skill_id": "ecc/verification-loop" },
|
|
1121
|
+
{ "domain_id": "agent-orchestration", "chosen_skill_id": "ecc/autonomous-loops" },
|
|
1122
|
+
{ "domain_id": "security", "chosen_skill_id": "ecc/security-review" },
|
|
1123
|
+
{ "domain_id": "shipping", "chosen_skill_id": "ecc/deployment-patterns" },
|
|
1124
|
+
{ "domain_id": "debugging", "chosen_skill_id": "superpowers/systematic-debugging" },
|
|
1125
|
+
{ "domain_id": "brainstorming", "chosen_skill_id": "superpowers/brainstorming" },
|
|
1126
|
+
{ "domain_id": "frontend-design", "chosen_skill_id": "anthropics/frontend-design" }
|
|
1127
|
+
]
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"name": "superpowers-first",
|
|
1131
|
+
"description": "Superpowers methodology wins, ECC for language-specific and security",
|
|
1132
|
+
"resolutions": [
|
|
1133
|
+
{ "domain_id": "tdd", "chosen_skill_id": "superpowers/test-driven-development" },
|
|
1134
|
+
{ "domain_id": "planning", "chosen_skill_id": "superpowers/writing-plans" },
|
|
1135
|
+
{ "domain_id": "code-review", "chosen_skill_id": "superpowers/requesting-code-review" },
|
|
1136
|
+
{ "domain_id": "debugging", "chosen_skill_id": "superpowers/systematic-debugging" },
|
|
1137
|
+
{ "domain_id": "verification", "chosen_skill_id": "superpowers/verification-before-completion" },
|
|
1138
|
+
{ "domain_id": "brainstorming", "chosen_skill_id": "superpowers/brainstorming" },
|
|
1139
|
+
{ "domain_id": "agent-orchestration", "chosen_skill_id": "superpowers/dispatching-parallel-agents" },
|
|
1140
|
+
{ "domain_id": "security", "chosen_skill_id": "ecc/security-review" },
|
|
1141
|
+
{ "domain_id": "shipping", "chosen_skill_id": "ecc/deployment-patterns" },
|
|
1142
|
+
{ "domain_id": "frontend-design", "chosen_skill_id": "taste-skill/taste" }
|
|
1143
|
+
]
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"name": "minimal",
|
|
1147
|
+
"description": "Smallest token footprint — one skill per colliding domain, no extras",
|
|
1148
|
+
"resolutions": [
|
|
1149
|
+
{ "domain_id": "tdd", "chosen_skill_id": "superpowers/test-driven-development" },
|
|
1150
|
+
{ "domain_id": "planning", "chosen_skill_id": "superpowers/writing-plans" },
|
|
1151
|
+
{ "domain_id": "code-review", "chosen_skill_id": "superpowers/requesting-code-review" },
|
|
1152
|
+
{ "domain_id": "debugging", "chosen_skill_id": "superpowers/systematic-debugging" },
|
|
1153
|
+
{ "domain_id": "verification", "chosen_skill_id": "superpowers/verification-before-completion" },
|
|
1154
|
+
{ "domain_id": "brainstorming", "chosen_skill_id": "superpowers/brainstorming" },
|
|
1155
|
+
{ "domain_id": "agent-orchestration", "chosen_skill_id": "superpowers/dispatching-parallel-agents" },
|
|
1156
|
+
{ "domain_id": "security", "chosen_skill_id": "ecc/security-review" },
|
|
1157
|
+
{ "domain_id": "shipping", "chosen_skill_id": "gstack/ship" },
|
|
1158
|
+
{ "domain_id": "frontend-design", "chosen_skill_id": "taste-skill/taste" }
|
|
1159
|
+
]
|
|
1160
|
+
}
|
|
1161
|
+
]
|
|
1162
|
+
}
|