omgkit 2.15.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.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![License](https://img.shields.io/badge/license-MIT-blue)](LICENSE)
8
8
 
9
9
  > **AI Team System for Claude Code**
10
- > 33 Agents • 111 Commands • 49 Workflows • 128 Skills • 10 Modes • 14 Archetypes
10
+ > 33 Agents • 111 Commands • 49 Workflows • 127 Skills • 10 Modes • 14 Archetypes
11
11
  > *"Think Omega. Build Omega. Be Omega."*
12
12
 
13
13
  OMGKIT transforms Claude Code into an autonomous AI development team with sprint management, specialized agents, and Omega-level thinking for 10x-1000x productivity improvements.
@@ -19,7 +19,7 @@ OMGKIT transforms Claude Code into an autonomous AI development team with sprint
19
19
  | **Agents** | 33 | Specialized AI team members |
20
20
  | **Commands** | 111 | Slash commands for every task |
21
21
  | **Workflows** | 49 | Complete development processes |
22
- | **Skills** | 128 | Domain expertise modules |
22
+ | **Skills** | 127 | Domain expertise modules |
23
23
  | **Modes** | 10 | Behavioral configurations |
24
24
  | **Archetypes** | 14 | Project templates for autonomous dev |
25
25
  | **Sprint Management** | ✅ | Vision, backlog, team autonomy |
@@ -445,6 +445,42 @@ OMGKIT supports these MCP servers for enhanced capabilities:
445
445
  | Filesystem | Secure file operations |
446
446
  | Playwright | Browser automation |
447
447
 
448
+ ## 🏗️ Optimized Alignment Principle (OAP)
449
+
450
+ OMGKIT uses a **5-level component hierarchy** ensuring consistency and maintainability:
451
+
452
+ ```
453
+ Level 0: MCPs (Foundation)
454
+
455
+ Level 1: Commands → use MCPs
456
+
457
+ Level 2: Skills → use Commands, MCPs
458
+
459
+ Level 3: Agents → use Skills, Commands, MCPs
460
+
461
+ Level 4: Workflows → use Agents, Skills, Commands, MCPs
462
+ ```
463
+
464
+ ### Five Alignment Rules
465
+
466
+ 1. **Format Compliance** - Components use correct naming patterns
467
+ 2. **Existence Validation** - All references must exist
468
+ 3. **No Cross-Type Confusion** - Components not confused with other types
469
+ 4. **Hierarchical Respect** - Only reference same/lower level components
470
+ 5. **Optimization** - Minimal, appropriate, unique references
471
+
472
+ ### Component Formats
473
+
474
+ | Component | Format | Example |
475
+ |-----------|--------|---------|
476
+ | MCPs | `kebab-case` | `context7` |
477
+ | Commands | `/namespace:name` | `/dev:feature` |
478
+ | Skills | `category/name` | `methodology/writing-plans` |
479
+ | Agents | `kebab-case` | `fullstack-developer` |
480
+ | Workflows | `category/name` | `development/feature` |
481
+
482
+ All alignment rules are enforced by 400+ automated tests. See [full documentation](https://omgkit.mintlify.app/concepts/alignment-principle).
483
+
448
484
  ## 📄 License
449
485
 
450
486
  MIT
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "omgkit",
3
- "version": "2.15.0",
4
- "description": "Omega-Level Development Kit - AI Team System for Claude Code. 33 agents, 111 commands, 128 skills, 49 workflows.",
3
+ "version": "2.16.0",
4
+ "description": "Omega-Level Development Kit - AI Team System for Claude Code. 33 agents, 111 commands, 127 skills, 49 workflows.",
5
5
  "keywords": [
6
6
  "claude-code",
7
7
  "ai",
@@ -1,9 +1,85 @@
1
1
  # OMGKIT Component Registry
2
- # Single Source of Truth for Agents, Skills, Commands, and Workflows
3
- # Version: 1.0.0
2
+ # Single Source of Truth for Agents, Skills, Commands, Workflows, and MCPs
3
+ # Version: 2.0.0
4
4
  # Updated: 2026-01-02
5
5
 
6
- version: "1.0.0"
6
+ version: "2.0.0"
7
+
8
+ # =============================================================================
9
+ # OPTIMIZED ALIGNMENT PRINCIPLE (OAP)
10
+ # =============================================================================
11
+ # Core architectural rule defining component relationships.
12
+ # See: plugin/stdrules/ALIGNMENT_PRINCIPLE.md for full documentation.
13
+ #
14
+ # Hierarchy (lower levels are used by higher levels):
15
+ # Level 0: MCPs → Foundation layer
16
+ # Level 1: Commands → Use: MCPs
17
+ # Level 2: Skills → Use: Commands, MCPs
18
+ # Level 3: Agents → Use: Skills, Commands, MCPs
19
+ # Level 4: Workflows → Use: Agents, Skills, Commands, MCPs
20
+ #
21
+ # Rules:
22
+ # 1. Format Compliance - Use correct format for each component type
23
+ # 2. Existence Validation - All references must point to existing components
24
+ # 3. No Cross-Type Confusion - Don't mix agents/skills/commands
25
+ # 4. Hierarchical Respect - Only reference lower or same level components
26
+ # 5. Optimization - Appropriate, minimal, unique, contextual references
27
+ # =============================================================================
28
+
29
+ alignment_principle:
30
+ version: "1.0.0"
31
+ enforced: true
32
+ documentation: "plugin/stdrules/ALIGNMENT_PRINCIPLE.md"
33
+ hierarchy:
34
+ - level: 0
35
+ type: mcp
36
+ format: "mcp-name"
37
+ location: "plugin/mcp/"
38
+ uses: []
39
+ - level: 1
40
+ type: command
41
+ format: "/namespace:command-name"
42
+ location: "plugin/commands/<namespace>/<name>.md"
43
+ uses: [mcp]
44
+ - level: 2
45
+ type: skill
46
+ format: "category/skill-name"
47
+ location: "plugin/skills/<category>/<name>/SKILL.md"
48
+ uses: [command, mcp]
49
+ - level: 3
50
+ type: agent
51
+ format: "kebab-case"
52
+ location: "plugin/agents/<name>.md"
53
+ uses: [skill, command, mcp]
54
+ - level: 4
55
+ type: workflow
56
+ format: "category/workflow-name"
57
+ location: "plugin/workflows/<category>/<name>.md"
58
+ uses: [agent, skill, command, mcp]
59
+
60
+ # =============================================================================
61
+ # MCP SERVERS (Model Context Protocol)
62
+ # =============================================================================
63
+ # MCPs provide external capabilities to OMGKIT components.
64
+ # Foundation layer of the alignment hierarchy.
65
+ # =============================================================================
66
+
67
+ mcp_servers:
68
+ context7:
69
+ description: Up-to-date library documentation
70
+ status: supported
71
+ sequential-thinking:
72
+ description: Multi-step reasoning
73
+ status: supported
74
+ memory:
75
+ description: Persistent knowledge graph
76
+ status: supported
77
+ filesystem:
78
+ description: Secure file operations
79
+ status: supported
80
+ playwright:
81
+ description: Browser automation
82
+ status: supported
7
83
 
8
84
  # =============================================================================
9
85
  # AGENTS
@@ -0,0 +1,240 @@
1
+ # Optimized Alignment Principle (OAP)
2
+
3
+ **Version:** 1.0.0
4
+ **Status:** Core Principle
5
+ **Enforcement:** Mandatory (validated by tests)
6
+
7
+ ---
8
+
9
+ ## Overview
10
+
11
+ The **Optimized Alignment Principle (OAP)** is a core architectural rule that defines how OMGKIT components relate to each other. This principle ensures consistency, maintainability, and scalability across all components.
12
+
13
+ ---
14
+
15
+ ## Component Hierarchy
16
+
17
+ ```
18
+ ┌─────────────────────────────────────────────────────────────────────┐
19
+ │ OPTIMIZED ALIGNMENT HIERARCHY │
20
+ ├─────────────────────────────────────────────────────────────────────┤
21
+ │ │
22
+ │ Level 0: MCPs (Model Context Protocol Servers) │
23
+ │ └── Foundation layer, used by all other components │
24
+ │ │
25
+ │ Level 1: Commands │
26
+ │ └── Use: zero-to-many MCPs │
27
+ │ └── Format: /namespace:command-name │
28
+ │ │
29
+ │ Level 2: Skills │
30
+ │ └── Use: zero-to-many Commands, MCPs │
31
+ │ └── Format: category/skill-name │
32
+ │ │
33
+ │ Level 3: Agents │
34
+ │ └── Use: zero-to-many Skills, Commands, MCPs │
35
+ │ └── Format: kebab-case name │
36
+ │ │
37
+ │ Level 4: Workflows │
38
+ │ └── Use: zero-to-many Agents, Skills, Commands, MCPs │
39
+ │ └── Format: category/workflow-name │
40
+ │ │
41
+ └─────────────────────────────────────────────────────────────────────┘
42
+ ```
43
+
44
+ ---
45
+
46
+ ## Alignment Rules
47
+
48
+ ### Rule 1: Format Compliance
49
+
50
+ All component references MUST use the correct format:
51
+
52
+ | Component | Format | Example |
53
+ |-----------|--------|---------|
54
+ | MCP | `mcp-name` | `context7`, `sequential-thinking` |
55
+ | Command | `/namespace:command-name` | `/dev:feature`, `/omega:10x` |
56
+ | Skill | `category/skill-name` | `methodology/writing-plans` |
57
+ | Agent | `kebab-case` | `fullstack-developer` |
58
+ | Workflow | `category/workflow-name` | `development/feature` |
59
+
60
+ ### Rule 2: Existence Validation
61
+
62
+ All referenced components MUST exist:
63
+
64
+ - Skills → Must exist in `/plugin/skills/<category>/<name>/SKILL.md`
65
+ - Commands → Must exist in `/plugin/commands/<namespace>/<name>.md`
66
+ - Agents → Must exist in `/plugin/agents/<name>.md`
67
+ - Workflows → Must exist in `/plugin/workflows/<category>/<name>.md`
68
+ - MCPs → Must be registered in `/plugin/mcp/`
69
+
70
+ ### Rule 3: No Cross-Type Confusion
71
+
72
+ Components MUST NOT be confused with other types:
73
+
74
+ - ❌ Agent names in `skills:` field
75
+ - ❌ Skill names in `agents:` field
76
+ - ❌ Commands without proper `/namespace:` prefix
77
+
78
+ ### Rule 4: Hierarchical Respect
79
+
80
+ Components can only reference components from their level or below:
81
+
82
+ | Component | Can Reference |
83
+ |-----------|---------------|
84
+ | MCP | (none - foundation layer) |
85
+ | Command | MCPs |
86
+ | Skill | Commands, MCPs |
87
+ | Agent | Skills, Commands, MCPs |
88
+ | Workflow | Agents, Skills, Commands, MCPs |
89
+
90
+ ### Rule 5: Optimization Requirements
91
+
92
+ References should be:
93
+
94
+ 1. **Appropriate** - Only reference what is needed
95
+ 2. **Minimal** - Avoid redundant dependencies
96
+ 3. **Unique** - No duplicate references
97
+ 4. **Contextual** - Match the component's purpose
98
+
99
+ ---
100
+
101
+ ## Frontmatter Specifications
102
+
103
+ ### Skill Frontmatter
104
+
105
+ ```yaml
106
+ ---
107
+ name: skill-name
108
+ description: What the skill does
109
+ category: category-name
110
+ commands: # Optional: commands this skill uses
111
+ - /namespace:cmd
112
+ mcps: # Future: MCPs this skill uses
113
+ - mcp-name
114
+ ---
115
+ ```
116
+
117
+ ### Agent Frontmatter
118
+
119
+ ```yaml
120
+ ---
121
+ name: agent-name
122
+ description: What the agent does
123
+ tools: Tool1, Tool2
124
+ model: inherit
125
+ skills: # Skills this agent uses
126
+ - category/skill-name
127
+ commands: # Commands this agent can trigger
128
+ - /namespace:cmd
129
+ mcps: # Future: MCPs this agent uses
130
+ - mcp-name
131
+ ---
132
+ ```
133
+
134
+ ### Workflow Frontmatter
135
+
136
+ ```yaml
137
+ ---
138
+ name: workflow-name
139
+ description: What the workflow does
140
+ category: category-name
141
+ agents: # Agents this workflow orchestrates
142
+ - agent-name
143
+ skills: # Skills used across the workflow
144
+ - category/skill-name
145
+ commands: # Commands triggered by the workflow
146
+ - /namespace:cmd
147
+ mcps: # Future: MCPs used by the workflow
148
+ - mcp-name
149
+ ---
150
+ ```
151
+
152
+ ---
153
+
154
+ ## Validation
155
+
156
+ ### Automated Tests
157
+
158
+ The alignment principle is enforced by automated tests in:
159
+ - `tests/validation/alignment.test.js`
160
+ - `tests/validation/format.test.js`
161
+ - `tests/validation/existence.test.js`
162
+ - `tests/validation/hierarchy.test.js`
163
+
164
+ ### Pre-Publish Check
165
+
166
+ Before publishing to npm, ALL alignment tests MUST pass:
167
+
168
+ ```bash
169
+ npm test
170
+ ```
171
+
172
+ ### CI/CD Integration
173
+
174
+ GitHub Actions validates alignment on every PR.
175
+
176
+ ---
177
+
178
+ ## Examples
179
+
180
+ ### Correct Alignment
181
+
182
+ ```yaml
183
+ # Agent: fullstack-developer.md
184
+ skills:
185
+ - methodology/executing-plans # ✓ Valid skill format
186
+ - languages/typescript # ✓ Exists in skills directory
187
+ commands:
188
+ - /dev:feature # ✓ Valid command format
189
+ - /dev:fix # ✓ Exists in commands directory
190
+ ```
191
+
192
+ ### Incorrect Alignment
193
+
194
+ ```yaml
195
+ # WRONG - Common mistakes
196
+ skills:
197
+ - planner # ✗ This is an agent name, not skill
198
+ - writing-plans # ✗ Missing category prefix
199
+ - methodology/nonexistent # ✗ Skill doesn't exist
200
+
201
+ commands:
202
+ - feature # ✗ Missing /namespace: prefix
203
+ - /dev/feature # ✗ Wrong separator (/ not :)
204
+ ```
205
+
206
+ ---
207
+
208
+ ## Future: MCP Alignment
209
+
210
+ When MCP support is fully implemented:
211
+
212
+ 1. MCPs will be registered in `/plugin/mcp/`
213
+ 2. All components can declare `mcps:` in frontmatter
214
+ 3. Tests will validate MCP references exist
215
+ 4. Registry will track MCP-component mappings
216
+
217
+ ---
218
+
219
+ ## Enforcement
220
+
221
+ This principle is:
222
+
223
+ 1. **Documented** - In this file and public docs
224
+ 2. **Tested** - 400+ automated tests
225
+ 3. **Required** - Must pass before publish
226
+ 4. **Versioned** - Changes tracked in changelog
227
+
228
+ ---
229
+
230
+ ## Changelog
231
+
232
+ ### 1.0.0 (2026-01-02)
233
+ - Initial definition of Optimized Alignment Principle
234
+ - Established 5 core alignment rules
235
+ - Created comprehensive test suite
236
+ - Added MCP future support placeholder
237
+
238
+ ---
239
+
240
+ *Think Omega. Build Omega. Be Omega.* 🔮
@@ -5,7 +5,7 @@ triggers:
5
5
  - ml:experiment
6
6
  agents:
7
7
  - ml-engineer
8
- - data-scientist
8
+ - data-engineer
9
9
  ---
10
10
 
11
11
  # Experiment Cycle Workflow
@@ -5,7 +5,7 @@ triggers:
5
5
  - ml:deploy
6
6
  agents:
7
7
  - ml-engineer
8
- - site-reliability-engineer
8
+ - observability-engineer
9
9
  ---
10
10
 
11
11
  # Model Deployment Workflow
@@ -79,7 +79,7 @@ base_images:
79
79
 
80
80
  ### Step 3.1: Deploy to Staging
81
81
  ```yaml
82
- agent: site-reliability-engineer
82
+ agent: observability-engineer
83
83
  action: deploy
84
84
  environment: staging
85
85
  infrastructure:
@@ -105,7 +105,7 @@ tests:
105
105
 
106
106
  ### Step 4.1: Canary Deployment
107
107
  ```yaml
108
- agent: site-reliability-engineer
108
+ agent: observability-engineer
109
109
  action: deploy
110
110
  strategy: canary
111
111
  configuration:
@@ -119,7 +119,7 @@ configuration:
119
119
 
120
120
  ### Step 4.2: Shadow Deployment (Optional)
121
121
  ```yaml
122
- agent: site-reliability-engineer
122
+ agent: observability-engineer
123
123
  action: deploy
124
124
  strategy: shadow
125
125
  configuration:
@@ -131,7 +131,7 @@ configuration:
131
131
 
132
132
  ### Step 4.3: Full Rollout
133
133
  ```yaml
134
- agent: site-reliability-engineer
134
+ agent: observability-engineer
135
135
  action: promote
136
136
  after:
137
137
  - Canary success
@@ -147,7 +147,7 @@ steps:
147
147
 
148
148
  ### Step 5.1: Configure Monitoring
149
149
  ```yaml
150
- agent: site-reliability-engineer
150
+ agent: observability-engineer
151
151
  action: configure
152
152
  monitoring:
153
153
  - Prediction latency
@@ -163,7 +163,7 @@ dashboards:
163
163
 
164
164
  ### Step 5.2: Configure Alerts
165
165
  ```yaml
166
- agent: site-reliability-engineer
166
+ agent: observability-engineer
167
167
  action: configure
168
168
  alerts:
169
169
  - High error rate
@@ -5,7 +5,7 @@ triggers:
5
5
  - ml:monitoring
6
6
  agents:
7
7
  - ml-engineer
8
- - site-reliability-engineer
8
+ - observability-engineer
9
9
  ---
10
10
 
11
11
  # ML Monitoring Setup Workflow
@@ -127,7 +127,7 @@ detection:
127
127
 
128
128
  ### Step 4.1: System Metrics
129
129
  ```yaml
130
- agent: site-reliability-engineer
130
+ agent: observability-engineer
131
131
  action: configure
132
132
  metrics:
133
133
  - Request latency (p50, p95, p99)
@@ -140,7 +140,7 @@ metrics:
140
140
 
141
141
  ### Step 4.2: SLI/SLO Definition
142
142
  ```yaml
143
- agent: site-reliability-engineer
143
+ agent: observability-engineer
144
144
  action: define
145
145
  slis:
146
146
  - Availability: Successful requests / Total requests
@@ -156,7 +156,7 @@ slos:
156
156
 
157
157
  ### Step 5.1: Alert Configuration
158
158
  ```yaml
159
- agent: site-reliability-engineer
159
+ agent: observability-engineer
160
160
  action: configure
161
161
  alert_rules:
162
162
  - model_drift_detected:
@@ -175,7 +175,7 @@ alert_rules:
175
175
 
176
176
  ### Step 5.2: Response Playbooks
177
177
  ```yaml
178
- agent: site-reliability-engineer
178
+ agent: observability-engineer
179
179
  action: document
180
180
  playbooks:
181
181
  - drift_detected:
@@ -196,7 +196,7 @@ playbooks:
196
196
 
197
197
  ### Step 6.1: Create Dashboards
198
198
  ```yaml
199
- agent: site-reliability-engineer
199
+ agent: observability-engineer
200
200
  action: create
201
201
  dashboards:
202
202
  - model_health:
@@ -5,7 +5,7 @@ triggers:
5
5
  - kafka:consumers
6
6
  agents:
7
7
  - data-engineer
8
- - site-reliability-engineer
8
+ - observability-engineer
9
9
  ---
10
10
 
11
11
  # Consumer Group Management Workflow
@@ -78,7 +78,7 @@ commit_strategy:
78
78
 
79
79
  ### Step 3.1: Consumer Scaling
80
80
  ```yaml
81
- agent: site-reliability-engineer
81
+ agent: observability-engineer
82
82
  action: configure
83
83
  scaling:
84
84
  min_consumers: 1
@@ -106,7 +106,7 @@ static_membership:
106
106
 
107
107
  ### Step 4.1: Lag Monitoring
108
108
  ```yaml
109
- agent: site-reliability-engineer
109
+ agent: observability-engineer
110
110
  action: configure
111
111
  metrics:
112
112
  - consumer_lag_per_partition
@@ -121,7 +121,7 @@ tools:
121
121
 
122
122
  ### Step 4.2: Alerting
123
123
  ```yaml
124
- agent: site-reliability-engineer
124
+ agent: observability-engineer
125
125
  action: configure
126
126
  alerts:
127
127
  - consumer_lag_critical:
@@ -142,7 +142,7 @@ alerts:
142
142
 
143
143
  ### Step 5.1: Offset Management Operations
144
144
  ```yaml
145
- agent: site-reliability-engineer
145
+ agent: observability-engineer
146
146
  action: document
147
147
  operations:
148
148
  reset_to_earliest:
@@ -158,7 +158,7 @@ operations:
158
158
 
159
159
  ### Step 5.2: Troubleshooting Runbook
160
160
  ```yaml
161
- agent: site-reliability-engineer
161
+ agent: observability-engineer
162
162
  action: document
163
163
  scenarios:
164
164
  - lag_increasing:
@@ -4,7 +4,7 @@ triggers:
4
4
  - manual
5
5
  - game:content
6
6
  agents:
7
- - game-designer
7
+ - game-systems-designer
8
8
  - fullstack-developer
9
9
  ---
10
10
 
@@ -21,7 +21,7 @@ Create efficient pipeline for game content creation.
21
21
 
22
22
  ### Step 1.1: Identify Content Types
23
23
  ```yaml
24
- agent: game-designer
24
+ agent: game-systems-designer
25
25
  action: catalog
26
26
  content_types:
27
27
  - 2D_assets: Sprites, UI, textures
@@ -33,7 +33,7 @@ content_types:
33
33
 
34
34
  ### Step 1.2: Define Pipeline Flow
35
35
  ```yaml
36
- agent: game-designer
36
+ agent: game-systems-designer
37
37
  action: design
38
38
  flow:
39
39
  creation:
@@ -160,7 +160,7 @@ builds:
160
160
 
161
161
  ### Step 5.1: Data-Driven Content
162
162
  ```yaml
163
- agent: game-designer
163
+ agent: game-systems-designer
164
164
  action: design
165
165
  systems:
166
166
  - JSON/YAML game data
@@ -193,7 +193,7 @@ tools:
193
193
 
194
194
  ### Step 6.1: Content Guidelines
195
195
  ```yaml
196
- agent: game-designer
196
+ agent: game-systems-designer
197
197
  action: document
198
198
  guidelines:
199
199
  - Art style guide
@@ -4,7 +4,7 @@ triggers:
4
4
  - manual
5
5
  - game:submit
6
6
  agents:
7
- - game-designer
7
+ - game-systems-designer
8
8
  - fullstack-developer
9
9
  - tester
10
10
  ---
@@ -22,7 +22,7 @@ Navigate platform certification and store submission.
22
22
 
23
23
  ### Step 1.1: Platform Requirements Review
24
24
  ```yaml
25
- agent: game-designer
25
+ agent: game-systems-designer
26
26
  action: review
27
27
  platforms:
28
28
  steam:
@@ -54,7 +54,7 @@ platforms:
54
54
 
55
55
  ### Step 1.2: Content Rating
56
56
  ```yaml
57
- agent: game-designer
57
+ agent: game-systems-designer
58
58
  action: submit
59
59
  rating_boards:
60
60
  - ESRB (North America)
@@ -161,7 +161,7 @@ scope:
161
161
 
162
162
  ### Step 4.1: Marketing Materials
163
163
  ```yaml
164
- agent: game-designer
164
+ agent: game-systems-designer
165
165
  action: prepare
166
166
  assets:
167
167
  - Store page screenshots (platform sizes)
@@ -174,7 +174,7 @@ assets:
174
174
 
175
175
  ### Step 4.2: Store Configuration
176
176
  ```yaml
177
- agent: game-designer
177
+ agent: game-systems-designer
178
178
  action: configure
179
179
  settings:
180
180
  - Pricing
@@ -203,7 +203,7 @@ per_platform:
203
203
 
204
204
  ### Step 5.2: Submit for Review
205
205
  ```yaml
206
- agent: game-designer
206
+ agent: game-systems-designer
207
207
  action: submit
208
208
  documentation:
209
209
  - Build notes
@@ -224,7 +224,7 @@ timeline:
224
224
 
225
225
  ### Step 6.1: Handle Feedback
226
226
  ```yaml
227
- agent: game-designer
227
+ agent: game-systems-designer
228
228
  action: respond
229
229
  scenarios:
230
230
  approved:
@@ -238,7 +238,7 @@ scenarios:
238
238
 
239
239
  ### Step 6.2: Launch Preparation
240
240
  ```yaml
241
- agent: game-designer
241
+ agent: game-systems-designer
242
242
  action: prepare
243
243
  launch_checklist:
244
244
  - Press kit ready
@@ -4,7 +4,7 @@ triggers:
4
4
  - manual
5
5
  - game:playtest
6
6
  agents:
7
- - game-designer
7
+ - game-systems-designer
8
8
  - tester
9
9
  ---
10
10
 
@@ -21,7 +21,7 @@ Conduct effective playtesting to improve game quality.
21
21
 
22
22
  ### Step 1.1: Define Objectives
23
23
  ```yaml
24
- agent: game-designer
24
+ agent: game-systems-designer
25
25
  action: define
26
26
  objectives:
27
27
  types:
@@ -36,7 +36,7 @@ objectives:
36
36
 
37
37
  ### Step 1.2: Select Playtesters
38
38
  ```yaml
39
- agent: game-designer
39
+ agent: game-systems-designer
40
40
  action: select
41
41
  criteria:
42
42
  internal:
@@ -82,7 +82,7 @@ tools:
82
82
 
83
83
  ### Step 2.2: Observation Protocol
84
84
  ```yaml
85
- agent: game-designer
85
+ agent: game-systems-designer
86
86
  action: define
87
87
  observation:
88
88
  - Think-aloud protocol
@@ -94,7 +94,7 @@ observation:
94
94
 
95
95
  ### Step 2.3: Survey Preparation
96
96
  ```yaml
97
- agent: game-designer
97
+ agent: game-systems-designer
98
98
  action: prepare
99
99
  surveys:
100
100
  pre_play:
@@ -143,7 +143,7 @@ per_session:
143
143
 
144
144
  ### Step 4.1: Quantitative Analysis
145
145
  ```yaml
146
- agent: game-designer
146
+ agent: game-systems-designer
147
147
  action: analyze
148
148
  metrics:
149
149
  - Completion rates
@@ -159,7 +159,7 @@ visualization:
159
159
 
160
160
  ### Step 4.2: Qualitative Analysis
161
161
  ```yaml
162
- agent: game-designer
162
+ agent: game-systems-designer
163
163
  action: analyze
164
164
  methods:
165
165
  - Affinity mapping
@@ -171,7 +171,7 @@ methods:
171
171
 
172
172
  ### Step 4.3: Insight Synthesis
173
173
  ```yaml
174
- agent: game-designer
174
+ agent: game-systems-designer
175
175
  action: synthesize
176
176
  outputs:
177
177
  - Key findings summary
@@ -185,7 +185,7 @@ outputs:
185
185
 
186
186
  ### Step 5.1: Prioritize Findings
187
187
  ```yaml
188
- agent: game-designer
188
+ agent: game-systems-designer
189
189
  action: prioritize
190
190
  criteria:
191
191
  - Impact on player experience
@@ -201,7 +201,7 @@ categories:
201
201
 
202
202
  ### Step 5.2: Create Action Items
203
203
  ```yaml
204
- agent: game-designer
204
+ agent: game-systems-designer
205
205
  action: plan
206
206
  per_finding:
207
207
  - Issue description
@@ -213,7 +213,7 @@ per_finding:
213
213
 
214
214
  ### Step 5.3: Plan Follow-up Testing
215
215
  ```yaml
216
- agent: game-designer
216
+ agent: game-systems-designer
217
217
  action: plan
218
218
  next_playtest:
219
219
  - Verify fixes
@@ -4,7 +4,7 @@ triggers:
4
4
  - manual
5
5
  - game:production
6
6
  agents:
7
- - game-designer
7
+ - game-systems-designer
8
8
  - fullstack-developer
9
9
  - tester
10
10
  ---
@@ -22,7 +22,7 @@ Convert rapid game prototype into maintainable production code.
22
22
 
23
23
  ### Step 1.1: Evaluate Prototype
24
24
  ```yaml
25
- agent: game-designer
25
+ agent: game-systems-designer
26
26
  action: assess
27
27
  evaluation:
28
28
  - Core mechanics working
@@ -34,7 +34,7 @@ evaluation:
34
34
 
35
35
  ### Step 1.2: Define Production Requirements
36
36
  ```yaml
37
- agent: game-designer
37
+ agent: game-systems-designer
38
38
  action: define
39
39
  requirements:
40
40
  - Target frame rate: 60fps
@@ -48,7 +48,7 @@ requirements:
48
48
 
49
49
  ### Step 2.1: Design Production Architecture
50
50
  ```yaml
51
- agent: game-designer
51
+ agent: game-systems-designer
52
52
  action: design
53
53
  patterns:
54
54
  - Component system (ECS or composition)
@@ -4,7 +4,7 @@ triggers:
4
4
  - manual
5
5
  - observability:tracing
6
6
  agents:
7
- - site-reliability-engineer
7
+ - observability-engineer
8
8
  - fullstack-developer
9
9
  ---
10
10
 
@@ -21,7 +21,7 @@ Set up end-to-end request tracing across services.
21
21
 
22
22
  ### Step 1.1: Deploy Tracing Backend
23
23
  ```yaml
24
- agent: site-reliability-engineer
24
+ agent: observability-engineer
25
25
  action: deploy
26
26
  options:
27
27
  - Jaeger
@@ -37,7 +37,7 @@ configuration:
37
37
 
38
38
  ### Step 1.2: Configure Sampling
39
39
  ```yaml
40
- agent: site-reliability-engineer
40
+ agent: observability-engineer
41
41
  action: configure
42
42
  sampling:
43
43
  type: probabilistic # or rate_limiting, adaptive
@@ -120,7 +120,7 @@ log_correlation:
120
120
 
121
121
  ### Step 4.2: Metrics Correlation
122
122
  ```yaml
123
- agent: site-reliability-engineer
123
+ agent: observability-engineer
124
124
  action: configure
125
125
  metrics_correlation:
126
126
  - exemplars: trace_id_in_metrics
@@ -131,7 +131,7 @@ metrics_correlation:
131
131
 
132
132
  ### Step 5.1: Create Dashboards
133
133
  ```yaml
134
- agent: site-reliability-engineer
134
+ agent: observability-engineer
135
135
  action: create
136
136
  dashboards:
137
137
  - service_latency_breakdown
@@ -142,7 +142,7 @@ dashboards:
142
142
 
143
143
  ### Step 5.2: Configure Alerts
144
144
  ```yaml
145
- agent: site-reliability-engineer
145
+ agent: observability-engineer
146
146
  action: configure
147
147
  alerts:
148
148
  - high_latency_traces
@@ -5,7 +5,7 @@ triggers:
5
5
  - infrastructure:mesh
6
6
  agents:
7
7
  - platform-engineer
8
- - site-reliability-engineer
8
+ - observability-engineer
9
9
  ---
10
10
 
11
11
  # Service Mesh Setup Workflow
@@ -105,7 +105,7 @@ rules:
105
105
 
106
106
  ### Step 4.1: Configure Telemetry
107
107
  ```yaml
108
- agent: site-reliability-engineer
108
+ agent: observability-engineer
109
109
  action: configure
110
110
  integrations:
111
111
  - prometheus_metrics
@@ -116,7 +116,7 @@ integrations:
116
116
 
117
117
  ### Step 4.2: Create Dashboards
118
118
  ```yaml
119
- agent: site-reliability-engineer
119
+ agent: observability-engineer
120
120
  action: create
121
121
  dashboards:
122
122
  - service_mesh_overview
@@ -129,7 +129,7 @@ dashboards:
129
129
 
130
130
  ### Step 5.1: Verify Mesh Functionality
131
131
  ```yaml
132
- agent: site-reliability-engineer
132
+ agent: observability-engineer
133
133
  action: test
134
134
  validations:
135
135
  - mtls_working