oh-my-customcode 0.30.7 → 0.30.9
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 +15 -13
- package/package.json +1 -1
- package/templates/.claude/agents/fe-flutter-agent.md +46 -0
- package/templates/.claude/ontology/agents.yaml +14 -2
- package/templates/.claude/ontology/graphs/agent-skill.json +2 -0
- package/templates/.claude/ontology/graphs/full-graph.json +13 -1
- package/templates/.claude/ontology/graphs/routing.json +2 -0
- package/templates/.claude/ontology/graphs/skill-rule.json +1 -0
- package/templates/.claude/ontology/skills.yaml +69 -59
- package/templates/.claude/skills/analysis/SKILL.md +1 -0
- package/templates/.claude/skills/dev-lead-routing/SKILL.md +4 -2
- package/templates/.claude/skills/flutter-best-practices/SKILL.md +431 -0
- package/templates/.claude/skills/intent-detection/patterns/agent-triggers.yaml +8 -0
- package/templates/guides/flutter/architecture.md +141 -0
- package/templates/guides/flutter/fundamentals.md +119 -0
- package/templates/guides/flutter/index.yaml +44 -0
- package/templates/guides/flutter/performance.md +119 -0
- package/templates/guides/flutter/state-management.md +144 -0
- package/templates/guides/flutter/testing.md +155 -0
- package/templates/guides/index.yaml +8 -0
- package/templates/manifest.json +4 -4
|
@@ -13,9 +13,9 @@ classes:
|
|
|
13
13
|
skills: [
|
|
14
14
|
go-best-practices, python-best-practices, rust-best-practices,
|
|
15
15
|
kotlin-best-practices, typescript-best-practices, react-best-practices,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
redis-best-practices, supabase-postgres-best-practices,
|
|
16
|
+
flutter-best-practices, fastapi-best-practices, springboot-best-practices,
|
|
17
|
+
go-backend-best-practices, docker-best-practices, aws-best-practices,
|
|
18
|
+
postgres-best-practices, redis-best-practices, supabase-postgres-best-practices,
|
|
19
19
|
airflow-best-practices, dbt-best-practices, kafka-best-practices,
|
|
20
20
|
spark-best-practices, snowflake-best-practices, pipeline-architecture-patterns
|
|
21
21
|
]
|
|
@@ -74,7 +74,7 @@ skills:
|
|
|
74
74
|
airflow-best-practices:
|
|
75
75
|
class: BestPracticeSkill
|
|
76
76
|
description: "Apache Airflow best practices for DAG authoring, testing, and production deployment"
|
|
77
|
-
|
|
77
|
+
user_invocable: false
|
|
78
78
|
model_invocable: true
|
|
79
79
|
summary: "Best practices for Airflow DAG authoring, scheduling, testing, and production deployment"
|
|
80
80
|
keywords: [airflow, dag, scheduling, orchestration, testing, performance]
|
|
@@ -83,7 +83,7 @@ skills:
|
|
|
83
83
|
audit-agents:
|
|
84
84
|
class: ManagementSkill
|
|
85
85
|
description: "Audit agent dependencies and references"
|
|
86
|
-
|
|
86
|
+
user_invocable: true
|
|
87
87
|
model_invocable: true
|
|
88
88
|
summary: "Audit agent dependencies to ensure all skill and guide references are valid"
|
|
89
89
|
keywords: [audit, dependencies, validation, references]
|
|
@@ -92,7 +92,7 @@ skills:
|
|
|
92
92
|
aws-best-practices:
|
|
93
93
|
class: BestPracticeSkill
|
|
94
94
|
description: "AWS patterns from Well-Architected Framework"
|
|
95
|
-
|
|
95
|
+
user_invocable: false
|
|
96
96
|
model_invocable: true
|
|
97
97
|
summary: "AWS Well-Architected Framework patterns for scalable, secure cloud infrastructure"
|
|
98
98
|
keywords: [aws, cloud, well-architected, security, performance, cost]
|
|
@@ -101,7 +101,7 @@ skills:
|
|
|
101
101
|
claude-code-bible:
|
|
102
102
|
class: ManagementSkill
|
|
103
103
|
description: "Fetch and verify Claude Code official documentation. Use when checking official spec compliance or updating local reference docs."
|
|
104
|
-
|
|
104
|
+
user_invocable: true
|
|
105
105
|
model_invocable: false
|
|
106
106
|
summary: "Maintain up-to-date local copies of Claude Code official documentation"
|
|
107
107
|
keywords: [claude-code, documentation, spec, compliance, verification]
|
|
@@ -110,7 +110,7 @@ skills:
|
|
|
110
110
|
create-agent:
|
|
111
111
|
class: ManagementSkill
|
|
112
112
|
description: "Create a new agent with complete structure"
|
|
113
|
-
|
|
113
|
+
user_invocable: true
|
|
114
114
|
model_invocable: false
|
|
115
115
|
summary: "Create a new agent with complete directory structure and validation"
|
|
116
116
|
keywords: [create, agent, structure, validation]
|
|
@@ -119,7 +119,7 @@ skills:
|
|
|
119
119
|
dbt-best-practices:
|
|
120
120
|
class: BestPracticeSkill
|
|
121
121
|
description: "dbt best practices for SQL modeling, testing, and analytics engineering workflows"
|
|
122
|
-
|
|
122
|
+
user_invocable: false
|
|
123
123
|
model_invocable: true
|
|
124
124
|
summary: "Best practices for dbt project structure, modeling, testing, and documentation"
|
|
125
125
|
keywords: [dbt, sql, modeling, testing, analytics-engineering]
|
|
@@ -128,7 +128,7 @@ skills:
|
|
|
128
128
|
de-lead-routing:
|
|
129
129
|
class: RoutingSkill
|
|
130
130
|
description: "Routes data engineering tasks to the correct DE expert agent. Use when user requests data pipeline design, DAG authoring, SQL modeling, stream processing, or warehouse optimization."
|
|
131
|
-
|
|
131
|
+
user_invocable: false
|
|
132
132
|
model_invocable: true
|
|
133
133
|
summary: "Routes data engineering tasks to appropriate DE expert agents"
|
|
134
134
|
keywords: [routing, data-engineering, pipeline, airflow, dbt, spark, kafka, snowflake]
|
|
@@ -138,24 +138,25 @@ skills:
|
|
|
138
138
|
dev-lead-routing:
|
|
139
139
|
class: RoutingSkill
|
|
140
140
|
description: "Routes development tasks to the correct language or framework expert agent. Use when user requests code review, implementation, refactoring, or debugging."
|
|
141
|
-
|
|
141
|
+
user_invocable: false
|
|
142
142
|
model_invocable: true
|
|
143
143
|
summary: "Routes development tasks to appropriate language or framework expert agents"
|
|
144
144
|
keywords: [routing, development, code-review, implementation, refactoring]
|
|
145
145
|
routes_to: [
|
|
146
146
|
lang-golang-expert, lang-python-expert, lang-rust-expert, lang-kotlin-expert,
|
|
147
147
|
lang-typescript-expert, lang-java21-expert, fe-vercel-agent, fe-vuejs-agent,
|
|
148
|
-
fe-svelte-agent,
|
|
149
|
-
be-
|
|
150
|
-
|
|
151
|
-
arch-speckit-agent, infra-docker-expert,
|
|
148
|
+
fe-svelte-agent, fe-flutter-agent, be-fastapi-expert, be-springboot-expert,
|
|
149
|
+
be-go-backend-expert, be-nestjs-expert, be-express-expert, tool-npm-expert,
|
|
150
|
+
tool-optimizer, tool-bun-expert, db-supabase-expert, db-postgres-expert,
|
|
151
|
+
db-redis-expert, arch-documenter, arch-speckit-agent, infra-docker-expert,
|
|
152
|
+
infra-aws-expert
|
|
152
153
|
]
|
|
153
154
|
rule_references: []
|
|
154
155
|
|
|
155
156
|
dev-refactor:
|
|
156
157
|
class: DevelopmentSkill
|
|
157
158
|
description: "Refactor code for better structure and patterns"
|
|
158
|
-
|
|
159
|
+
user_invocable: true
|
|
159
160
|
model_invocable: true
|
|
160
161
|
summary: "Refactor code using language-specific expert agents for better structure and patterns"
|
|
161
162
|
keywords: [refactor, structure, patterns, naming, complexity]
|
|
@@ -164,7 +165,7 @@ skills:
|
|
|
164
165
|
dev-review:
|
|
165
166
|
class: DevelopmentSkill
|
|
166
167
|
description: "Review code against language-specific best practices"
|
|
167
|
-
|
|
168
|
+
user_invocable: true
|
|
168
169
|
model_invocable: true
|
|
169
170
|
summary: "Review code for best practices using language-specific expert agents"
|
|
170
171
|
keywords: [review, code-review, best-practices, quality]
|
|
@@ -173,7 +174,7 @@ skills:
|
|
|
173
174
|
docker-best-practices:
|
|
174
175
|
class: BestPracticeSkill
|
|
175
176
|
description: "Docker patterns for optimized containerization"
|
|
176
|
-
|
|
177
|
+
user_invocable: false
|
|
177
178
|
model_invocable: true
|
|
178
179
|
summary: "Docker patterns for building optimized and secure container images"
|
|
179
180
|
keywords: [docker, container, multi-stage, security, optimization]
|
|
@@ -182,16 +183,25 @@ skills:
|
|
|
182
183
|
fastapi-best-practices:
|
|
183
184
|
class: BestPracticeSkill
|
|
184
185
|
description: "FastAPI patterns for high-performance async APIs"
|
|
185
|
-
|
|
186
|
+
user_invocable: false
|
|
186
187
|
model_invocable: true
|
|
187
188
|
summary: "FastAPI patterns for building high-performance async APIs with Python"
|
|
188
189
|
keywords: [fastapi, python, async, api, performance]
|
|
189
190
|
rule_references: []
|
|
190
191
|
|
|
192
|
+
flutter-best-practices:
|
|
193
|
+
class: BestPracticeSkill
|
|
194
|
+
description: "Flutter/Dart best practices for widget composition, state management (Riverpod, BLoC), and cross-platform performance optimization"
|
|
195
|
+
user_invocable: false
|
|
196
|
+
model_invocable: true
|
|
197
|
+
summary: "Flutter/Dart best practices for widget composition, state management, and cross-platform mobile/desktop development"
|
|
198
|
+
keywords: [flutter, dart, riverpod, bloc, widget, cross-platform, mobile, performance]
|
|
199
|
+
rule_references: []
|
|
200
|
+
|
|
191
201
|
fix-refs:
|
|
192
202
|
class: ManagementSkill
|
|
193
203
|
description: "Fix broken agent references and symlinks"
|
|
194
|
-
|
|
204
|
+
user_invocable: true
|
|
195
205
|
model_invocable: false
|
|
196
206
|
summary: "Fix broken references, missing symlinks, and agent dependency issues"
|
|
197
207
|
keywords: [fix, references, symlinks, dependencies]
|
|
@@ -200,7 +210,7 @@ skills:
|
|
|
200
210
|
go-backend-best-practices:
|
|
201
211
|
class: BestPracticeSkill
|
|
202
212
|
description: "Go backend patterns from Uber style and standard layout"
|
|
203
|
-
|
|
213
|
+
user_invocable: false
|
|
204
214
|
model_invocable: true
|
|
205
215
|
summary: "Go backend patterns for building production-ready services"
|
|
206
216
|
keywords: [go, golang, backend, uber-style, standard-layout]
|
|
@@ -209,7 +219,7 @@ skills:
|
|
|
209
219
|
go-best-practices:
|
|
210
220
|
class: BestPracticeSkill
|
|
211
221
|
description: "Idiomatic Go patterns from Effective Go"
|
|
212
|
-
|
|
222
|
+
user_invocable: false
|
|
213
223
|
model_invocable: true
|
|
214
224
|
summary: "Idiomatic Go patterns and best practices from official documentation"
|
|
215
225
|
keywords: [go, golang, effective-go, formatting, naming, concurrency]
|
|
@@ -218,7 +228,7 @@ skills:
|
|
|
218
228
|
help:
|
|
219
229
|
class: SystemSkill
|
|
220
230
|
description: "Show help information for commands and system"
|
|
221
|
-
|
|
231
|
+
user_invocable: true
|
|
222
232
|
model_invocable: true
|
|
223
233
|
summary: "Show help information for commands, agents, and system rules"
|
|
224
234
|
keywords: [help, documentation, commands, agents, rules]
|
|
@@ -227,7 +237,7 @@ skills:
|
|
|
227
237
|
intent-detection:
|
|
228
238
|
class: IntentSkill
|
|
229
239
|
description: "Automatically detect user intent and route to appropriate agent"
|
|
230
|
-
|
|
240
|
+
user_invocable: false
|
|
231
241
|
model_invocable: true
|
|
232
242
|
summary: "Detect user intent and route to appropriate agent with transparency"
|
|
233
243
|
keywords: [intent, detection, routing, confidence, transparency]
|
|
@@ -236,7 +246,7 @@ skills:
|
|
|
236
246
|
kafka-best-practices:
|
|
237
247
|
class: BestPracticeSkill
|
|
238
248
|
description: "Apache Kafka best practices for event streaming, topic design, and producer-consumer patterns"
|
|
239
|
-
|
|
249
|
+
user_invocable: false
|
|
240
250
|
model_invocable: true
|
|
241
251
|
summary: "Best practices for Kafka producer-consumer patterns, topic design, and performance"
|
|
242
252
|
keywords: [kafka, streaming, event, producer, consumer, performance]
|
|
@@ -245,7 +255,7 @@ skills:
|
|
|
245
255
|
kotlin-best-practices:
|
|
246
256
|
class: BestPracticeSkill
|
|
247
257
|
description: "Idiomatic Kotlin patterns from JetBrains conventions"
|
|
248
|
-
|
|
258
|
+
user_invocable: false
|
|
249
259
|
model_invocable: true
|
|
250
260
|
summary: "Idiomatic Kotlin patterns and best practices from official JetBrains documentation"
|
|
251
261
|
keywords: [kotlin, jetbrains, naming, null-safety, coroutines]
|
|
@@ -254,7 +264,7 @@ skills:
|
|
|
254
264
|
lists:
|
|
255
265
|
class: SystemSkill
|
|
256
266
|
description: "Show all available commands"
|
|
257
|
-
|
|
267
|
+
user_invocable: true
|
|
258
268
|
model_invocable: true
|
|
259
269
|
summary: "Show all available commands with optional filtering and detailed information"
|
|
260
270
|
keywords: [lists, commands, categories, system]
|
|
@@ -263,7 +273,7 @@ skills:
|
|
|
263
273
|
memory-management:
|
|
264
274
|
class: MemorySkill
|
|
265
275
|
description: "Memory persistence operations using claude-mem"
|
|
266
|
-
|
|
276
|
+
user_invocable: false
|
|
267
277
|
model_invocable: true
|
|
268
278
|
summary: "Provide memory persistence operations using claude-mem for session context"
|
|
269
279
|
keywords: [memory, claude-mem, persistence, session, context]
|
|
@@ -272,7 +282,7 @@ skills:
|
|
|
272
282
|
memory-recall:
|
|
273
283
|
class: MemorySkill
|
|
274
284
|
description: "Search and recall memories from claude-mem"
|
|
275
|
-
|
|
285
|
+
user_invocable: true
|
|
276
286
|
model_invocable: true
|
|
277
287
|
summary: "Search and recall relevant memories from claude-mem using semantic search"
|
|
278
288
|
keywords: [memory, recall, search, semantic, claude-mem]
|
|
@@ -281,7 +291,7 @@ skills:
|
|
|
281
291
|
memory-save:
|
|
282
292
|
class: MemorySkill
|
|
283
293
|
description: "Save current session context to claude-mem"
|
|
284
|
-
|
|
294
|
+
user_invocable: true
|
|
285
295
|
model_invocable: false
|
|
286
296
|
summary: "Save current session context to claude-mem for persistence across compaction"
|
|
287
297
|
keywords: [memory, save, session, context, claude-mem]
|
|
@@ -290,7 +300,7 @@ skills:
|
|
|
290
300
|
monitoring-setup:
|
|
291
301
|
class: MonitoringSkill
|
|
292
302
|
description: "Enable/disable OpenTelemetry console monitoring for Claude Code usage tracking"
|
|
293
|
-
|
|
303
|
+
user_invocable: true
|
|
294
304
|
model_invocable: true
|
|
295
305
|
summary: "Enable or disable OpenTelemetry console monitoring for usage metrics"
|
|
296
306
|
keywords: [monitoring, telemetry, otel, metrics, usage]
|
|
@@ -299,7 +309,7 @@ skills:
|
|
|
299
309
|
npm-audit:
|
|
300
310
|
class: PackageSkill
|
|
301
311
|
description: "Audit npm dependencies for security and updates"
|
|
302
|
-
|
|
312
|
+
user_invocable: true
|
|
303
313
|
model_invocable: true
|
|
304
314
|
summary: "Audit npm dependencies for security vulnerabilities and outdated packages"
|
|
305
315
|
keywords: [npm, audit, security, dependencies, vulnerabilities]
|
|
@@ -308,7 +318,7 @@ skills:
|
|
|
308
318
|
npm-publish:
|
|
309
319
|
class: PackageSkill
|
|
310
320
|
description: "Publish package to npm registry with pre-checks"
|
|
311
|
-
|
|
321
|
+
user_invocable: true
|
|
312
322
|
model_invocable: false
|
|
313
323
|
summary: "Publish package to npm registry with comprehensive pre-publish checks"
|
|
314
324
|
keywords: [npm, publish, package, registry, validation]
|
|
@@ -317,7 +327,7 @@ skills:
|
|
|
317
327
|
npm-version:
|
|
318
328
|
class: PackageSkill
|
|
319
329
|
description: "Manage semantic versions for npm packages"
|
|
320
|
-
|
|
330
|
+
user_invocable: true
|
|
321
331
|
model_invocable: false
|
|
322
332
|
summary: "Manage semantic versions for npm packages with changelog and git integration"
|
|
323
333
|
keywords: [npm, version, semantic, changelog, git]
|
|
@@ -326,7 +336,7 @@ skills:
|
|
|
326
336
|
optimize-analyze:
|
|
327
337
|
class: OptimizationSkill
|
|
328
338
|
description: "Analyze bundle size and performance metrics"
|
|
329
|
-
|
|
339
|
+
user_invocable: true
|
|
330
340
|
model_invocable: true
|
|
331
341
|
summary: "Analyze bundle size and performance metrics for web applications"
|
|
332
342
|
keywords: [optimize, analyze, bundle, performance, metrics]
|
|
@@ -335,7 +345,7 @@ skills:
|
|
|
335
345
|
optimize-bundle:
|
|
336
346
|
class: OptimizationSkill
|
|
337
347
|
description: "Apply bundle size optimizations"
|
|
338
|
-
|
|
348
|
+
user_invocable: true
|
|
339
349
|
model_invocable: false
|
|
340
350
|
summary: "Apply bundle size optimizations to reduce build output and improve performance"
|
|
341
351
|
keywords: [optimize, bundle, size, performance, build]
|
|
@@ -344,7 +354,7 @@ skills:
|
|
|
344
354
|
optimize-report:
|
|
345
355
|
class: OptimizationSkill
|
|
346
356
|
description: "Generate comprehensive optimization report"
|
|
347
|
-
|
|
357
|
+
user_invocable: true
|
|
348
358
|
model_invocable: true
|
|
349
359
|
summary: "Generate comprehensive optimization report with analysis, metrics, and recommendations"
|
|
350
360
|
keywords: [optimize, report, analysis, metrics, recommendations]
|
|
@@ -353,7 +363,7 @@ skills:
|
|
|
353
363
|
pipeline-architecture-patterns:
|
|
354
364
|
class: BestPracticeSkill
|
|
355
365
|
description: "Data pipeline architecture patterns for ETL/ELT design, orchestration, and data quality frameworks"
|
|
356
|
-
|
|
366
|
+
user_invocable: false
|
|
357
367
|
model_invocable: true
|
|
358
368
|
summary: "Architecture patterns for ETL/ELT pipelines, orchestration, and data quality"
|
|
359
369
|
keywords: [pipeline, architecture, etl, elt, orchestration, data-quality]
|
|
@@ -362,7 +372,7 @@ skills:
|
|
|
362
372
|
postgres-best-practices:
|
|
363
373
|
class: BestPracticeSkill
|
|
364
374
|
description: "PostgreSQL best practices for database design, query optimization, and performance tuning"
|
|
365
|
-
|
|
375
|
+
user_invocable: false
|
|
366
376
|
model_invocable: true
|
|
367
377
|
summary: "PostgreSQL best practices for query optimization, indexing, and performance tuning"
|
|
368
378
|
keywords: [postgres, postgresql, database, optimization, performance]
|
|
@@ -371,7 +381,7 @@ skills:
|
|
|
371
381
|
python-best-practices:
|
|
372
382
|
class: BestPracticeSkill
|
|
373
383
|
description: "Pythonic patterns from PEP 8 and PEP 20"
|
|
374
|
-
|
|
384
|
+
user_invocable: false
|
|
375
385
|
model_invocable: true
|
|
376
386
|
summary: "Idiomatic Python patterns and best practices from official Python documentation"
|
|
377
387
|
keywords: [python, pep8, pep20, zen, idioms]
|
|
@@ -380,7 +390,7 @@ skills:
|
|
|
380
390
|
qa-lead-routing:
|
|
381
391
|
class: RoutingSkill
|
|
382
392
|
description: "Coordinates QA workflow across planning, writing, and execution agents. Use when user requests testing, quality assurance, or test documentation."
|
|
383
|
-
|
|
393
|
+
user_invocable: false
|
|
384
394
|
model_invocable: true
|
|
385
395
|
summary: "Coordinates QA team activities by routing tasks to qa-planner, qa-writer, and qa-engineer"
|
|
386
396
|
keywords: [routing, qa, testing, quality-assurance, coordination]
|
|
@@ -390,7 +400,7 @@ skills:
|
|
|
390
400
|
react-best-practices:
|
|
391
401
|
class: BestPracticeSkill
|
|
392
402
|
description: "React/Next.js performance optimization with 40+ rules in 8 categories"
|
|
393
|
-
|
|
403
|
+
user_invocable: false
|
|
394
404
|
model_invocable: true
|
|
395
405
|
summary: "React/Next.js performance optimization patterns and best practices"
|
|
396
406
|
keywords: [react, nextjs, performance, optimization, bundle]
|
|
@@ -399,7 +409,7 @@ skills:
|
|
|
399
409
|
redis-best-practices:
|
|
400
410
|
class: BestPracticeSkill
|
|
401
411
|
description: "Redis best practices for caching, data structures, and in-memory data architecture"
|
|
402
|
-
|
|
412
|
+
user_invocable: false
|
|
403
413
|
model_invocable: true
|
|
404
414
|
summary: "Redis best practices for caching patterns, data structures, and performance"
|
|
405
415
|
keywords: [redis, cache, data-structures, in-memory, performance]
|
|
@@ -408,7 +418,7 @@ skills:
|
|
|
408
418
|
result-aggregation:
|
|
409
419
|
class: IntentSkill
|
|
410
420
|
description: "Aggregate parallel agent results into concise output"
|
|
411
|
-
|
|
421
|
+
user_invocable: false
|
|
412
422
|
model_invocable: true
|
|
413
423
|
summary: "Aggregate and format results from multiple parallel agent executions"
|
|
414
424
|
keywords: [aggregation, parallel, batch, results, ecomode]
|
|
@@ -417,7 +427,7 @@ skills:
|
|
|
417
427
|
rust-best-practices:
|
|
418
428
|
class: BestPracticeSkill
|
|
419
429
|
description: "Idiomatic Rust patterns from official guidelines"
|
|
420
|
-
|
|
430
|
+
user_invocable: false
|
|
421
431
|
model_invocable: true
|
|
422
432
|
summary: "Idiomatic Rust patterns and best practices from official documentation"
|
|
423
433
|
keywords: [rust, ownership, borrowing, safety, concurrency]
|
|
@@ -426,7 +436,7 @@ skills:
|
|
|
426
436
|
skills-sh-search:
|
|
427
437
|
class: ExternalSkillSourceSkill
|
|
428
438
|
description: "Search and install skills from skills.sh marketplace when internal skills are insufficient"
|
|
429
|
-
|
|
439
|
+
user_invocable: true
|
|
430
440
|
model_invocable: true
|
|
431
441
|
summary: "Search skills.sh marketplace for external skills and install them into the project"
|
|
432
442
|
keywords: [skills-sh, marketplace, external, install, search, discover, npx]
|
|
@@ -435,7 +445,7 @@ skills:
|
|
|
435
445
|
sauron-watch:
|
|
436
446
|
class: VerificationSkill
|
|
437
447
|
description: "Full R017 verification (5+3 rounds) before commit"
|
|
438
|
-
|
|
448
|
+
user_invocable: true
|
|
439
449
|
model_invocable: false
|
|
440
450
|
summary: "Execute full R017 verification with 5 rounds of manager verification and 3 rounds of deep review"
|
|
441
451
|
keywords: [verification, r017, sync, validation, compliance]
|
|
@@ -444,7 +454,7 @@ skills:
|
|
|
444
454
|
secretary-routing:
|
|
445
455
|
class: RoutingSkill
|
|
446
456
|
description: "Routes agent management tasks to the correct manager agent. Use when user requests agent creation, updates, audits, git operations, sync checks, or verification."
|
|
447
|
-
|
|
457
|
+
user_invocable: false
|
|
448
458
|
model_invocable: true
|
|
449
459
|
summary: "Routes agent management tasks to appropriate manager agents"
|
|
450
460
|
keywords: [routing, management, agent-creation, git, memory, verification]
|
|
@@ -454,7 +464,7 @@ skills:
|
|
|
454
464
|
snowflake-best-practices:
|
|
455
465
|
class: BestPracticeSkill
|
|
456
466
|
description: "Snowflake best practices for cloud data warehouse design, query optimization, and cost management"
|
|
457
|
-
|
|
467
|
+
user_invocable: false
|
|
458
468
|
model_invocable: true
|
|
459
469
|
summary: "Snowflake best practices for warehouse design, query optimization, and cost management"
|
|
460
470
|
keywords: [snowflake, warehouse, clustering, optimization, cost]
|
|
@@ -463,7 +473,7 @@ skills:
|
|
|
463
473
|
spark-best-practices:
|
|
464
474
|
class: BestPracticeSkill
|
|
465
475
|
description: "Apache Spark best practices for PySpark and Scala distributed data processing"
|
|
466
|
-
|
|
476
|
+
user_invocable: false
|
|
467
477
|
model_invocable: true
|
|
468
478
|
summary: "Apache Spark best practices for performance optimization and resource management"
|
|
469
479
|
keywords: [spark, pyspark, distributed, performance, optimization]
|
|
@@ -472,7 +482,7 @@ skills:
|
|
|
472
482
|
springboot-best-practices:
|
|
473
483
|
class: BestPracticeSkill
|
|
474
484
|
description: "Spring Boot patterns for enterprise Java applications"
|
|
475
|
-
|
|
485
|
+
user_invocable: false
|
|
476
486
|
model_invocable: true
|
|
477
487
|
summary: "Spring Boot patterns for enterprise Java applications with layered architecture"
|
|
478
488
|
keywords: [springboot, java, enterprise, dependency-injection, rest]
|
|
@@ -481,7 +491,7 @@ skills:
|
|
|
481
491
|
status:
|
|
482
492
|
class: SystemSkill
|
|
483
493
|
description: "Show system status and health checks"
|
|
484
|
-
|
|
494
|
+
user_invocable: true
|
|
485
495
|
model_invocable: true
|
|
486
496
|
summary: "Show comprehensive system status including agents, skills, guides, and health checks"
|
|
487
497
|
keywords: [status, health, system, agents, skills]
|
|
@@ -490,7 +500,7 @@ skills:
|
|
|
490
500
|
supabase-postgres-best-practices:
|
|
491
501
|
class: BestPracticeSkill
|
|
492
502
|
description: "PostgreSQL performance optimization guidelines from Supabase. Apply when writing SQL, designing schemas, configuring RLS, or optimizing database performance."
|
|
493
|
-
|
|
503
|
+
user_invocable: false
|
|
494
504
|
model_invocable: true
|
|
495
505
|
summary: "Supabase PostgreSQL best practices for query performance, RLS, and schema design"
|
|
496
506
|
keywords: [supabase, postgres, postgresql, rls, performance, security]
|
|
@@ -499,7 +509,7 @@ skills:
|
|
|
499
509
|
typescript-best-practices:
|
|
500
510
|
class: BestPracticeSkill
|
|
501
511
|
description: "Type-safe TypeScript patterns from industry standards"
|
|
502
|
-
|
|
512
|
+
user_invocable: false
|
|
503
513
|
model_invocable: true
|
|
504
514
|
summary: "Type-safe TypeScript patterns and best practices from industry standards"
|
|
505
515
|
keywords: [typescript, type-safety, strict-mode, interfaces, generics]
|
|
@@ -508,7 +518,7 @@ skills:
|
|
|
508
518
|
update-docs:
|
|
509
519
|
class: ManagementSkill
|
|
510
520
|
description: "Sync documentation with project structure"
|
|
511
|
-
|
|
521
|
+
user_invocable: true
|
|
512
522
|
model_invocable: false
|
|
513
523
|
summary: "Ensure documentation accurately reflects current project state and agents work together"
|
|
514
524
|
keywords: [update, documentation, sync, validation, consistency]
|
|
@@ -517,7 +527,7 @@ skills:
|
|
|
517
527
|
update-external:
|
|
518
528
|
class: ManagementSkill
|
|
519
529
|
description: "Update agents from external sources (GitHub, docs, etc.)"
|
|
520
|
-
|
|
530
|
+
user_invocable: true
|
|
521
531
|
model_invocable: false
|
|
522
532
|
summary: "Update agents, skills, and guides from external sources to latest versions"
|
|
523
533
|
keywords: [update, external, github, sources, versioning]
|
|
@@ -526,7 +536,7 @@ skills:
|
|
|
526
536
|
vercel-deploy:
|
|
527
537
|
class: DeploymentSkill
|
|
528
538
|
description: "Deploy applications to Vercel with auto-detection and preview URLs"
|
|
529
|
-
|
|
539
|
+
user_invocable: true
|
|
530
540
|
model_invocable: true
|
|
531
541
|
summary: "Deploy applications to Vercel with framework auto-detection and preview URLs"
|
|
532
542
|
keywords: [vercel, deploy, deployment, preview, framework]
|
|
@@ -535,7 +545,7 @@ skills:
|
|
|
535
545
|
web-design-guidelines:
|
|
536
546
|
class: WritingSkill
|
|
537
547
|
description: "UI code review with 100+ rules for accessibility, performance, and UX"
|
|
538
|
-
|
|
548
|
+
user_invocable: false
|
|
539
549
|
model_invocable: true
|
|
540
550
|
summary: "UI code review guidelines for accessibility, performance, and UX best practices"
|
|
541
551
|
keywords: [ui, accessibility, ux, performance, design]
|
|
@@ -544,7 +554,7 @@ skills:
|
|
|
544
554
|
writing-clearly-and-concisely:
|
|
545
555
|
class: WritingSkill
|
|
546
556
|
description: "Apply Strunk's timeless writing rules to ANY prose humans will read—documentation, commit messages, error messages, explanations, reports, or UI text. Makes your writing clearer, stronger, and more professional."
|
|
547
|
-
|
|
557
|
+
user_invocable: true
|
|
548
558
|
model_invocable: true
|
|
549
559
|
summary: "Apply Strunk's Elements of Style rules to improve clarity and conciseness in writing"
|
|
550
560
|
keywords: [writing, clarity, conciseness, elements-of-style, strunk]
|
|
@@ -27,6 +27,7 @@ Detect tech stack by checking indicator files and dependency manifests.
|
|
|
27
27
|
| React/Next.js | next.config.*, package.json (next dep) | fe-vercel-agent | react-best-practices |
|
|
28
28
|
| Vue.js | vue.config.*, *.vue | fe-vuejs-agent | - |
|
|
29
29
|
| Svelte | svelte.config.*, *.svelte | fe-svelte-agent | - |
|
|
30
|
+
| Flutter/Dart | pubspec.yaml, *.dart, lib/main.dart | fe-flutter-agent | - |
|
|
30
31
|
| Python | pyproject.toml, requirements.txt, *.py | lang-python-expert | python-best-practices |
|
|
31
32
|
| FastAPI | "fastapi" in imports/deps | be-fastapi-expert | fastapi-best-practices |
|
|
32
33
|
| Go | go.mod, *.go | lang-golang-expert | go-best-practices |
|
|
@@ -12,7 +12,7 @@ context: fork
|
|
|
12
12
|
| Type | Agents |
|
|
13
13
|
|------|--------|
|
|
14
14
|
| Language | lang-golang-expert, lang-python-expert, lang-rust-expert, lang-kotlin-expert, lang-typescript-expert, lang-java21-expert |
|
|
15
|
-
| Frontend | fe-vercel-agent, fe-vuejs-agent, fe-svelte-agent |
|
|
15
|
+
| Frontend | fe-vercel-agent, fe-vuejs-agent, fe-svelte-agent, fe-flutter-agent |
|
|
16
16
|
| Backend | be-fastapi-expert, be-springboot-expert, be-go-backend-expert, be-nestjs-expert, be-express-expert, be-django-expert |
|
|
17
17
|
| Tooling | tool-npm-expert, tool-optimizer, tool-bun-expert |
|
|
18
18
|
| Database | db-supabase-expert, db-postgres-expert, db-redis-expert |
|
|
@@ -32,6 +32,7 @@ context: fork
|
|
|
32
32
|
| `.js/.jsx` (React) | fe-vercel-agent |
|
|
33
33
|
| `.vue` | fe-vuejs-agent |
|
|
34
34
|
| `.svelte` | fe-svelte-agent |
|
|
35
|
+
| `.dart`, `pubspec.yaml` | fe-flutter-agent |
|
|
35
36
|
| `.sql` (PG) | db-postgres-expert |
|
|
36
37
|
| `.sql` (Supabase) | db-supabase-expert |
|
|
37
38
|
| `Dockerfile`, `*.dockerfile` | infra-docker-expert |
|
|
@@ -51,6 +52,7 @@ context: fork
|
|
|
51
52
|
| react, next.js, vercel | fe-vercel-agent |
|
|
52
53
|
| vue | fe-vuejs-agent |
|
|
53
54
|
| svelte | fe-svelte-agent |
|
|
55
|
+
| flutter, dart, riverpod, bloc, widget | fe-flutter-agent |
|
|
54
56
|
| fastapi | be-fastapi-expert |
|
|
55
57
|
| django | be-django-expert |
|
|
56
58
|
| spring, springboot | be-springboot-expert |
|
|
@@ -116,7 +118,7 @@ When file extension or keyword doesn't match any existing agent:
|
|
|
116
118
|
```
|
|
117
119
|
User Input → No matching development agent
|
|
118
120
|
↓
|
|
119
|
-
Detect: File extension (.rb, .swift, .
|
|
121
|
+
Detect: File extension (.rb, .swift, .php, etc.) or language keyword
|
|
120
122
|
↓
|
|
121
123
|
Delegate to mgr-creator with context:
|
|
122
124
|
domain: detected language/framework
|