oh-my-customcode 0.18.0 → 0.18.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-customcode",
3
- "version": "0.18.0",
3
+ "version": "0.18.2",
4
4
  "description": "Batteries-included agent harness for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {
@@ -67,7 +67,7 @@ entity_types:
67
67
  properties:
68
68
  name: { type: string, required: true }
69
69
  description: { type: string, required: true }
70
- user_invocable: { type: boolean, default: true }
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: false
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: true
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
- user_invocable: false
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
- user_invocable: true
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]
@@ -2,7 +2,7 @@
2
2
  name: multi-model-verification
3
3
  description: Parallel code verification using multiple models with severity classification
4
4
  version: 1.0.0
5
- user_invocable: false
5
+ user-invocable: false
6
6
  ---
7
7
 
8
8
  # Multi-Model Verification
@@ -2,7 +2,7 @@
2
2
  name: structured-dev-cycle
3
3
  description: 6-stage structured development cycle with stage-based tool restrictions
4
4
  version: 1.0.0
5
- user_invocable: false
5
+ user-invocable: false
6
6
  ---
7
7
 
8
8
  # Structured Development Cycle