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,56 @@
1
+ ---
2
+ description: Analyze and balance game mechanics using data-driven approaches
3
+ allowed-tools: Task, Read, Write, Bash, Grep, Glob
4
+ argument-hint: <game system or mechanic>
5
+ ---
6
+
7
+ # ⚖️ Game Balance: $ARGUMENTS
8
+
9
+ Balance game system: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **game-designer** agent for balance analysis.
13
+
14
+ ## Balance Areas
15
+ - **Economy** - Currency, pricing, rewards
16
+ - **Combat** - Damage, health, abilities
17
+ - **Progression** - XP curves, unlocks
18
+ - **Difficulty** - Challenge scaling
19
+ - **Matchmaking** - Skill-based pairing
20
+
21
+ ## Analysis Methods
22
+ - Statistical analysis
23
+ - Monte Carlo simulation
24
+ - Player data analytics
25
+ - A/B testing frameworks
26
+ - Winrate/pickrate analysis
27
+
28
+ ## Balance Metrics
29
+ - **Winrate** - Per character/item/strategy
30
+ - **Pick Rate** - Selection frequency
31
+ - **Ban Rate** - Competitive exclusions
32
+ - **Time-to-Kill** - Combat pacing
33
+ - **Session Length** - Engagement
34
+
35
+ ## Workflow
36
+ 1. **Data Collection** - Gather metrics
37
+ 2. **Analysis** - Identify outliers
38
+ 3. **Simulation** - Test changes
39
+ 4. **Adjustment** - Tune values
40
+ 5. **Validation** - Verify balance
41
+
42
+ ## Outputs
43
+ - Balance report
44
+ - Adjustment recommendations
45
+ - Simulation results
46
+ - Updated game data
47
+ - Monitoring dashboard
48
+
49
+ ## Progress
50
+ - [ ] Data collected
51
+ - [ ] Analysis complete
52
+ - [ ] Simulations run
53
+ - [ ] Adjustments proposed
54
+ - [ ] Changes validated
55
+
56
+ Use spreadsheet for balance calculations.
@@ -0,0 +1,62 @@
1
+ ---
2
+ description: Optimize game performance for target platforms and frame rates
3
+ allowed-tools: Task, Read, Write, Bash, Grep, Glob
4
+ argument-hint: <game component or platform>
5
+ ---
6
+
7
+ # 🎮 Game Optimization: $ARGUMENTS
8
+
9
+ Optimize performance: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **game-designer** agent for optimization.
13
+
14
+ ## Optimization Areas
15
+ - **Rendering** - Draw calls, batching
16
+ - **Memory** - Asset loading, pooling
17
+ - **CPU** - Game logic, physics
18
+ - **GPU** - Shaders, effects
19
+ - **Loading** - Streaming, async
20
+
21
+ ## Platform Targets
22
+ - PC (60/144 FPS)
23
+ - Console (30/60 FPS)
24
+ - Mobile (30/60 FPS)
25
+ - VR (72/90/120 FPS)
26
+
27
+ ## Profiling Tools
28
+ - Unity Profiler / Frame Debugger
29
+ - Unreal Insights
30
+ - RenderDoc
31
+ - PIX / Nsight
32
+ - Platform-specific tools
33
+
34
+ ## Techniques
35
+ - LOD systems
36
+ - Occlusion culling
37
+ - Texture atlasing
38
+ - Object pooling
39
+ - Async loading
40
+
41
+ ## Workflow
42
+ 1. **Profile** - Identify bottlenecks
43
+ 2. **Analyze** - Root cause analysis
44
+ 3. **Optimize** - Apply techniques
45
+ 4. **Measure** - Verify improvements
46
+ 5. **Document** - Performance budgets
47
+
48
+ ## Outputs
49
+ - Performance report
50
+ - Optimization recommendations
51
+ - Before/after metrics
52
+ - Performance budgets
53
+ - Platform guidelines
54
+
55
+ ## Progress
56
+ - [ ] Baseline captured
57
+ - [ ] Bottlenecks identified
58
+ - [ ] Optimizations applied
59
+ - [ ] Improvements verified
60
+ - [ ] Budgets documented
61
+
62
+ Target consistent frame times, not just average FPS.
@@ -0,0 +1,58 @@
1
+ ---
2
+ description: Provision and configure IoT devices with secure fleet management
3
+ allowed-tools: Task, Read, Write, Bash, Grep, Glob
4
+ argument-hint: <device type or fleet>
5
+ ---
6
+
7
+ # 📡 IoT Provisioning: $ARGUMENTS
8
+
9
+ Provision IoT devices: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **iot-engineer** agent for device provisioning.
13
+
14
+ ## Provisioning Methods
15
+ - **Just-in-Time** - On first connect
16
+ - **Bulk** - Pre-registered devices
17
+ - **Fleet** - Template-based
18
+ - **Self** - Device-initiated
19
+ - **Claim** - Transfer ownership
20
+
21
+ ## Security Components
22
+ - X.509 certificates
23
+ - Device identity
24
+ - Secure boot
25
+ - Hardware security modules
26
+ - Key rotation
27
+
28
+ ## Platforms
29
+ - AWS IoT Core
30
+ - Azure IoT Hub
31
+ - Google Cloud IoT
32
+ - Custom MQTT brokers
33
+
34
+ ## Workflow
35
+ 1. **Template** - Define device config
36
+ 2. **Certificates** - Generate/provision
37
+ 3. **Registration** - Add to platform
38
+ 4. **Configuration** - Apply settings
39
+ 5. **Verification** - Test connectivity
40
+
41
+ ## Device Lifecycle
42
+ - Manufacture → Provision → Operate → Update → Decommission
43
+
44
+ ## Outputs
45
+ - Provisioning templates
46
+ - Certificate chain
47
+ - Device configuration
48
+ - Fleet policies
49
+ - Monitoring setup
50
+
51
+ ## Progress
52
+ - [ ] Templates created
53
+ - [ ] Certificates generated
54
+ - [ ] Devices registered
55
+ - [ ] Configuration applied
56
+ - [ ] Connectivity verified
57
+
58
+ Include device attestation for security.
@@ -0,0 +1,47 @@
1
+ ---
2
+ description: Evaluate ML model performance with comprehensive metrics
3
+ allowed-tools: Task, Read, Write, Bash, Grep, Glob
4
+ argument-hint: <model name or path>
5
+ ---
6
+
7
+ # 📊 ML Evaluation: $ARGUMENTS
8
+
9
+ Evaluate model: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **ml-engineer** agent for model evaluation.
13
+
14
+ ## Evaluation Types
15
+ - **Offline** - Test set metrics
16
+ - **Online** - A/B testing
17
+ - **Shadow** - Production comparison
18
+ - **Bias** - Fairness analysis
19
+
20
+ ## Metrics
21
+ - Classification: Accuracy, F1, AUC, Precision, Recall
22
+ - Regression: RMSE, MAE, R², MAPE
23
+ - Ranking: NDCG, MAP, MRR
24
+ - Custom: Business metrics
25
+
26
+ ## Workflow
27
+ 1. **Data Split** - Ensure proper splits
28
+ 2. **Baseline** - Compare against baseline
29
+ 3. **Metrics** - Compute all metrics
30
+ 4. **Analysis** - Error analysis
31
+ 5. **Report** - Generate evaluation report
32
+
33
+ ## Outputs
34
+ - Confusion matrix
35
+ - ROC/PR curves
36
+ - Feature importance
37
+ - Error analysis
38
+ - Evaluation report
39
+
40
+ ## Progress
41
+ - [ ] Test data prepared
42
+ - [ ] Baseline computed
43
+ - [ ] Metrics calculated
44
+ - [ ] Errors analyzed
45
+ - [ ] Report generated
46
+
47
+ Include model comparison if multiple models.
@@ -0,0 +1,48 @@
1
+ ---
2
+ description: Train ML model with experiment tracking and hyperparameter tuning
3
+ allowed-tools: Task, Read, Write, Bash, Grep, Glob
4
+ argument-hint: <model type or training task>
5
+ ---
6
+
7
+ # 🤖 ML Training: $ARGUMENTS
8
+
9
+ Train model: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **ml-engineer** agent for model training.
13
+
14
+ ## Workflow
15
+ 1. **Data Prep** - Load and preprocess data
16
+ 2. **Feature Engineering** - Create features
17
+ 3. **Model Selection** - Choose architecture
18
+ 4. **Training** - Train with tracking
19
+ 5. **Tuning** - Hyperparameter optimization
20
+
21
+ ## Experiment Tracking
22
+ - MLflow / Weights & Biases
23
+ - Parameters logged
24
+ - Metrics recorded
25
+ - Artifacts stored
26
+ - Model versioning
27
+
28
+ ## Hyperparameter Tuning
29
+ - Grid search
30
+ - Random search
31
+ - Bayesian optimization
32
+ - Early stopping
33
+
34
+ ## Outputs
35
+ - Trained model artifact
36
+ - Training metrics
37
+ - Learning curves
38
+ - Hyperparameter config
39
+ - Model card
40
+
41
+ ## Progress
42
+ - [ ] Data prepared
43
+ - [ ] Features engineered
44
+ - [ ] Model trained
45
+ - [ ] Hyperparameters tuned
46
+ - [ ] Model registered
47
+
48
+ Log all experiments to tracking server.
@@ -0,0 +1,54 @@
1
+ ---
2
+ description: Run performance benchmarks and generate reports
3
+ allowed-tools: Task, Read, Write, Bash, Grep, Glob
4
+ argument-hint: <component or endpoint>
5
+ ---
6
+
7
+ # 📈 Performance Benchmark: $ARGUMENTS
8
+
9
+ Benchmark: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **performance-engineer** agent for benchmarking.
13
+
14
+ ## Benchmark Types
15
+ - **Microbenchmarks** - Function/method level
16
+ - **Load Testing** - Concurrent users
17
+ - **Stress Testing** - Breaking point
18
+ - **Soak Testing** - Long duration
19
+ - **Spike Testing** - Traffic bursts
20
+
21
+ ## Tools
22
+ - k6 / Artillery - HTTP load testing
23
+ - wrk / ab - Simple benchmarks
24
+ - pytest-benchmark - Python
25
+ - JMH - Java microbenchmarks
26
+
27
+ ## Metrics
28
+ - **Throughput** - Requests/second
29
+ - **Latency** - p50, p95, p99
30
+ - **Error Rate** - Failure percentage
31
+ - **Resource Usage** - CPU, memory
32
+
33
+ ## Workflow
34
+ 1. **Design** - Define scenarios
35
+ 2. **Baseline** - Current performance
36
+ 3. **Execute** - Run benchmarks
37
+ 4. **Analyze** - Process results
38
+ 5. **Report** - Generate report
39
+
40
+ ## Outputs
41
+ - Benchmark results (JSON/CSV)
42
+ - Latency histograms
43
+ - Throughput graphs
44
+ - Resource utilization
45
+ - Comparison report
46
+
47
+ ## Progress
48
+ - [ ] Scenarios defined
49
+ - [ ] Baseline recorded
50
+ - [ ] Benchmarks executed
51
+ - [ ] Results analyzed
52
+ - [ ] Report generated
53
+
54
+ Include reproducible benchmark scripts.
@@ -0,0 +1,49 @@
1
+ ---
2
+ description: Profile application performance and identify bottlenecks
3
+ allowed-tools: Task, Read, Bash, Grep, Glob
4
+ argument-hint: <application or component>
5
+ ---
6
+
7
+ # ⚡ Performance Profiling: $ARGUMENTS
8
+
9
+ Profile performance: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **performance-engineer** agent for profiling.
13
+
14
+ ## Profiling Types
15
+ - **CPU** - Hot paths, cycles
16
+ - **Memory** - Allocations, leaks
17
+ - **I/O** - Disk, network
18
+ - **Concurrency** - Thread contention
19
+ - **Database** - Query performance
20
+
21
+ ## Tools
22
+ - Python: cProfile, py-spy, memory_profiler
23
+ - Node.js: clinic, 0x, heapdump
24
+ - JVM: async-profiler, JFR
25
+ - Go: pprof, trace
26
+ - General: perf, dtrace
27
+
28
+ ## Workflow
29
+ 1. **Baseline** - Establish metrics
30
+ 2. **Profile** - Collect profiles
31
+ 3. **Analyze** - Find bottlenecks
32
+ 4. **Optimize** - Implement fixes
33
+ 5. **Verify** - Confirm improvement
34
+
35
+ ## Outputs
36
+ - Flame graphs
37
+ - Memory timeline
38
+ - Hot spot analysis
39
+ - Optimization recommendations
40
+ - Before/after comparison
41
+
42
+ ## Progress
43
+ - [ ] Baseline established
44
+ - [ ] Profiles collected
45
+ - [ ] Bottlenecks identified
46
+ - [ ] Optimizations suggested
47
+ - [ ] Verification plan
48
+
49
+ Generate flame graphs for visualization.
@@ -0,0 +1,56 @@
1
+ ---
2
+ description: Create internal developer platform blueprint with golden paths
3
+ allowed-tools: Task, Read, Write, Grep, Glob
4
+ argument-hint: <platform capability or service>
5
+ ---
6
+
7
+ # 🏗️ Platform Blueprint: $ARGUMENTS
8
+
9
+ Design platform for: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **platform-engineer** agent for blueprint design.
13
+
14
+ ## Platform Capabilities
15
+ - **Service Templates** - Golden paths
16
+ - **Self-Service** - Developer portal
17
+ - **Infrastructure** - IaC modules
18
+ - **Observability** - Monitoring stack
19
+ - **Security** - Policy as code
20
+
21
+ ## Blueprint Components
22
+ - Backstage catalog entries
23
+ - Terraform modules
24
+ - Helm charts
25
+ - CI/CD templates
26
+ - Documentation
27
+
28
+ ## Workflow
29
+ 1. **Requirements** - Gather needs
30
+ 2. **Design** - Architecture decisions
31
+ 3. **Templates** - Create golden paths
32
+ 4. **Automation** - Self-service workflows
33
+ 5. **Documentation** - Developer guides
34
+
35
+ ## Golden Path Principles
36
+ - Secure by default
37
+ - Observable by default
38
+ - Scalable patterns
39
+ - Cost-optimized
40
+ - Compliant
41
+
42
+ ## Outputs
43
+ - Platform architecture diagram
44
+ - Service templates
45
+ - IaC modules
46
+ - CI/CD pipelines
47
+ - Developer documentation
48
+
49
+ ## Progress
50
+ - [ ] Requirements gathered
51
+ - [ ] Architecture designed
52
+ - [ ] Templates created
53
+ - [ ] Automation built
54
+ - [ ] Documentation complete
55
+
56
+ Generate Backstage catalog entry.
@@ -0,0 +1,54 @@
1
+ ---
2
+ description: Comprehensive security audit with OWASP compliance check
3
+ allowed-tools: Task, Read, Grep, Glob
4
+ argument-hint: <application or system>
5
+ ---
6
+
7
+ # 🛡️ Security Audit: $ARGUMENTS
8
+
9
+ Audit security for: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **devsecops** agent for security audit.
13
+
14
+ ## Audit Scope
15
+ - **Authentication** - Auth mechanisms
16
+ - **Authorization** - Access control
17
+ - **Data Protection** - Encryption, PII
18
+ - **Input Validation** - Injection prevention
19
+ - **Configuration** - Secure defaults
20
+
21
+ ## OWASP Top 10 Check
22
+ 1. Broken Access Control
23
+ 2. Cryptographic Failures
24
+ 3. Injection
25
+ 4. Insecure Design
26
+ 5. Security Misconfiguration
27
+ 6. Vulnerable Components
28
+ 7. Auth Failures
29
+ 8. Data Integrity
30
+ 9. Logging Failures
31
+ 10. SSRF
32
+
33
+ ## Workflow
34
+ 1. **Scope** - Define audit boundaries
35
+ 2. **Analyze** - Review code/config
36
+ 3. **Test** - Security testing
37
+ 4. **Findings** - Document issues
38
+ 5. **Remediation** - Provide fixes
39
+
40
+ ## Outputs
41
+ - Audit report
42
+ - OWASP compliance matrix
43
+ - Finding details with severity
44
+ - Remediation recommendations
45
+ - Security hardening guide
46
+
47
+ ## Progress
48
+ - [ ] Scope defined
49
+ - [ ] Code analyzed
50
+ - [ ] Tests executed
51
+ - [ ] Findings documented
52
+ - [ ] Remediation planned
53
+
54
+ Include executive summary.
@@ -0,0 +1,55 @@
1
+ ---
2
+ description: Run security scans including SAST, SCA, and secrets detection
3
+ allowed-tools: Task, Read, Bash, Grep, Glob
4
+ argument-hint: <path or scope>
5
+ ---
6
+
7
+ # 🔒 Security Scan: $ARGUMENTS
8
+
9
+ Scan for vulnerabilities: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **devsecops** agent for security scanning.
13
+
14
+ ## Scan Types
15
+ - **SAST** - Static code analysis
16
+ - **SCA** - Dependency vulnerabilities
17
+ - **Secrets** - Credential detection
18
+ - **Container** - Image scanning
19
+ - **IaC** - Infrastructure as code
20
+
21
+ ## Tools
22
+ - Semgrep (SAST)
23
+ - Snyk / Dependabot (SCA)
24
+ - TruffleHog / GitLeaks (Secrets)
25
+ - Trivy (Container)
26
+ - Checkov (IaC)
27
+
28
+ ## Workflow
29
+ 1. **Configure** - Set up scanners
30
+ 2. **Execute** - Run all scans
31
+ 3. **Aggregate** - Combine results
32
+ 4. **Prioritize** - Rank by severity
33
+ 5. **Report** - Generate findings
34
+
35
+ ## Severity Levels
36
+ - 🔴 Critical - Fix immediately
37
+ - 🟠 High - Fix this sprint
38
+ - 🟡 Medium - Plan fix
39
+ - 🟢 Low - Track
40
+
41
+ ## Outputs
42
+ - Vulnerability report
43
+ - CVE list with fixes
44
+ - Secret findings
45
+ - Compliance status
46
+ - Remediation plan
47
+
48
+ ## Progress
49
+ - [ ] SAST complete
50
+ - [ ] SCA complete
51
+ - [ ] Secrets scanned
52
+ - [ ] Containers scanned
53
+ - [ ] Report generated
54
+
55
+ Fail on critical/high findings if --strict.
@@ -0,0 +1,53 @@
1
+ ---
2
+ description: Design and configure SRE observability dashboards with SLI/SLO tracking
3
+ allowed-tools: Task, Read, Write, Bash, Grep, Glob
4
+ argument-hint: <service or system>
5
+ ---
6
+
7
+ # 📊 SRE Dashboard: $ARGUMENTS
8
+
9
+ Design observability dashboard for: **$ARGUMENTS**
10
+
11
+ ## Agent
12
+ Uses **site-reliability-engineer** agent for dashboard design.
13
+
14
+ ## Dashboard Components
15
+ - **SLI/SLO Tracking** - Error budgets, burn rates
16
+ - **Service Health** - Availability, latency
17
+ - **Infrastructure** - Resources, capacity
18
+ - **Incidents** - Alerts, MTTR tracking
19
+ - **Dependencies** - Service map, health
20
+
21
+ ## Metrics Framework
22
+ - **RED** - Rate, Errors, Duration
23
+ - **USE** - Utilization, Saturation, Errors
24
+ - **Four Golden Signals** - Latency, Traffic, Errors, Saturation
25
+
26
+ ## Tools
27
+ - Grafana dashboards
28
+ - Prometheus queries (PromQL)
29
+ - Datadog/New Relic
30
+ - Custom metrics exporters
31
+
32
+ ## Workflow
33
+ 1. **Requirements** - Define SLIs/SLOs
34
+ 2. **Data Sources** - Configure metrics
35
+ 3. **Design** - Layout panels
36
+ 4. **Alerts** - Set thresholds
37
+ 5. **Documentation** - Runbooks
38
+
39
+ ## Outputs
40
+ - Dashboard JSON/YAML
41
+ - PromQL queries
42
+ - Alert rules
43
+ - SLO documentation
44
+ - Runbook templates
45
+
46
+ ## Progress
47
+ - [ ] SLIs defined
48
+ - [ ] Data sources configured
49
+ - [ ] Dashboard designed
50
+ - [ ] Alerts configured
51
+ - [ ] Runbooks created
52
+
53
+ Include error budget burn rate alerts.