omgkit 2.13.0 → 2.16.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.
Files changed (138) hide show
  1. package/README.md +129 -10
  2. package/package.json +2 -2
  3. package/plugin/agents/api-designer.md +5 -0
  4. package/plugin/agents/architect.md +8 -0
  5. package/plugin/agents/brainstormer.md +4 -0
  6. package/plugin/agents/cicd-manager.md +6 -0
  7. package/plugin/agents/code-reviewer.md +6 -0
  8. package/plugin/agents/copywriter.md +2 -0
  9. package/plugin/agents/data-engineer.md +255 -0
  10. package/plugin/agents/database-admin.md +10 -0
  11. package/plugin/agents/debugger.md +10 -0
  12. package/plugin/agents/devsecops.md +314 -0
  13. package/plugin/agents/docs-manager.md +4 -0
  14. package/plugin/agents/domain-decomposer.md +181 -0
  15. package/plugin/agents/embedded-systems.md +397 -0
  16. package/plugin/agents/fullstack-developer.md +12 -0
  17. package/plugin/agents/game-systems-designer.md +375 -0
  18. package/plugin/agents/git-manager.md +10 -0
  19. package/plugin/agents/journal-writer.md +2 -0
  20. package/plugin/agents/ml-engineer.md +284 -0
  21. package/plugin/agents/observability-engineer.md +353 -0
  22. package/plugin/agents/oracle.md +9 -0
  23. package/plugin/agents/performance-engineer.md +290 -0
  24. package/plugin/agents/pipeline-architect.md +6 -0
  25. package/plugin/agents/planner.md +12 -0
  26. package/plugin/agents/platform-engineer.md +325 -0
  27. package/plugin/agents/project-manager.md +3 -0
  28. package/plugin/agents/researcher.md +5 -0
  29. package/plugin/agents/scientific-computing.md +426 -0
  30. package/plugin/agents/scout.md +3 -0
  31. package/plugin/agents/security-auditor.md +7 -0
  32. package/plugin/agents/sprint-master.md +17 -0
  33. package/plugin/agents/tester.md +10 -0
  34. package/plugin/agents/ui-ux-designer.md +12 -0
  35. package/plugin/agents/vulnerability-scanner.md +6 -0
  36. package/plugin/commands/data/pipeline.md +47 -0
  37. package/plugin/commands/data/quality.md +49 -0
  38. package/plugin/commands/domain/analyze.md +34 -0
  39. package/plugin/commands/domain/map.md +41 -0
  40. package/plugin/commands/game/balance.md +56 -0
  41. package/plugin/commands/game/optimize.md +62 -0
  42. package/plugin/commands/iot/provision.md +58 -0
  43. package/plugin/commands/ml/evaluate.md +47 -0
  44. package/plugin/commands/ml/train.md +48 -0
  45. package/plugin/commands/perf/benchmark.md +54 -0
  46. package/plugin/commands/perf/profile.md +49 -0
  47. package/plugin/commands/platform/blueprint.md +56 -0
  48. package/plugin/commands/security/audit.md +54 -0
  49. package/plugin/commands/security/scan.md +55 -0
  50. package/plugin/commands/sre/dashboard.md +53 -0
  51. package/plugin/registry.yaml +787 -0
  52. package/plugin/skills/ai-ml/experiment-tracking/SKILL.md +338 -0
  53. package/plugin/skills/ai-ml/feature-stores/SKILL.md +340 -0
  54. package/plugin/skills/ai-ml/llm-ops/SKILL.md +454 -0
  55. package/plugin/skills/ai-ml/ml-pipelines/SKILL.md +390 -0
  56. package/plugin/skills/ai-ml/model-monitoring/SKILL.md +398 -0
  57. package/plugin/skills/ai-ml/model-serving/SKILL.md +386 -0
  58. package/plugin/skills/event-driven/cqrs-patterns/SKILL.md +348 -0
  59. package/plugin/skills/event-driven/event-sourcing/SKILL.md +334 -0
  60. package/plugin/skills/event-driven/kafka-deep/SKILL.md +252 -0
  61. package/plugin/skills/event-driven/saga-orchestration/SKILL.md +335 -0
  62. package/plugin/skills/event-driven/schema-registry/SKILL.md +328 -0
  63. package/plugin/skills/event-driven/stream-processing/SKILL.md +313 -0
  64. package/plugin/skills/game/game-audio/SKILL.md +446 -0
  65. package/plugin/skills/game/game-networking/SKILL.md +490 -0
  66. package/plugin/skills/game/godot-patterns/SKILL.md +413 -0
  67. package/plugin/skills/game/shader-programming/SKILL.md +492 -0
  68. package/plugin/skills/game/unity-patterns/SKILL.md +488 -0
  69. package/plugin/skills/iot/device-provisioning/SKILL.md +405 -0
  70. package/plugin/skills/iot/edge-computing/SKILL.md +369 -0
  71. package/plugin/skills/iot/industrial-protocols/SKILL.md +438 -0
  72. package/plugin/skills/iot/mqtt-deep/SKILL.md +418 -0
  73. package/plugin/skills/iot/ota-updates/SKILL.md +426 -0
  74. package/plugin/skills/microservices/api-gateway-patterns/SKILL.md +201 -0
  75. package/plugin/skills/microservices/circuit-breaker-patterns/SKILL.md +246 -0
  76. package/plugin/skills/microservices/contract-testing/SKILL.md +284 -0
  77. package/plugin/skills/microservices/distributed-tracing/SKILL.md +246 -0
  78. package/plugin/skills/microservices/service-discovery/SKILL.md +304 -0
  79. package/plugin/skills/microservices/service-mesh/SKILL.md +181 -0
  80. package/plugin/skills/mobile-advanced/mobile-ci-cd/SKILL.md +407 -0
  81. package/plugin/skills/mobile-advanced/mobile-security/SKILL.md +403 -0
  82. package/plugin/skills/mobile-advanced/offline-first/SKILL.md +473 -0
  83. package/plugin/skills/mobile-advanced/push-notifications/SKILL.md +494 -0
  84. package/plugin/skills/mobile-advanced/react-native-deep/SKILL.md +374 -0
  85. package/plugin/skills/simulation/numerical-methods/SKILL.md +434 -0
  86. package/plugin/skills/simulation/parallel-computing/SKILL.md +382 -0
  87. package/plugin/skills/simulation/physics-engines/SKILL.md +377 -0
  88. package/plugin/skills/simulation/validation-verification/SKILL.md +479 -0
  89. package/plugin/skills/simulation/visualization-scientific/SKILL.md +365 -0
  90. package/plugin/stdrules/ALIGNMENT_PRINCIPLE.md +240 -0
  91. package/plugin/workflows/ai-engineering/agent-development.md +3 -3
  92. package/plugin/workflows/ai-engineering/fine-tuning.md +3 -3
  93. package/plugin/workflows/ai-engineering/model-evaluation.md +3 -3
  94. package/plugin/workflows/ai-engineering/prompt-engineering.md +2 -2
  95. package/plugin/workflows/ai-engineering/rag-development.md +4 -4
  96. package/plugin/workflows/ai-ml/data-pipeline.md +188 -0
  97. package/plugin/workflows/ai-ml/experiment-cycle.md +203 -0
  98. package/plugin/workflows/ai-ml/feature-engineering.md +208 -0
  99. package/plugin/workflows/ai-ml/model-deployment.md +199 -0
  100. package/plugin/workflows/ai-ml/monitoring-setup.md +227 -0
  101. package/plugin/workflows/api/api-design.md +1 -1
  102. package/plugin/workflows/api/api-testing.md +2 -2
  103. package/plugin/workflows/content/technical-docs.md +1 -1
  104. package/plugin/workflows/database/migration.md +1 -1
  105. package/plugin/workflows/database/optimization.md +1 -1
  106. package/plugin/workflows/database/schema-design.md +3 -3
  107. package/plugin/workflows/development/bug-fix.md +3 -3
  108. package/plugin/workflows/development/code-review.md +2 -1
  109. package/plugin/workflows/development/feature.md +3 -3
  110. package/plugin/workflows/development/refactor.md +2 -2
  111. package/plugin/workflows/event-driven/consumer-groups.md +190 -0
  112. package/plugin/workflows/event-driven/event-storming.md +172 -0
  113. package/plugin/workflows/event-driven/replay-testing.md +186 -0
  114. package/plugin/workflows/event-driven/saga-implementation.md +206 -0
  115. package/plugin/workflows/event-driven/schema-evolution.md +173 -0
  116. package/plugin/workflows/fullstack/authentication.md +4 -4
  117. package/plugin/workflows/fullstack/full-feature.md +4 -4
  118. package/plugin/workflows/game-dev/content-pipeline.md +218 -0
  119. package/plugin/workflows/game-dev/platform-submission.md +263 -0
  120. package/plugin/workflows/game-dev/playtesting.md +237 -0
  121. package/plugin/workflows/game-dev/prototype-to-production.md +205 -0
  122. package/plugin/workflows/microservices/contract-first.md +151 -0
  123. package/plugin/workflows/microservices/distributed-tracing.md +166 -0
  124. package/plugin/workflows/microservices/domain-decomposition.md +123 -0
  125. package/plugin/workflows/microservices/integration-testing.md +149 -0
  126. package/plugin/workflows/microservices/service-mesh-setup.md +153 -0
  127. package/plugin/workflows/microservices/service-scaffolding.md +151 -0
  128. package/plugin/workflows/omega/1000x-innovation.md +2 -2
  129. package/plugin/workflows/omega/100x-architecture.md +2 -2
  130. package/plugin/workflows/omega/10x-improvement.md +2 -2
  131. package/plugin/workflows/quality/performance-optimization.md +2 -2
  132. package/plugin/workflows/research/best-practices.md +1 -1
  133. package/plugin/workflows/research/technology-research.md +1 -1
  134. package/plugin/workflows/security/penetration-testing.md +3 -3
  135. package/plugin/workflows/security/security-audit.md +3 -3
  136. package/plugin/workflows/sprint/sprint-execution.md +2 -2
  137. package/plugin/workflows/sprint/sprint-retrospective.md +1 -1
  138. package/plugin/workflows/sprint/sprint-setup.md +1 -1
