oh-my-customcode 0.10.2 → 0.11.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/README.md +10 -0
- package/dist/cli/index.js +100 -26
- package/dist/index.js +10 -17
- package/package.json +1 -1
- package/templates/.claude/ontology/agents.yaml +546 -0
- package/templates/.claude/ontology/graphs/agent-skill.json +101 -0
- package/templates/.claude/ontology/graphs/full-graph.json +624 -0
- package/templates/.claude/ontology/graphs/routing.json +112 -0
- package/templates/.claude/ontology/graphs/skill-rule.json +77 -0
- package/templates/.claude/ontology/rules.yaml +251 -0
- package/templates/.claude/ontology/schema.yaml +144 -0
- package/templates/.claude/ontology/skills.yaml +538 -0
|
@@ -0,0 +1,546 @@
|
|
|
1
|
+
# Auto-generated from templates/.claude/agents/
|
|
2
|
+
# Do not edit manually — regenerate with: omcustom ontology build
|
|
3
|
+
version: "1.0.0"
|
|
4
|
+
generated_at: "2026-02-12T00:00:00Z"
|
|
5
|
+
|
|
6
|
+
# Agent class hierarchy
|
|
7
|
+
classes:
|
|
8
|
+
LanguageExpert:
|
|
9
|
+
agents: [lang-golang-expert, lang-python-expert, lang-rust-expert, lang-kotlin-expert, lang-typescript-expert, lang-java21-expert]
|
|
10
|
+
description: "Programming language specialists"
|
|
11
|
+
BackendExpert:
|
|
12
|
+
agents: [be-fastapi-expert, be-springboot-expert, be-go-backend-expert, be-express-expert, be-nestjs-expert]
|
|
13
|
+
description: "Backend framework specialists"
|
|
14
|
+
FrontendExpert:
|
|
15
|
+
agents: [fe-vercel-agent, fe-vuejs-agent, fe-svelte-agent]
|
|
16
|
+
description: "Frontend framework specialists"
|
|
17
|
+
DataEngineer:
|
|
18
|
+
agents: [de-airflow-expert, de-dbt-expert, de-spark-expert, de-kafka-expert, de-snowflake-expert, de-pipeline-expert]
|
|
19
|
+
description: "Data engineering specialists"
|
|
20
|
+
DatabaseExpert:
|
|
21
|
+
agents: [db-postgres-expert, db-redis-expert, db-supabase-expert]
|
|
22
|
+
description: "Database specialists"
|
|
23
|
+
ToolingExpert:
|
|
24
|
+
agents: [tool-npm-expert, tool-optimizer, tool-bun-expert]
|
|
25
|
+
description: "Tooling specialists"
|
|
26
|
+
Architect:
|
|
27
|
+
agents: [arch-documenter, arch-speckit-agent]
|
|
28
|
+
description: "Architecture and documentation"
|
|
29
|
+
InfraEngineer:
|
|
30
|
+
agents: [infra-docker-expert, infra-aws-expert]
|
|
31
|
+
description: "Infrastructure specialists"
|
|
32
|
+
QAAgent:
|
|
33
|
+
agents: [qa-planner, qa-writer, qa-engineer]
|
|
34
|
+
description: "QA and testing"
|
|
35
|
+
ManagerAgent:
|
|
36
|
+
agents: [mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sync-checker, mgr-sauron, mgr-claude-code-bible]
|
|
37
|
+
description: "System management agents"
|
|
38
|
+
SystemAgent:
|
|
39
|
+
agents: [sys-memory-keeper, sys-naggy]
|
|
40
|
+
description: "System utility agents"
|
|
41
|
+
|
|
42
|
+
# Agent instances
|
|
43
|
+
agents:
|
|
44
|
+
lang-golang-expert:
|
|
45
|
+
class: LanguageExpert
|
|
46
|
+
description: "Expert Go developer for writing idiomatic, performant Go code. Use for Go files (*.go, go.mod, go.sum), Go-related keywords, implementing concurrent systems, reviewing Go code, and optimizing Go applications."
|
|
47
|
+
model: sonnet
|
|
48
|
+
memory: project
|
|
49
|
+
effort: high
|
|
50
|
+
skills: [go-best-practices]
|
|
51
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
52
|
+
summary: "Go expert for idiomatic concurrent systems with goroutines and channels"
|
|
53
|
+
keywords: [go, golang, goroutine, channel, concurrency, idiomatic, effective-go]
|
|
54
|
+
file_patterns: ["*.go", "go.mod", "go.sum"]
|
|
55
|
+
|
|
56
|
+
lang-python-expert:
|
|
57
|
+
class: LanguageExpert
|
|
58
|
+
description: "Expert Python developer for writing Pythonic, clean code following PEP 8. Use for Python files (*.py, requirements.txt, pyproject.toml), Python-related keywords, designing Python APIs, reviewing Python code, and optimizing Python applications."
|
|
59
|
+
model: sonnet
|
|
60
|
+
memory: project
|
|
61
|
+
effort: high
|
|
62
|
+
skills: [python-best-practices]
|
|
63
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
64
|
+
summary: "Python expert for Pythonic code following PEP 8 and The Zen of Python"
|
|
65
|
+
keywords: [python, pythonic, pep8, zen-of-python, api-design]
|
|
66
|
+
file_patterns: ["*.py", "requirements.txt", "pyproject.toml", "setup.py"]
|
|
67
|
+
|
|
68
|
+
lang-rust-expert:
|
|
69
|
+
class: LanguageExpert
|
|
70
|
+
description: "Expert Rust developer for writing safe, performant, idiomatic Rust code. Use for Rust files (*.rs, Cargo.toml), Rust-related keywords, designing safe APIs, debugging ownership/lifetime issues, and implementing high-performance systems."
|
|
71
|
+
model: sonnet
|
|
72
|
+
memory: project
|
|
73
|
+
effort: high
|
|
74
|
+
skills: [rust-best-practices]
|
|
75
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
76
|
+
summary: "Rust expert for memory-safe high-performance systems with zero-cost abstractions"
|
|
77
|
+
keywords: [rust, ownership, borrowing, lifetime, safety, zero-cost, fearless-concurrency]
|
|
78
|
+
file_patterns: ["*.rs", "Cargo.toml", "Cargo.lock"]
|
|
79
|
+
|
|
80
|
+
lang-kotlin-expert:
|
|
81
|
+
class: LanguageExpert
|
|
82
|
+
description: "Expert Kotlin developer for writing idiomatic, concise, null-safe Kotlin code. Use for Kotlin files (*.kt, *.kts), Kotlin-related keywords, Android development, Kotlin multiplatform projects, and migrating Java to Kotlin."
|
|
83
|
+
model: sonnet
|
|
84
|
+
memory: project
|
|
85
|
+
effort: high
|
|
86
|
+
skills: [kotlin-best-practices]
|
|
87
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
88
|
+
summary: "Kotlin expert for null-safe concise code with coroutines and multiplatform support"
|
|
89
|
+
keywords: [kotlin, null-safety, coroutines, android, multiplatform, functional]
|
|
90
|
+
file_patterns: ["*.kt", "*.kts", "build.gradle.kts"]
|
|
91
|
+
|
|
92
|
+
lang-typescript-expert:
|
|
93
|
+
class: LanguageExpert
|
|
94
|
+
description: "Expert TypeScript developer for writing type-safe, maintainable, scalable TypeScript code. Use for TypeScript files (*.ts, *.tsx, tsconfig.json), TypeScript-related keywords, designing APIs with type contracts, migrating JavaScript to TypeScript, and Node.js backend services."
|
|
95
|
+
model: sonnet
|
|
96
|
+
memory: project
|
|
97
|
+
effort: high
|
|
98
|
+
skills: [typescript-best-practices]
|
|
99
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
100
|
+
summary: "TypeScript expert for type-safe scalable applications with advanced type features"
|
|
101
|
+
keywords: [typescript, type-safety, generics, conditional-types, mapped-types, nodejs]
|
|
102
|
+
file_patterns: ["*.ts", "*.tsx", "tsconfig.json", "package.json"]
|
|
103
|
+
|
|
104
|
+
lang-java21-expert:
|
|
105
|
+
class: LanguageExpert
|
|
106
|
+
description: "Expert Java 21 developer for modern Java with Virtual Threads, Pattern Matching, Record Patterns, and Sequenced Collections. Use for Java files (*.java, pom.xml, build.gradle), Java-related keywords, high-concurrency systems, data-centric APIs with Records, and migrating from older Java versions."
|
|
107
|
+
model: sonnet
|
|
108
|
+
memory: project
|
|
109
|
+
effort: high
|
|
110
|
+
skills: []
|
|
111
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
112
|
+
summary: "Java 21 expert for modern features including virtual threads and pattern matching"
|
|
113
|
+
keywords: [java, java21, virtual-threads, pattern-matching, records, sequenced-collections]
|
|
114
|
+
file_patterns: ["*.java", "pom.xml", "build.gradle", "build.gradle.kts"]
|
|
115
|
+
|
|
116
|
+
be-fastapi-expert:
|
|
117
|
+
class: BackendExpert
|
|
118
|
+
description: "Expert FastAPI developer for building high-performance async Python APIs. Use for FastAPI projects, Python async/await patterns, Pydantic models, API architecture design, and performance optimization."
|
|
119
|
+
model: sonnet
|
|
120
|
+
memory: project
|
|
121
|
+
effort: high
|
|
122
|
+
skills: [fastapi-best-practices]
|
|
123
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
124
|
+
summary: "FastAPI expert for high-performance async Python APIs with Pydantic validation"
|
|
125
|
+
keywords: [fastapi, async, await, pydantic, api, performance, dependency-injection]
|
|
126
|
+
file_patterns: ["*.py", "main.py", "requirements.txt", "pyproject.toml"]
|
|
127
|
+
|
|
128
|
+
be-springboot-expert:
|
|
129
|
+
class: BackendExpert
|
|
130
|
+
description: "Expert Spring Boot 3.5.x developer for enterprise-grade Java 21 applications. Use for Spring Boot projects, Java/Kotlin enterprise apps, RESTful APIs, microservices architecture, Spring Data, security patterns, virtual threads, and GraalVM native images."
|
|
131
|
+
model: sonnet
|
|
132
|
+
memory: project
|
|
133
|
+
effort: high
|
|
134
|
+
skills: [springboot-best-practices]
|
|
135
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
136
|
+
summary: "Spring Boot expert for enterprise Java/Kotlin with virtual threads and native images"
|
|
137
|
+
keywords: [springboot, spring, java, kotlin, microservices, virtual-threads, graalvm, rest-api]
|
|
138
|
+
file_patterns: ["*.java", "*.kt", "application.yml", "application.properties", "pom.xml"]
|
|
139
|
+
|
|
140
|
+
be-go-backend-expert:
|
|
141
|
+
class: BackendExpert
|
|
142
|
+
description: "Expert Go backend developer for production-ready services following Uber style guide and standard layout. Use for Go backend services, HTTP/gRPC servers, microservices in Go, concurrent systems, and Go performance optimization."
|
|
143
|
+
model: sonnet
|
|
144
|
+
memory: project
|
|
145
|
+
effort: high
|
|
146
|
+
skills: [go-backend-best-practices]
|
|
147
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
148
|
+
summary: "Go backend expert for production services with HTTP/gRPC and concurrency patterns"
|
|
149
|
+
keywords: [go, backend, grpc, http, microservices, uber-style, concurrency]
|
|
150
|
+
file_patterns: ["*.go", "go.mod", "go.sum"]
|
|
151
|
+
|
|
152
|
+
be-express-expert:
|
|
153
|
+
class: BackendExpert
|
|
154
|
+
description: "Expert Express.js developer for production-ready Node.js APIs following security best practices and 12-factor app principles. Use for Express.js APIs, REST API architectures, middleware chains, authentication/authorization, security hardening, and Node.js performance optimization."
|
|
155
|
+
model: sonnet
|
|
156
|
+
memory: project
|
|
157
|
+
effort: high
|
|
158
|
+
skills: []
|
|
159
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
160
|
+
summary: "Express.js expert for secure production Node.js APIs with 12-factor principles"
|
|
161
|
+
keywords: [express, expressjs, nodejs, middleware, rest-api, security, helmet, cors]
|
|
162
|
+
file_patterns: ["*.js", "*.ts", "package.json", "app.js", "server.js"]
|
|
163
|
+
|
|
164
|
+
be-nestjs-expert:
|
|
165
|
+
class: BackendExpert
|
|
166
|
+
description: "Expert NestJS developer for opinionated, scalable Node.js applications with TypeScript. Use for NestJS projects, decorator-based patterns (@Injectable, @Module, @Controller), enterprise API architectures, authentication/authorization guards, DTO validation, and modular architecture."
|
|
167
|
+
model: sonnet
|
|
168
|
+
memory: project
|
|
169
|
+
effort: high
|
|
170
|
+
skills: []
|
|
171
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
172
|
+
summary: "NestJS expert for enterprise TypeScript APIs with dependency injection and decorators"
|
|
173
|
+
keywords: [nestjs, nest, typescript, decorators, dependency-injection, guards, dto, modular]
|
|
174
|
+
file_patterns: ["*.ts", "*.module.ts", "*.controller.ts", "*.service.ts", "nest-cli.json"]
|
|
175
|
+
|
|
176
|
+
fe-vercel-agent:
|
|
177
|
+
class: FrontendExpert
|
|
178
|
+
description: "Use for React/Next.js optimization, web design review (accessibility, UX), Vercel deployment automation, and bundle size optimization"
|
|
179
|
+
model: sonnet
|
|
180
|
+
memory: project
|
|
181
|
+
effort: medium
|
|
182
|
+
skills: [react-best-practices, web-design-guidelines, vercel-deploy]
|
|
183
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
184
|
+
summary: "React/Next.js expert with Vercel deployment and web accessibility optimization"
|
|
185
|
+
keywords: [react, nextjs, vercel, accessibility, ux, bundle-size, ssr, deployment]
|
|
186
|
+
file_patterns: ["*.jsx", "*.tsx", "next.config.js", "vercel.json", "package.json"]
|
|
187
|
+
|
|
188
|
+
fe-vuejs-agent:
|
|
189
|
+
class: FrontendExpert
|
|
190
|
+
description: "Use for Vue 3 Composition API development, single-file components, Pinia state management, and Vue Router navigation"
|
|
191
|
+
model: sonnet
|
|
192
|
+
memory: project
|
|
193
|
+
effort: medium
|
|
194
|
+
skills: []
|
|
195
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
196
|
+
summary: "Vue 3 expert for Composition API with Pinia state management and Vue Router"
|
|
197
|
+
keywords: [vue, vuejs, vue3, composition-api, pinia, vue-router, reactive, sfc]
|
|
198
|
+
file_patterns: ["*.vue", "vite.config.js", "package.json"]
|
|
199
|
+
|
|
200
|
+
fe-svelte-agent:
|
|
201
|
+
class: FrontendExpert
|
|
202
|
+
description: "Use for Svelte compiler-based reactivity, reactive statements ($:), Svelte stores, and SvelteKit full-stack development with SSR"
|
|
203
|
+
model: sonnet
|
|
204
|
+
memory: project
|
|
205
|
+
effort: medium
|
|
206
|
+
skills: []
|
|
207
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
208
|
+
summary: "Svelte expert for compiler-based reactivity with SvelteKit SSR and stores"
|
|
209
|
+
keywords: [svelte, sveltekit, reactive, compiler, stores, ssr, file-routing]
|
|
210
|
+
file_patterns: ["*.svelte", "svelte.config.js", "+page.svelte", "+layout.svelte"]
|
|
211
|
+
|
|
212
|
+
de-airflow-expert:
|
|
213
|
+
class: DataEngineer
|
|
214
|
+
description: "Expert Apache Airflow developer for DAG authoring, testing, and debugging. Use for DAG files (*.py in dags/), airflow.cfg, Airflow-related keywords, scheduling patterns, and pipeline orchestration."
|
|
215
|
+
model: sonnet
|
|
216
|
+
memory: project
|
|
217
|
+
effort: high
|
|
218
|
+
skills: [airflow-best-practices]
|
|
219
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
220
|
+
summary: "Airflow expert for production DAGs with TaskFlow API and scheduling patterns"
|
|
221
|
+
keywords: [airflow, dag, orchestration, scheduling, taskflow, operators, pipeline]
|
|
222
|
+
file_patterns: ["dags/*.py", "airflow.cfg", "*.py"]
|
|
223
|
+
|
|
224
|
+
de-dbt-expert:
|
|
225
|
+
class: DataEngineer
|
|
226
|
+
description: "Expert dbt developer for SQL modeling, testing, and documentation. Use for dbt model files (*.sql in models/), schema.yml, dbt_project.yml, dbt-related keywords, and analytics engineering workflows."
|
|
227
|
+
model: sonnet
|
|
228
|
+
memory: project
|
|
229
|
+
effort: high
|
|
230
|
+
skills: [dbt-best-practices]
|
|
231
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
232
|
+
summary: "dbt expert for analytics engineering with SQL modeling and data transformation"
|
|
233
|
+
keywords: [dbt, sql, analytics-engineering, modeling, testing, jinja, materialization]
|
|
234
|
+
file_patterns: ["models/*.sql", "schema.yml", "dbt_project.yml", "*.sql"]
|
|
235
|
+
|
|
236
|
+
de-spark-expert:
|
|
237
|
+
class: DataEngineer
|
|
238
|
+
description: "Expert Apache Spark developer for PySpark and Scala distributed data processing. Use for Spark jobs (*.py, *.scala), spark-submit configs, Spark-related keywords, and large-scale data transformation."
|
|
239
|
+
model: sonnet
|
|
240
|
+
memory: project
|
|
241
|
+
effort: high
|
|
242
|
+
skills: [spark-best-practices]
|
|
243
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
244
|
+
summary: "Spark expert for distributed data processing with DataFrame API and optimization"
|
|
245
|
+
keywords: [spark, pyspark, scala, dataframe, distributed, partitioning, streaming, parquet]
|
|
246
|
+
file_patterns: ["*.py", "*.scala", "spark-submit", "*.conf"]
|
|
247
|
+
|
|
248
|
+
de-kafka-expert:
|
|
249
|
+
class: DataEngineer
|
|
250
|
+
description: "Expert Apache Kafka developer for event streaming, topic design, and producer-consumer patterns. Use for Kafka configs, streaming applications, event-driven architectures, and message broker design."
|
|
251
|
+
model: sonnet
|
|
252
|
+
memory: project
|
|
253
|
+
effort: high
|
|
254
|
+
skills: [kafka-best-practices]
|
|
255
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
256
|
+
summary: "Kafka expert for event streaming with exactly-once semantics and schema registry"
|
|
257
|
+
keywords: [kafka, streaming, event-driven, producer, consumer, schema-registry, avro, cqrs]
|
|
258
|
+
file_patterns: ["*.properties", "*.conf", "*.avsc", "*.proto"]
|
|
259
|
+
|
|
260
|
+
de-snowflake-expert:
|
|
261
|
+
class: DataEngineer
|
|
262
|
+
description: "Expert Snowflake developer for cloud data warehouse design, query optimization, and data loading. Use for Snowflake SQL, warehouse configuration, clustering keys, data sharing, and Iceberg table integration."
|
|
263
|
+
model: sonnet
|
|
264
|
+
memory: project
|
|
265
|
+
effort: high
|
|
266
|
+
skills: [snowflake-best-practices]
|
|
267
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
268
|
+
summary: "Snowflake expert for cloud data warehouse with query optimization and Iceberg support"
|
|
269
|
+
keywords: [snowflake, data-warehouse, clustering, optimization, iceberg, zero-copy, snowpipe]
|
|
270
|
+
file_patterns: ["*.sql", "snowflake.yml"]
|
|
271
|
+
|
|
272
|
+
de-pipeline-expert:
|
|
273
|
+
class: DataEngineer
|
|
274
|
+
description: "Expert data pipeline architect for ETL/ELT design, orchestration patterns, data quality, and cross-tool integration. Use for pipeline architecture decisions, data quality frameworks, lineage tracking, and multi-tool coordination."
|
|
275
|
+
model: sonnet
|
|
276
|
+
memory: project
|
|
277
|
+
effort: high
|
|
278
|
+
skills: [pipeline-architecture-patterns]
|
|
279
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
280
|
+
summary: "Pipeline architect for robust ETL/ELT systems with data quality and lineage"
|
|
281
|
+
keywords: [pipeline, etl, elt, data-quality, orchestration, lineage, metadata, lambda-architecture]
|
|
282
|
+
file_patterns: ["*.py", "*.yml", "*.yaml"]
|
|
283
|
+
|
|
284
|
+
db-postgres-expert:
|
|
285
|
+
class: DatabaseExpert
|
|
286
|
+
description: "Expert PostgreSQL DBA for pure PostgreSQL environments. Use for database design, query optimization, indexing strategies, partitioning, replication, PG-specific SQL syntax, and performance tuning without Supabase dependency."
|
|
287
|
+
model: sonnet
|
|
288
|
+
memory: user
|
|
289
|
+
effort: high
|
|
290
|
+
skills: [postgres-best-practices]
|
|
291
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
292
|
+
summary: "PostgreSQL expert for database design with indexing, partitioning, and replication"
|
|
293
|
+
keywords: [postgresql, postgres, indexing, partitioning, replication, jsonb, explain, vacuum]
|
|
294
|
+
file_patterns: ["*.sql", "*.psql"]
|
|
295
|
+
|
|
296
|
+
db-redis-expert:
|
|
297
|
+
class: DatabaseExpert
|
|
298
|
+
description: "Expert Redis developer for caching strategies, data structure design, Pub/Sub messaging, Streams, Lua scripting, and cluster management. Use for Redis configuration, performance optimization, and in-memory data architecture."
|
|
299
|
+
model: sonnet
|
|
300
|
+
memory: user
|
|
301
|
+
effort: high
|
|
302
|
+
skills: [redis-best-practices]
|
|
303
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
304
|
+
summary: "Redis expert for caching and in-memory data with Pub/Sub and Lua scripting"
|
|
305
|
+
keywords: [redis, caching, in-memory, pubsub, streams, lua, cluster, sentinel]
|
|
306
|
+
file_patterns: ["redis.conf", "*.lua"]
|
|
307
|
+
|
|
308
|
+
db-supabase-expert:
|
|
309
|
+
class: DatabaseExpert
|
|
310
|
+
description: "Supabase and PostgreSQL expert. Use when working with Supabase projects, writing SQL queries, designing database schemas, configuring Row-Level Security (RLS), optimizing Postgres performance, or managing connection pooling. Handles .sql files and Supabase configuration."
|
|
311
|
+
model: sonnet
|
|
312
|
+
memory: user
|
|
313
|
+
effort: high
|
|
314
|
+
skills: [supabase-postgres-best-practices]
|
|
315
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
316
|
+
summary: "Supabase expert for PostgreSQL with RLS policies and connection pooling"
|
|
317
|
+
keywords: [supabase, postgresql, rls, row-level-security, pgbouncer, schema-design, migration]
|
|
318
|
+
file_patterns: ["*.sql", "supabase.yml", "migrations/*.sql"]
|
|
319
|
+
|
|
320
|
+
tool-npm-expert:
|
|
321
|
+
class: ToolingExpert
|
|
322
|
+
description: "Use for npm package publishing workflows, semantic versioning (major/minor/patch), package.json optimization, and dependency audits"
|
|
323
|
+
model: sonnet
|
|
324
|
+
memory: project
|
|
325
|
+
effort: medium
|
|
326
|
+
skills: [npm-audit, npm-publish, npm-version]
|
|
327
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
328
|
+
summary: "npm expert for package publishing with semantic versioning and audits"
|
|
329
|
+
keywords: [npm, package, publishing, semver, versioning, audit, registry]
|
|
330
|
+
file_patterns: ["package.json", "package-lock.json", ".npmrc"]
|
|
331
|
+
|
|
332
|
+
tool-optimizer:
|
|
333
|
+
class: ToolingExpert
|
|
334
|
+
description: "Use for bundle size analysis, tree-shaking verification, performance profiling, dead code detection, and build optimization recommendations"
|
|
335
|
+
model: sonnet
|
|
336
|
+
memory: project
|
|
337
|
+
effort: medium
|
|
338
|
+
skills: [optimize-analyze, optimize-bundle, optimize-report]
|
|
339
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
340
|
+
summary: "Build optimizer for bundle analysis and performance profiling"
|
|
341
|
+
keywords: [optimization, bundle, tree-shaking, performance, webpack, vite, esbuild, dead-code]
|
|
342
|
+
file_patterns: ["webpack.config.js", "vite.config.js", "rollup.config.js", "package.json"]
|
|
343
|
+
|
|
344
|
+
tool-bun-expert:
|
|
345
|
+
class: ToolingExpert
|
|
346
|
+
description: "Use for Bun runtime development, bunfig.toml configuration, Bun test runner, fast bundling, and Node.js to Bun migrations"
|
|
347
|
+
model: sonnet
|
|
348
|
+
memory: project
|
|
349
|
+
effort: medium
|
|
350
|
+
skills: []
|
|
351
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
352
|
+
summary: "Bun expert for high-performance JavaScript/TypeScript runtime and bundling"
|
|
353
|
+
keywords: [bun, runtime, bundler, test-runner, nodejs, typescript, jsx, bunfig]
|
|
354
|
+
file_patterns: ["bunfig.toml", "bun.lockb", "*.ts", "*.tsx", "*.js"]
|
|
355
|
+
|
|
356
|
+
arch-documenter:
|
|
357
|
+
class: Architect
|
|
358
|
+
description: "Use for generating architecture documentation, API specifications (OpenAPI), Architecture Decision Records (ADRs), technical diagrams (Mermaid/PlantUML), and README maintenance"
|
|
359
|
+
model: sonnet
|
|
360
|
+
memory: project
|
|
361
|
+
effort: high
|
|
362
|
+
skills: []
|
|
363
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
364
|
+
summary: "Architecture documentation expert for API specs, ADRs, and technical diagrams"
|
|
365
|
+
keywords: [documentation, architecture, adr, openapi, swagger, mermaid, plantuml, readme]
|
|
366
|
+
file_patterns: ["*.md", "docs/*.md", "openapi.yml", "swagger.yml"]
|
|
367
|
+
|
|
368
|
+
arch-speckit-agent:
|
|
369
|
+
class: Architect
|
|
370
|
+
description: "Use for spec-driven development, transforming requirements into executable specifications, defining project constitution, creating technical plans, and generating TDD task lists"
|
|
371
|
+
model: sonnet
|
|
372
|
+
memory: project
|
|
373
|
+
effort: high
|
|
374
|
+
skills: []
|
|
375
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
376
|
+
summary: "Spec-driven development expert transforming requirements into executable specifications"
|
|
377
|
+
keywords: [spec-driven, specification, requirements, constitution, technical-plan, tdd, tasks]
|
|
378
|
+
file_patterns: ["*.spec.md", "constitution.md", "plan.md"]
|
|
379
|
+
|
|
380
|
+
infra-docker-expert:
|
|
381
|
+
class: InfraEngineer
|
|
382
|
+
description: "Use for creating optimized Dockerfiles, multi-stage builds, container security hardening, Docker Compose configurations, and image size optimization"
|
|
383
|
+
model: sonnet
|
|
384
|
+
memory: user
|
|
385
|
+
effort: medium
|
|
386
|
+
skills: [docker-best-practices]
|
|
387
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
388
|
+
summary: "Docker expert for optimized multi-stage builds and container security"
|
|
389
|
+
keywords: [docker, dockerfile, multi-stage, container, docker-compose, security, optimization]
|
|
390
|
+
file_patterns: ["Dockerfile", "docker-compose.yml", ".dockerignore"]
|
|
391
|
+
|
|
392
|
+
infra-aws-expert:
|
|
393
|
+
class: InfraEngineer
|
|
394
|
+
description: "Use for AWS architecture design with Well-Architected Framework, infrastructure as code (CloudFormation/CDK/Terraform), VPC networking, IAM security, and cost optimization"
|
|
395
|
+
model: sonnet
|
|
396
|
+
memory: user
|
|
397
|
+
effort: high
|
|
398
|
+
skills: [aws-best-practices]
|
|
399
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
400
|
+
summary: "AWS architect for cloud infrastructure with Well-Architected Framework and IaC"
|
|
401
|
+
keywords: [aws, cloud, cloudformation, cdk, terraform, vpc, iam, well-architected, lambda]
|
|
402
|
+
file_patterns: ["*.tf", "*.yml", "cloudformation.json", "cdk.json"]
|
|
403
|
+
|
|
404
|
+
qa-planner:
|
|
405
|
+
class: QAAgent
|
|
406
|
+
description: "Use when you need to create detailed QA plans from requirements and specifications, including test strategy design, risk-based prioritization, test scenario identification, and acceptance criteria definition"
|
|
407
|
+
model: sonnet
|
|
408
|
+
memory: project
|
|
409
|
+
effort: high
|
|
410
|
+
skills: []
|
|
411
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
412
|
+
summary: "QA planner for test strategy design with risk-based prioritization"
|
|
413
|
+
keywords: [qa, testing, test-strategy, test-plan, risk-based, acceptance-criteria, scenarios]
|
|
414
|
+
file_patterns: ["*.md", "test-plan.yml"]
|
|
415
|
+
|
|
416
|
+
qa-writer:
|
|
417
|
+
class: QAAgent
|
|
418
|
+
description: "Use when you need to create comprehensive QA documentation from detailed plans, including test cases, test reports, and quality documentation"
|
|
419
|
+
model: sonnet
|
|
420
|
+
memory: project
|
|
421
|
+
effort: medium
|
|
422
|
+
skills: []
|
|
423
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
424
|
+
summary: "QA writer for detailed test cases and execution reports"
|
|
425
|
+
keywords: [qa, test-cases, test-reports, documentation, defect-reports, coverage]
|
|
426
|
+
file_patterns: ["*.md", "test-cases.yml", "test-report.md"]
|
|
427
|
+
|
|
428
|
+
qa-engineer:
|
|
429
|
+
class: QAAgent
|
|
430
|
+
description: "Use when you need to execute tests based on detailed plans and documentation, perform manual and automated testing, report defects, and validate fixes"
|
|
431
|
+
model: sonnet
|
|
432
|
+
memory: project
|
|
433
|
+
effort: medium
|
|
434
|
+
skills: []
|
|
435
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
436
|
+
summary: "QA engineer for test execution with manual and automated testing"
|
|
437
|
+
keywords: [qa, testing, test-execution, automation, jest, vitest, playwright, cypress, defects]
|
|
438
|
+
file_patterns: ["*.test.ts", "*.spec.ts", "*.test.js", "playwright.config.ts"]
|
|
439
|
+
|
|
440
|
+
mgr-creator:
|
|
441
|
+
class: ManagerAgent
|
|
442
|
+
description: "Use when you need to create new agents following design guidelines. Automatically researches authoritative references before agent creation to ensure high-quality knowledge base"
|
|
443
|
+
model: sonnet
|
|
444
|
+
memory: project
|
|
445
|
+
effort: high
|
|
446
|
+
skills: [create-agent]
|
|
447
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
448
|
+
summary: "Agent creator with automatic research of authoritative references"
|
|
449
|
+
keywords: [agent, creation, design-guidelines, research, references, frontmatter]
|
|
450
|
+
file_patterns: [".claude/agents/*.md"]
|
|
451
|
+
|
|
452
|
+
mgr-updater:
|
|
453
|
+
class: ManagerAgent
|
|
454
|
+
description: "Use when you need to update external agents, skills, and guides from their upstream sources, checking versions and applying updates"
|
|
455
|
+
model: sonnet
|
|
456
|
+
memory: project
|
|
457
|
+
effort: medium
|
|
458
|
+
skills: [update-external]
|
|
459
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
460
|
+
summary: "External source synchronization for agents, skills, and guides"
|
|
461
|
+
keywords: [update, external, upstream, synchronization, version, metadata]
|
|
462
|
+
file_patterns: [".claude/agents/*.md", ".claude/skills/*/SKILL.md", "guides/*"]
|
|
463
|
+
|
|
464
|
+
mgr-supplier:
|
|
465
|
+
class: ManagerAgent
|
|
466
|
+
description: "Use when you need to validate and manage skills/guides dependencies for agents, detect missing/broken refs, and ensure agents have proper resources"
|
|
467
|
+
model: haiku
|
|
468
|
+
memory: local
|
|
469
|
+
effort: low
|
|
470
|
+
skills: [audit-agents]
|
|
471
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
472
|
+
summary: "Dependency validator for agent skills and guides references"
|
|
473
|
+
keywords: [audit, dependencies, validation, skills, guides, references, broken-refs]
|
|
474
|
+
file_patterns: [".claude/agents/*.md", ".claude/skills/*/SKILL.md"]
|
|
475
|
+
|
|
476
|
+
mgr-gitnerd:
|
|
477
|
+
class: ManagerAgent
|
|
478
|
+
description: "Use when you need to handle Git operations and GitHub workflow management, including commits, branches, PRs, and history management following best practices"
|
|
479
|
+
model: sonnet
|
|
480
|
+
memory: project
|
|
481
|
+
effort: medium
|
|
482
|
+
skills: []
|
|
483
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
484
|
+
summary: "Git operations specialist for commits, branches, and PRs with safety rules"
|
|
485
|
+
keywords: [git, github, commit, branch, pull-request, conventional-commits, rebase, merge]
|
|
486
|
+
file_patterns: [".git/*", ".github/*"]
|
|
487
|
+
|
|
488
|
+
mgr-sync-checker:
|
|
489
|
+
class: ManagerAgent
|
|
490
|
+
description: "Use when you need to verify documentation and workflow synchronization, ensuring all docs, configs, and workflow definitions remain synchronized with the project structure"
|
|
491
|
+
model: haiku
|
|
492
|
+
memory: local
|
|
493
|
+
effort: low
|
|
494
|
+
skills: [update-docs]
|
|
495
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
496
|
+
summary: "Documentation synchronization validator for project structure consistency"
|
|
497
|
+
keywords: [synchronization, documentation, verification, consistency, agent-count, commands]
|
|
498
|
+
file_patterns: ["CLAUDE.md", ".claude/agents/*.md", "commands/index.yaml"]
|
|
499
|
+
|
|
500
|
+
mgr-sauron:
|
|
501
|
+
class: ManagerAgent
|
|
502
|
+
description: "Use when you need automated verification of R017 compliance, executing mandatory multi-round verification (5 manager rounds + 3 deep review rounds) before commits"
|
|
503
|
+
model: sonnet
|
|
504
|
+
memory: project
|
|
505
|
+
effort: high
|
|
506
|
+
skills: [sauron-watch]
|
|
507
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
508
|
+
summary: "Automated R017 verification with multi-round comprehensive checks"
|
|
509
|
+
keywords: [verification, r017, compliance, multi-round, validation, integrity, auto-fix]
|
|
510
|
+
file_patterns: [".claude/agents/*.md", ".claude/skills/*/SKILL.md", "guides/*", "CLAUDE.md"]
|
|
511
|
+
|
|
512
|
+
mgr-claude-code-bible:
|
|
513
|
+
class: ManagerAgent
|
|
514
|
+
description: "Fetches latest Claude Code official documentation from code.claude.com and verifies agents/skills compliance against the official spec. Use when you need to check official Claude Code documentation or verify frontmatter fields."
|
|
515
|
+
model: sonnet
|
|
516
|
+
memory: project
|
|
517
|
+
effort: medium
|
|
518
|
+
skills: [claude-code-bible]
|
|
519
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
520
|
+
summary: "Official Claude Code spec fetcher and compliance validator"
|
|
521
|
+
keywords: [claude-code, official-docs, specification, compliance, frontmatter, validation]
|
|
522
|
+
file_patterns: [".claude/agents/*.md", ".claude/skills/*/SKILL.md", "~/.claude/references/claude-code/*"]
|
|
523
|
+
|
|
524
|
+
sys-memory-keeper:
|
|
525
|
+
class: SystemAgent
|
|
526
|
+
description: "Use when you need to manage session memory persistence using claude-mem, save context before compaction, restore context on session start, or query past memories"
|
|
527
|
+
model: sonnet
|
|
528
|
+
memory: project
|
|
529
|
+
effort: medium
|
|
530
|
+
skills: [memory-management, memory-save, memory-recall]
|
|
531
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
532
|
+
summary: "Session memory manager for context persistence with claude-mem"
|
|
533
|
+
keywords: [memory, persistence, claude-mem, context, session, recall, chroma, semantic-search]
|
|
534
|
+
file_patterns: []
|
|
535
|
+
|
|
536
|
+
sys-naggy:
|
|
537
|
+
class: SystemAgent
|
|
538
|
+
description: "Use when you need TODO list management and task tracking with proactive reminders, helping maintain project momentum by monitoring stale tasks and deadlines"
|
|
539
|
+
model: sonnet
|
|
540
|
+
memory: local
|
|
541
|
+
effort: low
|
|
542
|
+
skills: []
|
|
543
|
+
tools: [Read, Write, Edit, Grep, Glob, Bash]
|
|
544
|
+
summary: "Task tracker with proactive reminders for TODO management"
|
|
545
|
+
keywords: [todo, tasks, reminders, tracking, deadlines, project-momentum]
|
|
546
|
+
file_patterns: ["TODO.md", "*.todo"]
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"description": "Agent to Skill dependency mapping",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"edges": {
|
|
5
|
+
"lang-golang-expert": ["go-best-practices"],
|
|
6
|
+
"lang-python-expert": ["python-best-practices"],
|
|
7
|
+
"lang-rust-expert": ["rust-best-practices"],
|
|
8
|
+
"lang-kotlin-expert": ["kotlin-best-practices"],
|
|
9
|
+
"lang-typescript-expert": ["typescript-best-practices"],
|
|
10
|
+
"lang-java21-expert": [],
|
|
11
|
+
"be-fastapi-expert": ["fastapi-best-practices"],
|
|
12
|
+
"be-springboot-expert": ["springboot-best-practices"],
|
|
13
|
+
"be-go-backend-expert": ["go-backend-best-practices"],
|
|
14
|
+
"be-express-expert": [],
|
|
15
|
+
"be-nestjs-expert": [],
|
|
16
|
+
"fe-vercel-agent": ["react-best-practices", "web-design-guidelines", "vercel-deploy"],
|
|
17
|
+
"fe-vuejs-agent": [],
|
|
18
|
+
"fe-svelte-agent": [],
|
|
19
|
+
"de-airflow-expert": ["airflow-best-practices"],
|
|
20
|
+
"de-dbt-expert": ["dbt-best-practices"],
|
|
21
|
+
"de-spark-expert": ["spark-best-practices"],
|
|
22
|
+
"de-kafka-expert": ["kafka-best-practices"],
|
|
23
|
+
"de-snowflake-expert": ["snowflake-best-practices"],
|
|
24
|
+
"de-pipeline-expert": ["pipeline-architecture-patterns"],
|
|
25
|
+
"db-postgres-expert": ["postgres-best-practices"],
|
|
26
|
+
"db-redis-expert": ["redis-best-practices"],
|
|
27
|
+
"db-supabase-expert": ["supabase-postgres-best-practices"],
|
|
28
|
+
"tool-npm-expert": ["npm-audit", "npm-publish", "npm-version"],
|
|
29
|
+
"tool-optimizer": ["optimize-analyze", "optimize-bundle", "optimize-report"],
|
|
30
|
+
"tool-bun-expert": [],
|
|
31
|
+
"arch-documenter": [],
|
|
32
|
+
"arch-speckit-agent": [],
|
|
33
|
+
"infra-docker-expert": ["docker-best-practices"],
|
|
34
|
+
"infra-aws-expert": ["aws-best-practices"],
|
|
35
|
+
"qa-planner": [],
|
|
36
|
+
"qa-writer": [],
|
|
37
|
+
"qa-engineer": [],
|
|
38
|
+
"mgr-creator": ["create-agent"],
|
|
39
|
+
"mgr-updater": ["update-external"],
|
|
40
|
+
"mgr-supplier": ["audit-agents"],
|
|
41
|
+
"mgr-gitnerd": [],
|
|
42
|
+
"mgr-sync-checker": ["update-docs"],
|
|
43
|
+
"mgr-sauron": ["sauron-watch"],
|
|
44
|
+
"mgr-claude-code-bible": ["claude-code-bible"],
|
|
45
|
+
"sys-memory-keeper": ["memory-management", "memory-save", "memory-recall"],
|
|
46
|
+
"sys-naggy": []
|
|
47
|
+
},
|
|
48
|
+
"reverse": {
|
|
49
|
+
"go-best-practices": ["lang-golang-expert"],
|
|
50
|
+
"python-best-practices": ["lang-python-expert"],
|
|
51
|
+
"rust-best-practices": ["lang-rust-expert"],
|
|
52
|
+
"kotlin-best-practices": ["lang-kotlin-expert"],
|
|
53
|
+
"typescript-best-practices": ["lang-typescript-expert"],
|
|
54
|
+
"fastapi-best-practices": ["be-fastapi-expert"],
|
|
55
|
+
"springboot-best-practices": ["be-springboot-expert"],
|
|
56
|
+
"go-backend-best-practices": ["be-go-backend-expert"],
|
|
57
|
+
"react-best-practices": ["fe-vercel-agent"],
|
|
58
|
+
"web-design-guidelines": ["fe-vercel-agent"],
|
|
59
|
+
"vercel-deploy": ["fe-vercel-agent"],
|
|
60
|
+
"airflow-best-practices": ["de-airflow-expert"],
|
|
61
|
+
"dbt-best-practices": ["de-dbt-expert"],
|
|
62
|
+
"spark-best-practices": ["de-spark-expert"],
|
|
63
|
+
"kafka-best-practices": ["de-kafka-expert"],
|
|
64
|
+
"snowflake-best-practices": ["de-snowflake-expert"],
|
|
65
|
+
"pipeline-architecture-patterns": ["de-pipeline-expert"],
|
|
66
|
+
"postgres-best-practices": ["db-postgres-expert"],
|
|
67
|
+
"redis-best-practices": ["db-redis-expert"],
|
|
68
|
+
"supabase-postgres-best-practices": ["db-supabase-expert"],
|
|
69
|
+
"npm-audit": ["tool-npm-expert"],
|
|
70
|
+
"npm-publish": ["tool-npm-expert"],
|
|
71
|
+
"npm-version": ["tool-npm-expert"],
|
|
72
|
+
"optimize-analyze": ["tool-optimizer"],
|
|
73
|
+
"optimize-bundle": ["tool-optimizer"],
|
|
74
|
+
"optimize-report": ["tool-optimizer"],
|
|
75
|
+
"docker-best-practices": ["infra-docker-expert"],
|
|
76
|
+
"aws-best-practices": ["infra-aws-expert"],
|
|
77
|
+
"create-agent": ["mgr-creator"],
|
|
78
|
+
"update-external": ["mgr-updater"],
|
|
79
|
+
"audit-agents": ["mgr-supplier"],
|
|
80
|
+
"update-docs": ["mgr-sync-checker"],
|
|
81
|
+
"sauron-watch": ["mgr-sauron"],
|
|
82
|
+
"claude-code-bible": ["mgr-claude-code-bible"],
|
|
83
|
+
"memory-management": ["sys-memory-keeper"],
|
|
84
|
+
"memory-save": ["sys-memory-keeper"],
|
|
85
|
+
"memory-recall": ["sys-memory-keeper"],
|
|
86
|
+
"secretary-routing": [],
|
|
87
|
+
"dev-lead-routing": [],
|
|
88
|
+
"de-lead-routing": [],
|
|
89
|
+
"qa-lead-routing": [],
|
|
90
|
+
"dev-review": [],
|
|
91
|
+
"dev-refactor": [],
|
|
92
|
+
"fix-refs": [],
|
|
93
|
+
"help": [],
|
|
94
|
+
"intent-detection": [],
|
|
95
|
+
"lists": [],
|
|
96
|
+
"monitoring-setup": [],
|
|
97
|
+
"result-aggregation": [],
|
|
98
|
+
"status": [],
|
|
99
|
+
"writing-clearly-and-concisely": []
|
|
100
|
+
}
|
|
101
|
+
}
|