oh-my-customcode 0.17.1 → 0.18.1
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/package.json +1 -1
- package/templates/.claude/ontology/schema.yaml +1 -1
- package/templates/.claude/ontology/skills.yaml +52 -52
- package/templates/.claude/skills/codex-exec/SKILL.md +29 -1
- package/templates/.claude/skills/codex-exec/scripts/codex-wrapper.cjs +17 -0
- package/templates/.claude/skills/intent-detection/SKILL.md +62 -0
- package/templates/.claude/skills/intent-detection/patterns/agent-triggers.yaml +36 -0
- package/templates/.claude/skills/multi-model-verification/SKILL.md +1 -1
- package/templates/.claude/skills/structured-dev-cycle/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -67,7 +67,7 @@ entity_types:
|
|
|
67
67
|
properties:
|
|
68
68
|
name: { type: string, required: true }
|
|
69
69
|
description: { type: string, required: true }
|
|
70
|
-
|
|
70
|
+
user-invocable: { type: boolean, default: true }
|
|
71
71
|
model_invocable: { type: boolean, default: true }
|
|
72
72
|
|
|
73
73
|
Rule:
|
|
@@ -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,7 +138,7 @@ 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]
|
|
@@ -155,7 +155,7 @@ skills:
|
|
|
155
155
|
dev-refactor:
|
|
156
156
|
class: DevelopmentSkill
|
|
157
157
|
description: "Refactor code for better structure and patterns"
|
|
158
|
-
|
|
158
|
+
user-invocable: true
|
|
159
159
|
model_invocable: true
|
|
160
160
|
summary: "Refactor code using language-specific expert agents for better structure and patterns"
|
|
161
161
|
keywords: [refactor, structure, patterns, naming, complexity]
|
|
@@ -164,7 +164,7 @@ skills:
|
|
|
164
164
|
dev-review:
|
|
165
165
|
class: DevelopmentSkill
|
|
166
166
|
description: "Review code against language-specific best practices"
|
|
167
|
-
|
|
167
|
+
user-invocable: true
|
|
168
168
|
model_invocable: true
|
|
169
169
|
summary: "Review code for best practices using language-specific expert agents"
|
|
170
170
|
keywords: [review, code-review, best-practices, quality]
|
|
@@ -173,7 +173,7 @@ skills:
|
|
|
173
173
|
docker-best-practices:
|
|
174
174
|
class: BestPracticeSkill
|
|
175
175
|
description: "Docker patterns for optimized containerization"
|
|
176
|
-
|
|
176
|
+
user-invocable: false
|
|
177
177
|
model_invocable: true
|
|
178
178
|
summary: "Docker patterns for building optimized and secure container images"
|
|
179
179
|
keywords: [docker, container, multi-stage, security, optimization]
|
|
@@ -182,7 +182,7 @@ skills:
|
|
|
182
182
|
fastapi-best-practices:
|
|
183
183
|
class: BestPracticeSkill
|
|
184
184
|
description: "FastAPI patterns for high-performance async APIs"
|
|
185
|
-
|
|
185
|
+
user-invocable: false
|
|
186
186
|
model_invocable: true
|
|
187
187
|
summary: "FastAPI patterns for building high-performance async APIs with Python"
|
|
188
188
|
keywords: [fastapi, python, async, api, performance]
|
|
@@ -191,7 +191,7 @@ skills:
|
|
|
191
191
|
fix-refs:
|
|
192
192
|
class: ManagementSkill
|
|
193
193
|
description: "Fix broken agent references and symlinks"
|
|
194
|
-
|
|
194
|
+
user-invocable: true
|
|
195
195
|
model_invocable: false
|
|
196
196
|
summary: "Fix broken references, missing symlinks, and agent dependency issues"
|
|
197
197
|
keywords: [fix, references, symlinks, dependencies]
|
|
@@ -200,7 +200,7 @@ skills:
|
|
|
200
200
|
go-backend-best-practices:
|
|
201
201
|
class: BestPracticeSkill
|
|
202
202
|
description: "Go backend patterns from Uber style and standard layout"
|
|
203
|
-
|
|
203
|
+
user-invocable: false
|
|
204
204
|
model_invocable: true
|
|
205
205
|
summary: "Go backend patterns for building production-ready services"
|
|
206
206
|
keywords: [go, golang, backend, uber-style, standard-layout]
|
|
@@ -209,7 +209,7 @@ skills:
|
|
|
209
209
|
go-best-practices:
|
|
210
210
|
class: BestPracticeSkill
|
|
211
211
|
description: "Idiomatic Go patterns from Effective Go"
|
|
212
|
-
|
|
212
|
+
user-invocable: false
|
|
213
213
|
model_invocable: true
|
|
214
214
|
summary: "Idiomatic Go patterns and best practices from official documentation"
|
|
215
215
|
keywords: [go, golang, effective-go, formatting, naming, concurrency]
|
|
@@ -218,7 +218,7 @@ skills:
|
|
|
218
218
|
help:
|
|
219
219
|
class: SystemSkill
|
|
220
220
|
description: "Show help information for commands and system"
|
|
221
|
-
|
|
221
|
+
user-invocable: true
|
|
222
222
|
model_invocable: true
|
|
223
223
|
summary: "Show help information for commands, agents, and system rules"
|
|
224
224
|
keywords: [help, documentation, commands, agents, rules]
|
|
@@ -227,7 +227,7 @@ skills:
|
|
|
227
227
|
intent-detection:
|
|
228
228
|
class: IntentSkill
|
|
229
229
|
description: "Automatically detect user intent and route to appropriate agent"
|
|
230
|
-
|
|
230
|
+
user-invocable: false
|
|
231
231
|
model_invocable: true
|
|
232
232
|
summary: "Detect user intent and route to appropriate agent with transparency"
|
|
233
233
|
keywords: [intent, detection, routing, confidence, transparency]
|
|
@@ -236,7 +236,7 @@ skills:
|
|
|
236
236
|
kafka-best-practices:
|
|
237
237
|
class: BestPracticeSkill
|
|
238
238
|
description: "Apache Kafka best practices for event streaming, topic design, and producer-consumer patterns"
|
|
239
|
-
|
|
239
|
+
user-invocable: false
|
|
240
240
|
model_invocable: true
|
|
241
241
|
summary: "Best practices for Kafka producer-consumer patterns, topic design, and performance"
|
|
242
242
|
keywords: [kafka, streaming, event, producer, consumer, performance]
|
|
@@ -245,7 +245,7 @@ skills:
|
|
|
245
245
|
kotlin-best-practices:
|
|
246
246
|
class: BestPracticeSkill
|
|
247
247
|
description: "Idiomatic Kotlin patterns from JetBrains conventions"
|
|
248
|
-
|
|
248
|
+
user-invocable: false
|
|
249
249
|
model_invocable: true
|
|
250
250
|
summary: "Idiomatic Kotlin patterns and best practices from official JetBrains documentation"
|
|
251
251
|
keywords: [kotlin, jetbrains, naming, null-safety, coroutines]
|
|
@@ -254,7 +254,7 @@ skills:
|
|
|
254
254
|
lists:
|
|
255
255
|
class: SystemSkill
|
|
256
256
|
description: "Show all available commands"
|
|
257
|
-
|
|
257
|
+
user-invocable: true
|
|
258
258
|
model_invocable: true
|
|
259
259
|
summary: "Show all available commands with optional filtering and detailed information"
|
|
260
260
|
keywords: [lists, commands, categories, system]
|
|
@@ -263,7 +263,7 @@ skills:
|
|
|
263
263
|
memory-management:
|
|
264
264
|
class: MemorySkill
|
|
265
265
|
description: "Memory persistence operations using claude-mem"
|
|
266
|
-
|
|
266
|
+
user-invocable: false
|
|
267
267
|
model_invocable: true
|
|
268
268
|
summary: "Provide memory persistence operations using claude-mem for session context"
|
|
269
269
|
keywords: [memory, claude-mem, persistence, session, context]
|
|
@@ -272,7 +272,7 @@ skills:
|
|
|
272
272
|
memory-recall:
|
|
273
273
|
class: MemorySkill
|
|
274
274
|
description: "Search and recall memories from claude-mem"
|
|
275
|
-
|
|
275
|
+
user-invocable: true
|
|
276
276
|
model_invocable: true
|
|
277
277
|
summary: "Search and recall relevant memories from claude-mem using semantic search"
|
|
278
278
|
keywords: [memory, recall, search, semantic, claude-mem]
|
|
@@ -281,7 +281,7 @@ skills:
|
|
|
281
281
|
memory-save:
|
|
282
282
|
class: MemorySkill
|
|
283
283
|
description: "Save current session context to claude-mem"
|
|
284
|
-
|
|
284
|
+
user-invocable: true
|
|
285
285
|
model_invocable: false
|
|
286
286
|
summary: "Save current session context to claude-mem for persistence across compaction"
|
|
287
287
|
keywords: [memory, save, session, context, claude-mem]
|
|
@@ -290,7 +290,7 @@ skills:
|
|
|
290
290
|
monitoring-setup:
|
|
291
291
|
class: MonitoringSkill
|
|
292
292
|
description: "Enable/disable OpenTelemetry console monitoring for Claude Code usage tracking"
|
|
293
|
-
|
|
293
|
+
user-invocable: true
|
|
294
294
|
model_invocable: true
|
|
295
295
|
summary: "Enable or disable OpenTelemetry console monitoring for usage metrics"
|
|
296
296
|
keywords: [monitoring, telemetry, otel, metrics, usage]
|
|
@@ -299,7 +299,7 @@ skills:
|
|
|
299
299
|
npm-audit:
|
|
300
300
|
class: PackageSkill
|
|
301
301
|
description: "Audit npm dependencies for security and updates"
|
|
302
|
-
|
|
302
|
+
user-invocable: true
|
|
303
303
|
model_invocable: true
|
|
304
304
|
summary: "Audit npm dependencies for security vulnerabilities and outdated packages"
|
|
305
305
|
keywords: [npm, audit, security, dependencies, vulnerabilities]
|
|
@@ -308,7 +308,7 @@ skills:
|
|
|
308
308
|
npm-publish:
|
|
309
309
|
class: PackageSkill
|
|
310
310
|
description: "Publish package to npm registry with pre-checks"
|
|
311
|
-
|
|
311
|
+
user-invocable: true
|
|
312
312
|
model_invocable: false
|
|
313
313
|
summary: "Publish package to npm registry with comprehensive pre-publish checks"
|
|
314
314
|
keywords: [npm, publish, package, registry, validation]
|
|
@@ -317,7 +317,7 @@ skills:
|
|
|
317
317
|
npm-version:
|
|
318
318
|
class: PackageSkill
|
|
319
319
|
description: "Manage semantic versions for npm packages"
|
|
320
|
-
|
|
320
|
+
user-invocable: true
|
|
321
321
|
model_invocable: false
|
|
322
322
|
summary: "Manage semantic versions for npm packages with changelog and git integration"
|
|
323
323
|
keywords: [npm, version, semantic, changelog, git]
|
|
@@ -326,7 +326,7 @@ skills:
|
|
|
326
326
|
optimize-analyze:
|
|
327
327
|
class: OptimizationSkill
|
|
328
328
|
description: "Analyze bundle size and performance metrics"
|
|
329
|
-
|
|
329
|
+
user-invocable: true
|
|
330
330
|
model_invocable: true
|
|
331
331
|
summary: "Analyze bundle size and performance metrics for web applications"
|
|
332
332
|
keywords: [optimize, analyze, bundle, performance, metrics]
|
|
@@ -335,7 +335,7 @@ skills:
|
|
|
335
335
|
optimize-bundle:
|
|
336
336
|
class: OptimizationSkill
|
|
337
337
|
description: "Apply bundle size optimizations"
|
|
338
|
-
|
|
338
|
+
user-invocable: true
|
|
339
339
|
model_invocable: false
|
|
340
340
|
summary: "Apply bundle size optimizations to reduce build output and improve performance"
|
|
341
341
|
keywords: [optimize, bundle, size, performance, build]
|
|
@@ -344,7 +344,7 @@ skills:
|
|
|
344
344
|
optimize-report:
|
|
345
345
|
class: OptimizationSkill
|
|
346
346
|
description: "Generate comprehensive optimization report"
|
|
347
|
-
|
|
347
|
+
user-invocable: true
|
|
348
348
|
model_invocable: true
|
|
349
349
|
summary: "Generate comprehensive optimization report with analysis, metrics, and recommendations"
|
|
350
350
|
keywords: [optimize, report, analysis, metrics, recommendations]
|
|
@@ -353,7 +353,7 @@ skills:
|
|
|
353
353
|
pipeline-architecture-patterns:
|
|
354
354
|
class: BestPracticeSkill
|
|
355
355
|
description: "Data pipeline architecture patterns for ETL/ELT design, orchestration, and data quality frameworks"
|
|
356
|
-
|
|
356
|
+
user-invocable: false
|
|
357
357
|
model_invocable: true
|
|
358
358
|
summary: "Architecture patterns for ETL/ELT pipelines, orchestration, and data quality"
|
|
359
359
|
keywords: [pipeline, architecture, etl, elt, orchestration, data-quality]
|
|
@@ -362,7 +362,7 @@ skills:
|
|
|
362
362
|
postgres-best-practices:
|
|
363
363
|
class: BestPracticeSkill
|
|
364
364
|
description: "PostgreSQL best practices for database design, query optimization, and performance tuning"
|
|
365
|
-
|
|
365
|
+
user-invocable: false
|
|
366
366
|
model_invocable: true
|
|
367
367
|
summary: "PostgreSQL best practices for query optimization, indexing, and performance tuning"
|
|
368
368
|
keywords: [postgres, postgresql, database, optimization, performance]
|
|
@@ -371,7 +371,7 @@ skills:
|
|
|
371
371
|
python-best-practices:
|
|
372
372
|
class: BestPracticeSkill
|
|
373
373
|
description: "Pythonic patterns from PEP 8 and PEP 20"
|
|
374
|
-
|
|
374
|
+
user-invocable: false
|
|
375
375
|
model_invocable: true
|
|
376
376
|
summary: "Idiomatic Python patterns and best practices from official Python documentation"
|
|
377
377
|
keywords: [python, pep8, pep20, zen, idioms]
|
|
@@ -380,7 +380,7 @@ skills:
|
|
|
380
380
|
qa-lead-routing:
|
|
381
381
|
class: RoutingSkill
|
|
382
382
|
description: "Coordinates QA workflow across planning, writing, and execution agents. Use when user requests testing, quality assurance, or test documentation."
|
|
383
|
-
|
|
383
|
+
user-invocable: false
|
|
384
384
|
model_invocable: true
|
|
385
385
|
summary: "Coordinates QA team activities by routing tasks to qa-planner, qa-writer, and qa-engineer"
|
|
386
386
|
keywords: [routing, qa, testing, quality-assurance, coordination]
|
|
@@ -390,7 +390,7 @@ skills:
|
|
|
390
390
|
react-best-practices:
|
|
391
391
|
class: BestPracticeSkill
|
|
392
392
|
description: "React/Next.js performance optimization with 40+ rules in 8 categories"
|
|
393
|
-
|
|
393
|
+
user-invocable: false
|
|
394
394
|
model_invocable: true
|
|
395
395
|
summary: "React/Next.js performance optimization patterns and best practices"
|
|
396
396
|
keywords: [react, nextjs, performance, optimization, bundle]
|
|
@@ -399,7 +399,7 @@ skills:
|
|
|
399
399
|
redis-best-practices:
|
|
400
400
|
class: BestPracticeSkill
|
|
401
401
|
description: "Redis best practices for caching, data structures, and in-memory data architecture"
|
|
402
|
-
|
|
402
|
+
user-invocable: false
|
|
403
403
|
model_invocable: true
|
|
404
404
|
summary: "Redis best practices for caching patterns, data structures, and performance"
|
|
405
405
|
keywords: [redis, cache, data-structures, in-memory, performance]
|
|
@@ -408,7 +408,7 @@ skills:
|
|
|
408
408
|
result-aggregation:
|
|
409
409
|
class: IntentSkill
|
|
410
410
|
description: "Aggregate parallel agent results into concise output"
|
|
411
|
-
|
|
411
|
+
user-invocable: false
|
|
412
412
|
model_invocable: true
|
|
413
413
|
summary: "Aggregate and format results from multiple parallel agent executions"
|
|
414
414
|
keywords: [aggregation, parallel, batch, results, ecomode]
|
|
@@ -417,7 +417,7 @@ skills:
|
|
|
417
417
|
rust-best-practices:
|
|
418
418
|
class: BestPracticeSkill
|
|
419
419
|
description: "Idiomatic Rust patterns from official guidelines"
|
|
420
|
-
|
|
420
|
+
user-invocable: false
|
|
421
421
|
model_invocable: true
|
|
422
422
|
summary: "Idiomatic Rust patterns and best practices from official documentation"
|
|
423
423
|
keywords: [rust, ownership, borrowing, safety, concurrency]
|
|
@@ -426,7 +426,7 @@ skills:
|
|
|
426
426
|
skills-sh-search:
|
|
427
427
|
class: ExternalSkillSourceSkill
|
|
428
428
|
description: "Search and install skills from skills.sh marketplace when internal skills are insufficient"
|
|
429
|
-
|
|
429
|
+
user-invocable: true
|
|
430
430
|
model_invocable: true
|
|
431
431
|
summary: "Search skills.sh marketplace for external skills and install them into the project"
|
|
432
432
|
keywords: [skills-sh, marketplace, external, install, search, discover, npx]
|
|
@@ -435,7 +435,7 @@ skills:
|
|
|
435
435
|
sauron-watch:
|
|
436
436
|
class: VerificationSkill
|
|
437
437
|
description: "Full R017 verification (5+3 rounds) before commit"
|
|
438
|
-
|
|
438
|
+
user-invocable: true
|
|
439
439
|
model_invocable: false
|
|
440
440
|
summary: "Execute full R017 verification with 5 rounds of manager verification and 3 rounds of deep review"
|
|
441
441
|
keywords: [verification, r017, sync, validation, compliance]
|
|
@@ -444,7 +444,7 @@ skills:
|
|
|
444
444
|
secretary-routing:
|
|
445
445
|
class: RoutingSkill
|
|
446
446
|
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
|
-
|
|
447
|
+
user-invocable: false
|
|
448
448
|
model_invocable: true
|
|
449
449
|
summary: "Routes agent management tasks to appropriate manager agents"
|
|
450
450
|
keywords: [routing, management, agent-creation, git, memory, verification]
|
|
@@ -454,7 +454,7 @@ skills:
|
|
|
454
454
|
snowflake-best-practices:
|
|
455
455
|
class: BestPracticeSkill
|
|
456
456
|
description: "Snowflake best practices for cloud data warehouse design, query optimization, and cost management"
|
|
457
|
-
|
|
457
|
+
user-invocable: false
|
|
458
458
|
model_invocable: true
|
|
459
459
|
summary: "Snowflake best practices for warehouse design, query optimization, and cost management"
|
|
460
460
|
keywords: [snowflake, warehouse, clustering, optimization, cost]
|
|
@@ -463,7 +463,7 @@ skills:
|
|
|
463
463
|
spark-best-practices:
|
|
464
464
|
class: BestPracticeSkill
|
|
465
465
|
description: "Apache Spark best practices for PySpark and Scala distributed data processing"
|
|
466
|
-
|
|
466
|
+
user-invocable: false
|
|
467
467
|
model_invocable: true
|
|
468
468
|
summary: "Apache Spark best practices for performance optimization and resource management"
|
|
469
469
|
keywords: [spark, pyspark, distributed, performance, optimization]
|
|
@@ -472,7 +472,7 @@ skills:
|
|
|
472
472
|
springboot-best-practices:
|
|
473
473
|
class: BestPracticeSkill
|
|
474
474
|
description: "Spring Boot patterns for enterprise Java applications"
|
|
475
|
-
|
|
475
|
+
user-invocable: false
|
|
476
476
|
model_invocable: true
|
|
477
477
|
summary: "Spring Boot patterns for enterprise Java applications with layered architecture"
|
|
478
478
|
keywords: [springboot, java, enterprise, dependency-injection, rest]
|
|
@@ -481,7 +481,7 @@ skills:
|
|
|
481
481
|
status:
|
|
482
482
|
class: SystemSkill
|
|
483
483
|
description: "Show system status and health checks"
|
|
484
|
-
|
|
484
|
+
user-invocable: true
|
|
485
485
|
model_invocable: true
|
|
486
486
|
summary: "Show comprehensive system status including agents, skills, guides, and health checks"
|
|
487
487
|
keywords: [status, health, system, agents, skills]
|
|
@@ -490,7 +490,7 @@ skills:
|
|
|
490
490
|
supabase-postgres-best-practices:
|
|
491
491
|
class: BestPracticeSkill
|
|
492
492
|
description: "PostgreSQL performance optimization guidelines from Supabase. Apply when writing SQL, designing schemas, configuring RLS, or optimizing database performance."
|
|
493
|
-
|
|
493
|
+
user-invocable: false
|
|
494
494
|
model_invocable: true
|
|
495
495
|
summary: "Supabase PostgreSQL best practices for query performance, RLS, and schema design"
|
|
496
496
|
keywords: [supabase, postgres, postgresql, rls, performance, security]
|
|
@@ -499,7 +499,7 @@ skills:
|
|
|
499
499
|
typescript-best-practices:
|
|
500
500
|
class: BestPracticeSkill
|
|
501
501
|
description: "Type-safe TypeScript patterns from industry standards"
|
|
502
|
-
|
|
502
|
+
user-invocable: false
|
|
503
503
|
model_invocable: true
|
|
504
504
|
summary: "Type-safe TypeScript patterns and best practices from industry standards"
|
|
505
505
|
keywords: [typescript, type-safety, strict-mode, interfaces, generics]
|
|
@@ -508,7 +508,7 @@ skills:
|
|
|
508
508
|
update-docs:
|
|
509
509
|
class: ManagementSkill
|
|
510
510
|
description: "Sync documentation with project structure"
|
|
511
|
-
|
|
511
|
+
user-invocable: true
|
|
512
512
|
model_invocable: false
|
|
513
513
|
summary: "Ensure documentation accurately reflects current project state and agents work together"
|
|
514
514
|
keywords: [update, documentation, sync, validation, consistency]
|
|
@@ -517,7 +517,7 @@ skills:
|
|
|
517
517
|
update-external:
|
|
518
518
|
class: ManagementSkill
|
|
519
519
|
description: "Update agents from external sources (GitHub, docs, etc.)"
|
|
520
|
-
|
|
520
|
+
user-invocable: true
|
|
521
521
|
model_invocable: false
|
|
522
522
|
summary: "Update agents, skills, and guides from external sources to latest versions"
|
|
523
523
|
keywords: [update, external, github, sources, versioning]
|
|
@@ -526,7 +526,7 @@ skills:
|
|
|
526
526
|
vercel-deploy:
|
|
527
527
|
class: DeploymentSkill
|
|
528
528
|
description: "Deploy applications to Vercel with auto-detection and preview URLs"
|
|
529
|
-
|
|
529
|
+
user-invocable: true
|
|
530
530
|
model_invocable: true
|
|
531
531
|
summary: "Deploy applications to Vercel with framework auto-detection and preview URLs"
|
|
532
532
|
keywords: [vercel, deploy, deployment, preview, framework]
|
|
@@ -535,7 +535,7 @@ skills:
|
|
|
535
535
|
web-design-guidelines:
|
|
536
536
|
class: WritingSkill
|
|
537
537
|
description: "UI code review with 100+ rules for accessibility, performance, and UX"
|
|
538
|
-
|
|
538
|
+
user-invocable: false
|
|
539
539
|
model_invocable: true
|
|
540
540
|
summary: "UI code review guidelines for accessibility, performance, and UX best practices"
|
|
541
541
|
keywords: [ui, accessibility, ux, performance, design]
|
|
@@ -544,7 +544,7 @@ skills:
|
|
|
544
544
|
writing-clearly-and-concisely:
|
|
545
545
|
class: WritingSkill
|
|
546
546
|
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
|
-
|
|
547
|
+
user-invocable: true
|
|
548
548
|
model_invocable: true
|
|
549
549
|
summary: "Apply Strunk's Elements of Style rules to improve clarity and conciseness in writing"
|
|
550
550
|
keywords: [writing, clarity, conciseness, elements-of-style, strunk]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: codex-exec
|
|
3
3
|
description: Execute OpenAI Codex CLI prompts and return results
|
|
4
|
-
argument-hint: "<prompt> [--json] [--output <path>] [--model <name>] [--timeout <ms>]"
|
|
4
|
+
argument-hint: "<prompt> [--json] [--output <path>] [--model <name>] [--timeout <ms>] [--effort <level>]"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Codex Exec Skill
|
|
@@ -18,6 +18,10 @@ Execute OpenAI Codex CLI prompts in non-interactive mode and return structured r
|
|
|
18
18
|
--timeout <ms> Execution timeout (default: 120000, max: 600000)
|
|
19
19
|
--full-auto Enable auto-approval mode (codex -a full-auto)
|
|
20
20
|
--working-dir Working directory for Codex execution
|
|
21
|
+
--effort <level> Set reasoning effort level (minimal, low, medium, high, xhigh)
|
|
22
|
+
Maps to Codex CLI's model_reasoning_effort config
|
|
23
|
+
Default: uses Codex CLI's configured default
|
|
24
|
+
Recommended: xhigh for research/analysis tasks
|
|
21
25
|
```
|
|
22
26
|
|
|
23
27
|
## Workflow
|
|
@@ -147,3 +151,27 @@ Orchestrator delegates generation task
|
|
|
147
151
|
→ Reviewer validates quality
|
|
148
152
|
→ Iterate if needed
|
|
149
153
|
```
|
|
154
|
+
|
|
155
|
+
## Research Workflow
|
|
156
|
+
|
|
157
|
+
When the orchestrator detects a research/information gathering request:
|
|
158
|
+
|
|
159
|
+
1. **Check Codex availability**: Verify `codex` binary and `OPENAI_API_KEY`
|
|
160
|
+
2. **If available**: Execute with xhigh reasoning effort for thorough research
|
|
161
|
+
3. **If unavailable**: Fall back to Claude's WebFetch/WebSearch
|
|
162
|
+
|
|
163
|
+
### Research Command Pattern
|
|
164
|
+
|
|
165
|
+
```
|
|
166
|
+
/codex-exec "Research and analyze: {topic}. Provide structured findings with sources." --effort xhigh --full-auto --json
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
### Effort Level Guide
|
|
170
|
+
|
|
171
|
+
| Level | Use Case | Speed | Depth |
|
|
172
|
+
|-------|----------|-------|-------|
|
|
173
|
+
| minimal | Quick lookups | Fastest | Surface |
|
|
174
|
+
| low | Simple queries | Fast | Basic |
|
|
175
|
+
| medium | General tasks | Balanced | Standard |
|
|
176
|
+
| high | Complex analysis | Slower | Deep |
|
|
177
|
+
| xhigh | Research & investigation | Slowest | Maximum |
|
|
@@ -51,6 +51,7 @@ function parseArgs() {
|
|
|
51
51
|
timeout: DEFAULT_TIMEOUT_MS,
|
|
52
52
|
fullAuto: false,
|
|
53
53
|
workingDir: null,
|
|
54
|
+
effort: null,
|
|
54
55
|
};
|
|
55
56
|
|
|
56
57
|
for (let i = 2; i < process.argv.length; i++) {
|
|
@@ -91,6 +92,12 @@ function parseArgs() {
|
|
|
91
92
|
args.workingDir = process.argv[++i];
|
|
92
93
|
}
|
|
93
94
|
break;
|
|
95
|
+
case '--effort':
|
|
96
|
+
case '--reasoning-effort':
|
|
97
|
+
if (i + 1 < process.argv.length) {
|
|
98
|
+
args.effort = process.argv[++i];
|
|
99
|
+
}
|
|
100
|
+
break;
|
|
94
101
|
}
|
|
95
102
|
}
|
|
96
103
|
|
|
@@ -160,6 +167,16 @@ function buildCommand(options) {
|
|
|
160
167
|
args.push('-C', options.workingDir);
|
|
161
168
|
}
|
|
162
169
|
|
|
170
|
+
// Reasoning effort (maps to -c model_reasoning_effort="value")
|
|
171
|
+
if (options.effort) {
|
|
172
|
+
const validEfforts = ['minimal', 'low', 'medium', 'high', 'xhigh'];
|
|
173
|
+
if (validEfforts.includes(options.effort)) {
|
|
174
|
+
args.push('-c', `model_reasoning_effort="${options.effort}"`);
|
|
175
|
+
} else {
|
|
176
|
+
process.stderr.write(`Warning: Invalid effort level "${options.effort}". Valid: ${validEfforts.join(', ')}\n`);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
163
180
|
// Add prompt as last argument
|
|
164
181
|
args.push(options.prompt);
|
|
165
182
|
|
|
@@ -228,3 +228,65 @@ intent_detection:
|
|
|
228
228
|
max_alternatives: 3
|
|
229
229
|
korean_support: true
|
|
230
230
|
```
|
|
231
|
+
|
|
232
|
+
## Research Intent Routing
|
|
233
|
+
|
|
234
|
+
When a research/information gathering intent is detected:
|
|
235
|
+
|
|
236
|
+
### Detection Keywords
|
|
237
|
+
|
|
238
|
+
```yaml
|
|
239
|
+
# Korean
|
|
240
|
+
korean:
|
|
241
|
+
- "조사" → research
|
|
242
|
+
- "검색" → search
|
|
243
|
+
- "리서치" → research
|
|
244
|
+
- "탐색" → explore
|
|
245
|
+
- "찾아" → look up
|
|
246
|
+
- "알아봐" → find out
|
|
247
|
+
- "자료" → gather materials
|
|
248
|
+
- "정보 수집" → gather information
|
|
249
|
+
|
|
250
|
+
# English
|
|
251
|
+
english:
|
|
252
|
+
- "research"
|
|
253
|
+
- "investigate"
|
|
254
|
+
- "search for"
|
|
255
|
+
- "look up"
|
|
256
|
+
- "gather information"
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
### Routing Logic
|
|
260
|
+
|
|
261
|
+
```
|
|
262
|
+
Research intent detected (confidence >= 70%)
|
|
263
|
+
↓
|
|
264
|
+
Check Codex CLI availability
|
|
265
|
+
├─ Available (codex binary + OPENAI_API_KEY)
|
|
266
|
+
│ → Use codex-exec skill with --effort xhigh
|
|
267
|
+
│ → Prompt: "Research and analyze: {user_request}"
|
|
268
|
+
│ → Returns: structured findings for orchestrator
|
|
269
|
+
└─ Unavailable
|
|
270
|
+
→ Fall back to Claude's WebFetch/WebSearch
|
|
271
|
+
→ Orchestrator handles directly or via general-purpose agent
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
### Confidence Scoring
|
|
275
|
+
|
|
276
|
+
| Factor | Weight | Example |
|
|
277
|
+
|--------|--------|---------|
|
|
278
|
+
| Research keyword match | +40 | "조사해줘", "research" |
|
|
279
|
+
| Action verb match | +30 | "찾아", "investigate" |
|
|
280
|
+
| URL/topic present | +20 | specific URL or topic mentioned |
|
|
281
|
+
| Context (previous research) | +10 | follow-up research request |
|
|
282
|
+
|
|
283
|
+
### Output Format
|
|
284
|
+
|
|
285
|
+
```
|
|
286
|
+
[Intent Detected]
|
|
287
|
+
├── Input: "{user input}"
|
|
288
|
+
├── Workflow: research-workflow
|
|
289
|
+
├── Confidence: {percentage}%
|
|
290
|
+
├── Method: codex-exec (xhigh) | WebFetch fallback
|
|
291
|
+
└── Reason: {explanation}
|
|
292
|
+
```
|
|
@@ -288,6 +288,42 @@ agents:
|
|
|
288
288
|
supported_actions: [save, recall, remember]
|
|
289
289
|
base_confidence: 40
|
|
290
290
|
|
|
291
|
+
# ---------------------------------------------------------------------------
|
|
292
|
+
# Research / Information Gathering (skill-based, not agent)
|
|
293
|
+
# ---------------------------------------------------------------------------
|
|
294
|
+
research-workflow:
|
|
295
|
+
keywords:
|
|
296
|
+
korean:
|
|
297
|
+
- 조사
|
|
298
|
+
- 검색
|
|
299
|
+
- 리서치
|
|
300
|
+
- 탐색
|
|
301
|
+
- 찾아
|
|
302
|
+
- 알아봐
|
|
303
|
+
- 자료
|
|
304
|
+
- 정보 수집
|
|
305
|
+
- 웹에서
|
|
306
|
+
english:
|
|
307
|
+
- research
|
|
308
|
+
- investigate
|
|
309
|
+
- search for
|
|
310
|
+
- look up
|
|
311
|
+
- gather information
|
|
312
|
+
- web fetch
|
|
313
|
+
- find out
|
|
314
|
+
- explore topic
|
|
315
|
+
file_patterns: []
|
|
316
|
+
supported_actions:
|
|
317
|
+
- search
|
|
318
|
+
- fetch
|
|
319
|
+
- investigate
|
|
320
|
+
- research
|
|
321
|
+
- analyze
|
|
322
|
+
- gather
|
|
323
|
+
base_confidence: 50
|
|
324
|
+
action_weight: 30
|
|
325
|
+
routing_note: "Uses codex-exec skill with xhigh effort when available, falls back to WebFetch/WebSearch"
|
|
326
|
+
|
|
291
327
|
# Managers (continued)
|
|
292
328
|
mgr-gitnerd:
|
|
293
329
|
keywords:
|