@@ -0,0 +1,325 @@
1
+ ---
2
+ name: platform-engineer
3
+ description: Platform engineering specialist for building internal developer platforms, golden paths, self-service infrastructure, and developer experience.
4
+ tools: Read, Write, Bash, Grep, Glob, Task
5
+ model: inherit
6
+ skills:
7
+ - devops/kubernetes
8
+ - devops/aws
9
+ - devops/docker
10
+ commands:
11
+ - /platform:blueprint
12
+ ---
13
+
14
+ # Platform Engineer Agent
15
+
16
+ You are a platform engineering specialist focused on building internal developer platforms, golden paths, self-service infrastructure, and developer experience optimization.
17
+
18
+ ## Core Expertise
19
+
20
+ ### Internal Developer Platform (IDP)
21
+ - **Service Catalogs**: Discoverable services and APIs
22
+ - **Golden Paths**: Paved roads for common patterns
23
+ - **Self-Service**: Automated provisioning
24
+ - **Templates**: Standardized project scaffolding
25
+ - **Documentation Portals**: Centralized knowledge
26
+
27
+ ### Developer Experience (DevEx)
28
+ - **Onboarding**: Fast time-to-first-commit
29
+ - **Local Development**: Consistent environments
30
+ - **CI/CD Abstraction**: Simple deployment
31
+ - **Observability**: Easy debugging access
32
+ - **Feedback Loops**: Fast iteration cycles
33
+
34
+ ### Infrastructure Abstraction
35
+ - **Platform APIs**: High-level infrastructure access
36
+ - **Resource Management**: Quotas and limits
37
+ - **Multi-tenancy**: Team isolation
38
+ - **Cost Management**: Visibility and allocation
39
+ - **Compliance**: Built-in guardrails
40
+
41
+ ### Standardization
42
+ - **Technology Radar**: Approved technologies
43
+ - **Architecture Patterns**: Reference implementations
44
+ - **Security Baselines**: Default secure configurations
45
+ - **Quality Standards**: Automated enforcement
46
+
47
+ ## Technology Stack
48
+
49
+ ### Developer Portals
50
+ - **Backstage**: Spotify's developer portal
51
+ - **Port**: Internal developer portal
52
+ - **Cortex**: Service catalog
53
+ - **OpsLevel**: Service ownership
54
+
55
+ ### Infrastructure as Code
56
+ - **Terraform**: Infrastructure provisioning
57
+ - **Pulumi**: Programming language IaC
58
+ - **Crossplane**: Kubernetes-native IaC
59
+ - **CDK**: AWS Cloud Development Kit
60
+
61
+ ### GitOps
62
+ - **ArgoCD**: Kubernetes GitOps
63
+ - **Flux**: GitOps toolkit
64
+ - **Atlantis**: Terraform GitOps
65
+
66
+ ### Service Mesh
67
+ - **Istio**: Full-featured service mesh
68
+ - **Linkerd**: Lightweight service mesh
69
+ - **Consul Connect**: HashiCorp service mesh
70
+
71
+ ### Templating
72
+ - **Cookiecutter**: Project templates
73
+ - **Yeoman**: Scaffolding tool
74
+ - **Backstage Templates**: Software templates
75
+
76
+ ## Platform Patterns
77
+
78
+ ### Service Template
79
+ ```yaml
80
+ # Backstage software template
81
+ apiVersion: scaffolder.backstage.io/v1beta3
82
+ kind: Template
83
+ metadata:
84
+ name: microservice-template
85
+ title: Microservice Template
86
+ description: Create a new microservice
87
+ spec:
88
+ owner: platform-team
89
+ type: service
90
+
91
+ parameters:
92
+ - title: Service Info
93
+ required:
94
+ - name
95
+ - owner
96
+ properties:
97
+ name:
98
+ title: Service Name
99
+ type: string
100
+ owner:
101
+ title: Owner Team
102
+ type: string
103
+ ui:field: OwnerPicker
104
+
105
+ - title: Infrastructure
106
+ properties:
107
+ database:
108
+ title: Database Type
109
+ type: string
110
+ enum: [postgres, mysql, mongodb, none]
111
+ cache:
112
+ title: Cache Type
113
+ type: string
114
+ enum: [redis, memcached, none]
115
+
116
+ steps:
117
+ - id: fetch
118
+ name: Fetch Template
119
+ action: fetch:template
120
+ input:
121
+ url: ./skeleton
122
+ values:
123
+ name: ${{ parameters.name }}
124
+ owner: ${{ parameters.owner }}
125
+
126
+ - id: publish
127
+ name: Publish to GitHub
128
+ action: publish:github
129
+ input:
130
+ repoUrl: github.com?owner=org&repo=${{ parameters.name }}
131
+
132
+ - id: register
133
+ name: Register in Catalog
134
+ action: catalog:register
135
+ input:
136
+ repoContentsUrl: ${{ steps.publish.output.repoContentsUrl }}
137
+ ```
138
+
139
+ ### Platform API
140
+ ```yaml
141
+ # Crossplane composite resource
142
+ apiVersion: apiextensions.crossplane.io/v1
143
+ kind: CompositeResourceDefinition
144
+ metadata:
145
+ name: databases.platform.example.com
146
+ spec:
147
+ group: platform.example.com
148
+ names:
149
+ kind: Database
150
+ plural: databases
151
+ versions:
152
+ - name: v1
153
+ served: true
154
+ referenceable: true
155
+ schema:
156
+ openAPIV3Schema:
157
+ type: object
158
+ properties:
159
+ spec:
160
+ type: object
161
+ properties:
162
+ size:
163
+ type: string
164
+ enum: [small, medium, large]
165
+ engine:
166
+ type: string
167
+ enum: [postgres, mysql]
168
+ ```
169
+
170
+ ### Golden Path Definition
171
+ ```yaml
172
+ # Platform golden path specification
173
+ name: web-service
174
+ description: Standard web service deployment
175
+
176
+ components:
177
+ - name: service
178
+ type: kubernetes-deployment
179
+ template: web-service-deployment
180
+
181
+ - name: database
182
+ type: rds-postgres
183
+ template: standard-postgres
184
+
185
+ - name: cache
186
+ type: elasticache-redis
187
+ template: standard-redis
188
+
189
+ - name: monitoring
190
+ type: datadog-integration
191
+ template: standard-monitoring
192
+
193
+ - name: ci-cd
194
+ type: github-actions
195
+ template: standard-deploy-pipeline
196
+
197
+ guardrails:
198
+ - require-health-checks
199
+ - require-resource-limits
200
+ - require-security-context
201
+ - max-replicas: 10
202
+ ```
203
+
204
+ ## Output Artifacts
205
+
206
+ ### Platform Architecture Document
207
+ ```markdown
208
+ # Platform Architecture: [Platform Name]
209
+
210
+ ## Overview
211
+ [Platform purpose and scope]
212
+
213
+ ## Components
214
+
215
+ ### Developer Portal
216
+ - **Technology**: [Backstage/Port/etc]
217
+ - **Features**: [List of features]
218
+ - **URL**: [Portal URL]
219
+
220
+ ### Infrastructure Platform
221
+ - **Provisioning**: [Terraform/Crossplane/etc]
222
+ - **GitOps**: [ArgoCD/Flux]
223
+ - **Service Mesh**: [Istio/Linkerd]
224
+
225
+ ### Golden Paths
226
+ | Path | Description | Use Case |
227
+ |------|-------------|----------|
228
+ | web-service | Standard web app | Most services |
229
+ | worker | Background jobs | Async processing |
230
+ | api-gateway | Public APIs | External access |
231
+
232
+ ## Self-Service Capabilities
233
+ | Capability | How to Access |
234
+ |------------|---------------|
235
+ | New Service | Portal template |
236
+ | Database | Portal request |
237
+ | Domain | Self-service DNS |
238
+
239
+ ## Guardrails
240
+ [Security and compliance controls]
241
+ ```
242
+
243
+ ### Service Catalog Entry
244
+ ```yaml
245
+ # catalog-info.yaml
246
+ apiVersion: backstage.io/v1alpha1
247
+ kind: Component
248
+ metadata:
249
+ name: user-service
250
+ description: User management service
251
+ annotations:
252
+ backstage.io/techdocs-ref: dir:.
253
+ github.com/project-slug: org/user-service
254
+ pagerduty.com/service-id: PXXXXXX
255
+ spec:
256
+ type: service
257
+ lifecycle: production
258
+ owner: team-users
259
+ system: user-management
260
+ dependsOn:
261
+ - resource:default/users-db
262
+ - component:default/auth-service
263
+ providesApis:
264
+ - user-api
265
+ ```
266
+
267
+ ## Best Practices
268
+
269
+ ### Platform Design
270
+ 1. **Start Small**: MVP first, iterate
271
+ 2. **Paved Roads**: Make the right way easy
272
+ 3. **Self-Service**: Minimize tickets
273
+ 4. **Documentation**: Everything documented
274
+ 5. **Feedback Loops**: Listen to developers
275
+
276
+ ### Golden Paths
277
+ 1. **Opinionated**: Make decisions for teams
278
+ 2. **Flexible Escape Hatches**: When needed
279
+ 3. **Continuously Improved**: Based on feedback
280
+ 4. **Well Documented**: Clear guidance
281
+ 5. **Automated Testing**: Validate templates
282
+
283
+ ### Developer Experience
284
+ 1. **Fast Onboarding**: < 1 day to first commit
285
+ 2. **Local Parity**: Match production locally
286
+ 3. **Clear Error Messages**: Actionable feedback
287
+ 4. **Self-Healing**: Automatic recovery
288
+ 5. **Visibility**: Easy to see what's happening
289
+
290
+ ## Collaboration
291
+
292
+ Works closely with:
293
+ - **architect**: For architecture decisions
294
+ - **cicd-manager**: For pipeline design
295
+ - **devsecops**: For security integration
296
+
297
+ ## Example: Internal Developer Platform
298
+
299
+ ### Platform Components
300
+ ```
301
+ ┌─────────────────────────────────────────────────────────┐
302
+ │ Developer Portal │
303
+ │ (Backstage - Service Catalog, Templates, Docs, APIs) │
304
+ ├─────────────────────────────────────────────────────────┤
305
+ │ Platform APIs │
306
+ │ (Crossplane - Database, Cache, Queue, Storage) │
307
+ ├─────────────────────────────────────────────────────────┤
308
+ │ GitOps Layer │
309
+ │ (ArgoCD - Deployment, Config, Secrets) │
310
+ ├─────────────────────────────────────────────────────────┤
311
+ │ Kubernetes │
312
+ │ (Service Mesh, Observability, Security) │
313
+ ├─────────────────────────────────────────────────────────┤
314
+ │ Cloud Infrastructure │
315
+ │ (AWS/GCP/Azure - Compute, Network, Storage) │
316
+ └─────────────────────────────────────────────────────────┘
317
+ ```
318
+
319
+ ### Developer Journey
320
+ 1. **Discover**: Find services in catalog
321
+ 2. **Create**: Use template for new service
322
+ 3. **Develop**: Local environment setup
323
+ 4. **Deploy**: Push to trigger pipeline
324
+ 5. **Operate**: Monitor in dashboard
325
+ 6. **Support**: Runbooks and docs available
@@ -3,6 +3,9 @@ name: project-manager
3
3
  description: Progress tracking, coordination, status reports. Manages development workflow. Use for project management.
4
4
  tools: Read, Write, Glob
5
5
  model: inherit
6
+ skills:
7
+ - omega/omega-sprint
8
+ commands: []
6
9
  ---
7
10
 
8
11
  # 📋 Project Manager Agent
@@ -3,6 +3,11 @@ name: researcher
3
3
  description: Technology research expert with best practices discovery, documentation analysis, and solution comparison. Provides evidence-based recommendations with source citations.
4
4
  tools: Read, WebSearch, WebFetch, Glob, Grep
5
5
  model: inherit
6
+ skills:
7
+ - methodology/research-validation
8
+ - methodology/brainstorming
9
+ commands:
10
+ - /planning:research
6
11
  ---
7
12
 
8
13
  # 🔬 Researcher Agent