sinapse-ai 7.7.5 → 7.7.6
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/.claude/CLAUDE.md +1 -0
- package/.claude/rules/security-data-protection.md +184 -0
- package/.codex/delegation-matrix.json +364 -475
- package/.codex/handoff-packet.schema.json +13 -93
- package/.codex/scripts/resolve-codex-delegation-parity.js +205 -0
- package/.codex/scripts/resolve-codex-delegation.js +92 -121
- package/.codex/tasks/route-sinapse-request.md +2 -2
- package/.sinapse-ai/constitution.md +67 -1
- package/.sinapse-ai/core/doctor/checks/constitution-consistency.js +1 -0
- package/.sinapse-ai/core/health-check/checks/project/constitution-consistency.js +1 -0
- package/.sinapse-ai/data/entity-registry.yaml +757 -764
- package/.sinapse-ai/data/registry-update-log.jsonl +3 -0
- package/.sinapse-ai/infrastructure/scripts/validate-codex-delegation.js +5 -3
- package/.sinapse-ai/install-manifest.yaml +12 -12
- package/.sinapse-ai/product/templates/ide-rules/claude-rules.md +1 -0
- package/docs/codex-delegation-parity.md +115 -0
- package/docs/codex-parity-program.md +7 -0
- package/package.json +1 -1
|
@@ -1,512 +1,401 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 1,
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
3
|
+
"classifications": [
|
|
4
|
+
"validator-backed",
|
|
5
|
+
"codex-shim",
|
|
6
|
+
"exploratory"
|
|
7
|
+
],
|
|
8
|
+
"handoffSchemaPath": ".codex/handoff-packet.schema.json",
|
|
9
|
+
"handoffTemplatePath": ".codex/handoff-packet.template.json",
|
|
10
|
+
"masterRoutes": {
|
|
11
|
+
"framework-prd": {
|
|
12
|
+
"aliases": ["prd", "project-lead", "requirements"],
|
|
13
|
+
"classification": "validator-backed",
|
|
14
|
+
"target": {
|
|
15
|
+
"type": "command-registry",
|
|
16
|
+
"agentId": "sinapse-pm",
|
|
17
|
+
"commandId": "create-prd"
|
|
18
|
+
},
|
|
19
|
+
"sourceDocs": [
|
|
20
|
+
".codex/agents/sinapse-orqx.md",
|
|
21
|
+
".codex/command-registry.json"
|
|
22
|
+
],
|
|
23
|
+
"handoff": {
|
|
24
|
+
"owner": "sinapse-orqx",
|
|
25
|
+
"nextHandoff": "sinapse-pm",
|
|
26
|
+
"requiredInputs": ["mission", "context-summary", "success-criteria", "constraints"]
|
|
27
|
+
}
|
|
21
28
|
},
|
|
22
|
-
"
|
|
23
|
-
"aliases": ["
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
29
|
+
"framework-story-validation": {
|
|
30
|
+
"aliases": ["story-validation", "product-owner", "po"],
|
|
31
|
+
"classification": "validator-backed",
|
|
32
|
+
"target": {
|
|
33
|
+
"type": "command-registry",
|
|
34
|
+
"agentId": "sinapse-po",
|
|
35
|
+
"commandId": "validate-story"
|
|
36
|
+
},
|
|
37
|
+
"sourceDocs": [
|
|
38
|
+
".codex/agents/sinapse-orqx.md",
|
|
39
|
+
".codex/command-registry.json"
|
|
40
|
+
],
|
|
41
|
+
"handoff": {
|
|
42
|
+
"owner": "sinapse-orqx",
|
|
43
|
+
"nextHandoff": "sinapse-po",
|
|
44
|
+
"requiredInputs": ["mission", "context-summary", "story-id", "quality-bar"]
|
|
45
|
+
}
|
|
28
46
|
},
|
|
29
|
-
"
|
|
30
|
-
"aliases": ["
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
47
|
+
"framework-story-draft": {
|
|
48
|
+
"aliases": ["story-draft", "sprint-lead", "sm"],
|
|
49
|
+
"classification": "validator-backed",
|
|
50
|
+
"target": {
|
|
51
|
+
"type": "command-registry",
|
|
52
|
+
"agentId": "sinapse-sm",
|
|
53
|
+
"commandId": "draft"
|
|
54
|
+
},
|
|
55
|
+
"sourceDocs": [
|
|
56
|
+
".codex/agents/sinapse-orqx.md",
|
|
57
|
+
".codex/command-registry.json"
|
|
58
|
+
],
|
|
59
|
+
"handoff": {
|
|
60
|
+
"owner": "sinapse-orqx",
|
|
61
|
+
"nextHandoff": "sinapse-sm",
|
|
62
|
+
"requiredInputs": ["mission", "context-summary", "acceptance-criteria", "dependencies"]
|
|
63
|
+
}
|
|
35
64
|
},
|
|
36
|
-
"
|
|
37
|
-
"aliases": ["
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
65
|
+
"framework-development": {
|
|
66
|
+
"aliases": ["development", "developer", "dev"],
|
|
67
|
+
"classification": "validator-backed",
|
|
68
|
+
"target": {
|
|
69
|
+
"type": "command-registry",
|
|
70
|
+
"agentId": "sinapse-dev",
|
|
71
|
+
"commandId": "develop"
|
|
72
|
+
},
|
|
73
|
+
"sourceDocs": [
|
|
74
|
+
".codex/agents/sinapse-orqx.md",
|
|
75
|
+
".codex/command-registry.json"
|
|
76
|
+
],
|
|
77
|
+
"handoff": {
|
|
78
|
+
"owner": "sinapse-orqx",
|
|
79
|
+
"nextHandoff": "sinapse-dev",
|
|
80
|
+
"requiredInputs": ["mission", "context-summary", "story-id", "definition-of-done"]
|
|
81
|
+
}
|
|
42
82
|
},
|
|
43
|
-
"
|
|
44
|
-
"aliases": ["
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
83
|
+
"framework-qa-gate": {
|
|
84
|
+
"aliases": ["qa", "quality-gate", "review"],
|
|
85
|
+
"classification": "validator-backed",
|
|
86
|
+
"target": {
|
|
87
|
+
"type": "command-registry",
|
|
88
|
+
"agentId": "sinapse-qa",
|
|
89
|
+
"commandId": "gate"
|
|
90
|
+
},
|
|
91
|
+
"sourceDocs": [
|
|
92
|
+
".codex/agents/sinapse-orqx.md",
|
|
93
|
+
".codex/command-registry.json"
|
|
94
|
+
],
|
|
95
|
+
"handoff": {
|
|
96
|
+
"owner": "sinapse-orqx",
|
|
97
|
+
"nextHandoff": "sinapse-qa",
|
|
98
|
+
"requiredInputs": ["mission", "context-summary", "story-id", "evidence"]
|
|
99
|
+
}
|
|
49
100
|
},
|
|
50
|
-
"
|
|
51
|
-
"aliases": ["
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
101
|
+
"framework-architecture": {
|
|
102
|
+
"aliases": ["architecture", "architect"],
|
|
103
|
+
"classification": "codex-shim",
|
|
104
|
+
"target": {
|
|
105
|
+
"type": "agent-doc",
|
|
106
|
+
"agentId": "architect",
|
|
107
|
+
"docPath": ".codex/agents/architect.md"
|
|
108
|
+
},
|
|
109
|
+
"sourceDocs": [
|
|
110
|
+
".codex/agents/sinapse-orqx.md",
|
|
111
|
+
"AGENTS.md"
|
|
112
|
+
],
|
|
113
|
+
"handoff": {
|
|
114
|
+
"owner": "sinapse-orqx",
|
|
115
|
+
"nextHandoff": "architect",
|
|
116
|
+
"requiredInputs": ["mission", "context-summary", "system-boundary", "tradeoffs"]
|
|
117
|
+
}
|
|
56
118
|
},
|
|
57
|
-
"
|
|
58
|
-
"aliases": ["
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
|
|
119
|
+
"multi-squad-initiative": {
|
|
120
|
+
"aliases": ["launch", "cross-domain", "multi-domain", "initiative"],
|
|
121
|
+
"classification": "validator-backed",
|
|
122
|
+
"target": {
|
|
123
|
+
"type": "command-registry",
|
|
124
|
+
"agentId": "sinapse-orqx",
|
|
125
|
+
"commandId": "plan"
|
|
126
|
+
},
|
|
127
|
+
"sourceDocs": [
|
|
128
|
+
".codex/agents/sinapse-orqx.md",
|
|
129
|
+
".codex/command-registry.json",
|
|
130
|
+
"docs/codex-total-parity-orchestration-plan.md"
|
|
131
|
+
],
|
|
132
|
+
"handoff": {
|
|
133
|
+
"owner": "sinapse-orqx",
|
|
134
|
+
"nextHandoff": "sinapse-orqx",
|
|
135
|
+
"requiredInputs": ["mission", "context-summary", "lead-squad", "handoff-artifacts"]
|
|
136
|
+
}
|
|
63
137
|
},
|
|
64
|
-
"
|
|
65
|
-
"aliases": ["
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
138
|
+
"strategic-council": {
|
|
139
|
+
"aliases": ["council", "strategy", "decision"],
|
|
140
|
+
"classification": "validator-backed",
|
|
141
|
+
"target": {
|
|
142
|
+
"type": "command-registry",
|
|
143
|
+
"agentId": "sinapse-orqx",
|
|
144
|
+
"commandId": "council"
|
|
145
|
+
},
|
|
146
|
+
"sourceDocs": [
|
|
147
|
+
".codex/agents/sinapse-orqx.md",
|
|
148
|
+
".codex/command-registry.json"
|
|
149
|
+
],
|
|
150
|
+
"handoff": {
|
|
151
|
+
"owner": "sinapse-orqx",
|
|
152
|
+
"nextHandoff": "council-orqx",
|
|
153
|
+
"requiredInputs": ["mission", "context-summary", "decision-frame", "tradeoffs"]
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"orqxRoutes": {
|
|
158
|
+
"brand": {
|
|
159
|
+
"aliases": ["brand", "branding", "identity"],
|
|
160
|
+
"classification": "codex-shim",
|
|
161
|
+
"target": {
|
|
162
|
+
"type": "agent-doc",
|
|
163
|
+
"agentId": "brand-orqx",
|
|
164
|
+
"docPath": ".codex/agents/brand-orqx.md"
|
|
165
|
+
}
|
|
70
166
|
},
|
|
71
|
-
"
|
|
72
|
-
"aliases": ["
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
167
|
+
"commercial": {
|
|
168
|
+
"aliases": ["commercial", "sales", "crm"],
|
|
169
|
+
"classification": "codex-shim",
|
|
170
|
+
"target": {
|
|
171
|
+
"type": "agent-doc",
|
|
172
|
+
"agentId": "commercial-orqx",
|
|
173
|
+
"docPath": ".codex/agents/commercial-orqx.md"
|
|
174
|
+
}
|
|
77
175
|
},
|
|
78
|
-
"
|
|
79
|
-
"aliases": ["
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
|
|
176
|
+
"content": {
|
|
177
|
+
"aliases": ["content", "editorial", "social"],
|
|
178
|
+
"classification": "codex-shim",
|
|
179
|
+
"target": {
|
|
180
|
+
"type": "agent-doc",
|
|
181
|
+
"agentId": "content-orqx",
|
|
182
|
+
"docPath": ".codex/agents/content-orqx.md"
|
|
183
|
+
}
|
|
84
184
|
},
|
|
85
|
-
"
|
|
86
|
-
"aliases": ["
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
185
|
+
"copy": {
|
|
186
|
+
"aliases": ["copy", "copywriting", "headline"],
|
|
187
|
+
"classification": "codex-shim",
|
|
188
|
+
"target": {
|
|
189
|
+
"type": "agent-doc",
|
|
190
|
+
"agentId": "copy-orqx",
|
|
191
|
+
"docPath": ".codex/agents/copy-orqx.md"
|
|
192
|
+
}
|
|
91
193
|
},
|
|
92
|
-
"
|
|
93
|
-
"aliases": ["
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
|
|
97
|
-
|
|
194
|
+
"animations": {
|
|
195
|
+
"aliases": ["animations", "motion", "threejs"],
|
|
196
|
+
"classification": "codex-shim",
|
|
197
|
+
"target": {
|
|
198
|
+
"type": "agent-doc",
|
|
199
|
+
"agentId": "animations-orqx",
|
|
200
|
+
"docPath": ".codex/agents/animations-orqx.md"
|
|
201
|
+
}
|
|
98
202
|
},
|
|
99
|
-
"
|
|
100
|
-
"aliases": ["
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
203
|
+
"design": {
|
|
204
|
+
"aliases": ["design", "ux", "ui"],
|
|
205
|
+
"classification": "codex-shim",
|
|
206
|
+
"target": {
|
|
207
|
+
"type": "agent-doc",
|
|
208
|
+
"agentId": "design-orqx",
|
|
209
|
+
"docPath": ".codex/agents/design-orqx.md"
|
|
210
|
+
}
|
|
105
211
|
},
|
|
106
|
-
"
|
|
107
|
-
"aliases": ["
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
212
|
+
"finance": {
|
|
213
|
+
"aliases": ["finance", "pricing", "budget"],
|
|
214
|
+
"classification": "codex-shim",
|
|
215
|
+
"target": {
|
|
216
|
+
"type": "agent-doc",
|
|
217
|
+
"agentId": "finance-orqx",
|
|
218
|
+
"docPath": ".codex/agents/finance-orqx.md"
|
|
219
|
+
}
|
|
112
220
|
},
|
|
113
|
-
"
|
|
114
|
-
"aliases": ["
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
|
|
118
|
-
|
|
221
|
+
"growth": {
|
|
222
|
+
"aliases": ["growth", "seo", "analytics"],
|
|
223
|
+
"classification": "codex-shim",
|
|
224
|
+
"target": {
|
|
225
|
+
"type": "agent-doc",
|
|
226
|
+
"agentId": "growth-orqx",
|
|
227
|
+
"docPath": ".codex/agents/growth-orqx.md"
|
|
228
|
+
}
|
|
119
229
|
},
|
|
120
|
-
"
|
|
121
|
-
"aliases": ["
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
|
|
125
|
-
|
|
230
|
+
"paidmedia": {
|
|
231
|
+
"aliases": ["paidmedia", "paid-media", "ads"],
|
|
232
|
+
"classification": "codex-shim",
|
|
233
|
+
"target": {
|
|
234
|
+
"type": "agent-doc",
|
|
235
|
+
"agentId": "paidmedia-orqx",
|
|
236
|
+
"docPath": ".codex/agents/paidmedia-orqx.md"
|
|
237
|
+
}
|
|
126
238
|
},
|
|
127
|
-
"
|
|
128
|
-
"aliases": ["
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
|
|
132
|
-
|
|
239
|
+
"product": {
|
|
240
|
+
"aliases": ["product", "discovery", "roadmap"],
|
|
241
|
+
"classification": "codex-shim",
|
|
242
|
+
"target": {
|
|
243
|
+
"type": "agent-doc",
|
|
244
|
+
"agentId": "product-orqx",
|
|
245
|
+
"docPath": ".codex/agents/product-orqx.md"
|
|
246
|
+
}
|
|
133
247
|
},
|
|
134
|
-
"
|
|
135
|
-
"aliases": ["
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
|
|
139
|
-
|
|
248
|
+
"research": {
|
|
249
|
+
"aliases": ["research", "market", "competitive"],
|
|
250
|
+
"classification": "codex-shim",
|
|
251
|
+
"target": {
|
|
252
|
+
"type": "agent-doc",
|
|
253
|
+
"agentId": "research-orqx",
|
|
254
|
+
"docPath": ".codex/agents/research-orqx.md"
|
|
255
|
+
}
|
|
140
256
|
},
|
|
141
|
-
"
|
|
142
|
-
"aliases": ["
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
"frameworkAgents": {
|
|
150
|
-
"sinapse-pm": {
|
|
151
|
-
"aliases": ["sinapse-pm", "pm", "project-lead"],
|
|
152
|
-
"sourceOfTruth": ".codex/agents/pm.md",
|
|
153
|
-
"registryAgentId": "sinapse-pm"
|
|
257
|
+
"claude": {
|
|
258
|
+
"aliases": ["claude", "mcp", "hooks"],
|
|
259
|
+
"classification": "codex-shim",
|
|
260
|
+
"target": {
|
|
261
|
+
"type": "agent-doc",
|
|
262
|
+
"agentId": "claude-orqx",
|
|
263
|
+
"docPath": ".codex/agents/claude-orqx.md"
|
|
264
|
+
}
|
|
154
265
|
},
|
|
155
|
-
"
|
|
156
|
-
"aliases": ["
|
|
157
|
-
"
|
|
158
|
-
"
|
|
266
|
+
"council": {
|
|
267
|
+
"aliases": ["council", "advisory", "mental-models"],
|
|
268
|
+
"classification": "codex-shim",
|
|
269
|
+
"target": {
|
|
270
|
+
"type": "agent-doc",
|
|
271
|
+
"agentId": "council-orqx",
|
|
272
|
+
"docPath": ".codex/agents/council-orqx.md"
|
|
273
|
+
}
|
|
159
274
|
},
|
|
160
|
-
"
|
|
161
|
-
"aliases": ["
|
|
162
|
-
"
|
|
163
|
-
"
|
|
275
|
+
"storytelling": {
|
|
276
|
+
"aliases": ["storytelling", "pitch", "narrative"],
|
|
277
|
+
"classification": "codex-shim",
|
|
278
|
+
"target": {
|
|
279
|
+
"type": "agent-doc",
|
|
280
|
+
"agentId": "storytelling-orqx",
|
|
281
|
+
"docPath": ".codex/agents/storytelling-orqx.md"
|
|
282
|
+
}
|
|
164
283
|
},
|
|
165
|
-
"
|
|
166
|
-
"aliases": ["
|
|
167
|
-
"
|
|
168
|
-
"
|
|
284
|
+
"cyber": {
|
|
285
|
+
"aliases": ["cyber", "security", "pentest"],
|
|
286
|
+
"classification": "codex-shim",
|
|
287
|
+
"target": {
|
|
288
|
+
"type": "agent-doc",
|
|
289
|
+
"agentId": "cyber-orqx",
|
|
290
|
+
"docPath": ".codex/agents/cyber-orqx.md"
|
|
291
|
+
}
|
|
169
292
|
},
|
|
170
|
-
"
|
|
171
|
-
"aliases": ["
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
"aliases": ["brand-strategy"],
|
|
179
|
-
"owner": "sinapse-orqx",
|
|
180
|
-
"requestType": "single-domain",
|
|
181
|
-
"classification": "validator-backed",
|
|
182
|
-
"mission": "Route brand strategy and discovery requests from the master orchestrator into the brand squad.",
|
|
183
|
-
"summary": "SINAPSE master orchestration into brand discovery.",
|
|
184
|
-
"inputs": ["request-brief", "brand-context", "constraints"],
|
|
185
|
-
"outputs": ["brand-discovery-brief"],
|
|
186
|
-
"validators": ["npm run validate:codex-delegation", "npm run validate:codex-sync"],
|
|
187
|
-
"sharedSurfaceRisk": "low",
|
|
188
|
-
"resources": [
|
|
189
|
-
".codex/agents/brand-orqx.md",
|
|
190
|
-
".codex/agents/brand-strategist.md",
|
|
191
|
-
"squads/squad-brand/tasks/conduct-brand-discovery.md"
|
|
192
|
-
],
|
|
193
|
-
"delegationChain": [
|
|
194
|
-
{
|
|
195
|
-
"from": "sinapse-orqx",
|
|
196
|
-
"fromType": "orqx",
|
|
197
|
-
"to": "brand-orqx",
|
|
198
|
-
"toType": "orqx",
|
|
199
|
-
"path": ".codex/agents/brand-orqx.md",
|
|
200
|
-
"handoff": "delegate-to-squad",
|
|
201
|
-
"reason": "Brand requests should enter the dedicated brand squad orchestrator."
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
"from": "brand-orqx",
|
|
205
|
-
"fromType": "orqx",
|
|
206
|
-
"to": "brand-strategist",
|
|
207
|
-
"toType": "specialist",
|
|
208
|
-
"path": ".codex/agents/brand-strategist.md",
|
|
209
|
-
"task": "squads/squad-brand/tasks/conduct-brand-discovery.md",
|
|
210
|
-
"handoff": "execute-squad-task",
|
|
211
|
-
"reason": "Brand strategist owns the discovery workflow and outputs the handoff brief."
|
|
212
|
-
}
|
|
213
|
-
]
|
|
293
|
+
"cloning": {
|
|
294
|
+
"aliases": ["cloning", "dna", "mind-synthesis"],
|
|
295
|
+
"classification": "codex-shim",
|
|
296
|
+
"target": {
|
|
297
|
+
"type": "agent-doc",
|
|
298
|
+
"agentId": "cloning-orqx",
|
|
299
|
+
"docPath": ".codex/agents/cloning-orqx.md"
|
|
300
|
+
}
|
|
214
301
|
},
|
|
215
|
-
"
|
|
216
|
-
"aliases": ["
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
"outputs": ["editorial-alignment-brief"],
|
|
224
|
-
"validators": ["npm run validate:codex-delegation", "npm run validate:codex-sync"],
|
|
225
|
-
"sharedSurfaceRisk": "low",
|
|
226
|
-
"resources": [
|
|
227
|
-
".codex/agents/content-orqx.md",
|
|
228
|
-
".codex/agents/editorial-strategist.md",
|
|
229
|
-
"squads/squad-content/tasks/align-content-to-funnel.md"
|
|
230
|
-
],
|
|
231
|
-
"delegationChain": [
|
|
232
|
-
{
|
|
233
|
-
"from": "sinapse-orqx",
|
|
234
|
-
"fromType": "orqx",
|
|
235
|
-
"to": "content-orqx",
|
|
236
|
-
"toType": "orqx",
|
|
237
|
-
"path": ".codex/agents/content-orqx.md",
|
|
238
|
-
"handoff": "delegate-to-squad",
|
|
239
|
-
"reason": "Content planning should be routed into the content squad orchestrator."
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
"from": "content-orqx",
|
|
243
|
-
"fromType": "orqx",
|
|
244
|
-
"to": "editorial-strategist",
|
|
245
|
-
"toType": "specialist",
|
|
246
|
-
"path": ".codex/agents/editorial-strategist.md",
|
|
247
|
-
"task": "squads/squad-content/tasks/align-content-to-funnel.md",
|
|
248
|
-
"handoff": "execute-squad-task",
|
|
249
|
-
"reason": "Editorial strategist owns the funnel-alignment task in the content squad."
|
|
250
|
-
}
|
|
251
|
-
]
|
|
302
|
+
"courses": {
|
|
303
|
+
"aliases": ["courses", "education", "curriculum"],
|
|
304
|
+
"classification": "codex-shim",
|
|
305
|
+
"target": {
|
|
306
|
+
"type": "agent-doc",
|
|
307
|
+
"agentId": "courses-orqx",
|
|
308
|
+
"docPath": ".codex/agents/courses-orqx.md"
|
|
309
|
+
}
|
|
252
310
|
},
|
|
253
|
-
"
|
|
254
|
-
"aliases": ["
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
"
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
"reason": "SEO requests should be routed into the growth squad orchestrator."
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"from": "growth-orqx",
|
|
281
|
-
"fromType": "orqx",
|
|
282
|
-
"to": "ga-seo-strategist",
|
|
283
|
-
"toType": "specialist",
|
|
284
|
-
"path": ".codex/agents/ga-seo-strategist.md",
|
|
285
|
-
"task": "squads/squad-growth/tasks/audit-sitemap-robots.md",
|
|
286
|
-
"handoff": "execute-squad-task",
|
|
287
|
-
"reason": "GA SEO strategist owns the sitemap and robots audit task."
|
|
288
|
-
}
|
|
289
|
-
]
|
|
290
|
-
},
|
|
291
|
-
"claude-project-setup": {
|
|
292
|
-
"aliases": ["claude-setup", "codex-claude-setup"],
|
|
293
|
-
"owner": "sinapse-orqx",
|
|
294
|
-
"requestType": "single-domain",
|
|
295
|
-
"classification": "validator-backed",
|
|
296
|
-
"mission": "Route Codex/Claude project setup work into the Claude integration squad.",
|
|
297
|
-
"summary": "Master orchestration into Claude setup parity work.",
|
|
298
|
-
"inputs": ["repo-context", "integration-goal", "constraints"],
|
|
299
|
-
"outputs": ["claude-setup-brief"],
|
|
300
|
-
"validators": ["npm run validate:codex-delegation", "npm run validate:codex-sync"],
|
|
301
|
-
"sharedSurfaceRisk": "medium",
|
|
302
|
-
"resources": [
|
|
303
|
-
".codex/agents/claude-orqx.md",
|
|
304
|
-
".codex/agents/project-integrator.md",
|
|
305
|
-
"squads/squad-claude/tasks/claude-code-project-setup.md"
|
|
306
|
-
],
|
|
307
|
-
"delegationChain": [
|
|
308
|
-
{
|
|
309
|
-
"from": "sinapse-orqx",
|
|
310
|
-
"fromType": "orqx",
|
|
311
|
-
"to": "claude-orqx",
|
|
312
|
-
"toType": "orqx",
|
|
313
|
-
"path": ".codex/agents/claude-orqx.md",
|
|
314
|
-
"handoff": "delegate-to-squad",
|
|
315
|
-
"reason": "Runtime and setup parity work belongs to the Claude mastery squad."
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"from": "claude-orqx",
|
|
319
|
-
"fromType": "orqx",
|
|
320
|
-
"to": "project-integrator",
|
|
321
|
-
"toType": "specialist",
|
|
322
|
-
"path": ".codex/agents/project-integrator.md",
|
|
323
|
-
"task": "squads/squad-claude/tasks/claude-code-project-setup.md",
|
|
324
|
-
"handoff": "execute-squad-task",
|
|
325
|
-
"reason": "Project integrator owns the setup implementation workflow for Codex/Claude integration."
|
|
326
|
-
}
|
|
327
|
-
]
|
|
328
|
-
},
|
|
329
|
-
"research-competitor-positioning": {
|
|
330
|
-
"aliases": ["competitor-positioning", "research-positioning"],
|
|
331
|
-
"owner": "sinapse-orqx",
|
|
332
|
-
"requestType": "single-domain",
|
|
333
|
-
"classification": "exploratory",
|
|
334
|
-
"mission": "Route competitor positioning analysis into the research squad with an explicit shared-surface review stop.",
|
|
335
|
-
"summary": "Exploratory route that touches shared Claude artifacts for advanced analysis.",
|
|
336
|
-
"inputs": ["research-brief", "market-context", "competitor-list"],
|
|
337
|
-
"outputs": ["competitive-positioning-brief"],
|
|
338
|
-
"validators": ["npm run validate:codex-delegation", "npm run validate:codex-sync"],
|
|
339
|
-
"sharedSurfaceRisk": "high",
|
|
340
|
-
"resources": [
|
|
341
|
-
".codex/agents/research-orqx.md",
|
|
342
|
-
".codex/agents/competitive-intelligence.md",
|
|
343
|
-
".claude/agents/data-chief.md",
|
|
344
|
-
"squads/squad-research/tasks/analyze-competitor-positioning.md"
|
|
345
|
-
],
|
|
346
|
-
"notes": [
|
|
347
|
-
"Exploratory means the path is documented and validated, but any change to shared Claude surfaces still requires explicit review."
|
|
348
|
-
],
|
|
349
|
-
"delegationChain": [
|
|
350
|
-
{
|
|
351
|
-
"from": "sinapse-orqx",
|
|
352
|
-
"fromType": "orqx",
|
|
353
|
-
"to": "research-orqx",
|
|
354
|
-
"toType": "orqx",
|
|
355
|
-
"path": ".codex/agents/research-orqx.md",
|
|
356
|
-
"handoff": "delegate-to-squad",
|
|
357
|
-
"reason": "Research requests should enter the research squad orchestrator."
|
|
358
|
-
},
|
|
359
|
-
{
|
|
360
|
-
"from": "research-orqx",
|
|
361
|
-
"fromType": "orqx",
|
|
362
|
-
"to": "competitive-intelligence",
|
|
363
|
-
"toType": "specialist",
|
|
364
|
-
"path": ".codex/agents/competitive-intelligence.md",
|
|
365
|
-
"task": "squads/squad-research/tasks/analyze-competitor-positioning.md",
|
|
366
|
-
"handoff": "execute-squad-task",
|
|
367
|
-
"reason": "Competitive intelligence owns the positioning analysis workflow."
|
|
311
|
+
"swarm": {
|
|
312
|
+
"aliases": ["swarm", "multi-agent", "topology"],
|
|
313
|
+
"classification": "codex-shim",
|
|
314
|
+
"target": {
|
|
315
|
+
"type": "agent-doc",
|
|
316
|
+
"agentId": "swarm-orqx",
|
|
317
|
+
"docPath": ".codex/agents/swarm-orqx.md"
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
"specialistRoutes": {
|
|
322
|
+
"brand-orqx": {
|
|
323
|
+
"aliases": ["brand-orqx", "brand"],
|
|
324
|
+
"sourceDoc": ".codex/agents/brand-orqx.md",
|
|
325
|
+
"routes": {
|
|
326
|
+
"discovery": {
|
|
327
|
+
"aliases": ["brand-discovery"],
|
|
328
|
+
"classification": "exploratory",
|
|
329
|
+
"target": {
|
|
330
|
+
"type": "specialist-doc",
|
|
331
|
+
"agentId": "brand-strategist",
|
|
332
|
+
"docPath": ".codex/agents/brand-strategist.md",
|
|
333
|
+
"taskPath": "squads/squad-brand/tasks/conduct-brand-discovery.md"
|
|
334
|
+
}
|
|
368
335
|
},
|
|
369
|
-
{
|
|
370
|
-
"
|
|
371
|
-
"
|
|
372
|
-
"
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
336
|
+
"audit": {
|
|
337
|
+
"aliases": ["brand-audit"],
|
|
338
|
+
"classification": "exploratory",
|
|
339
|
+
"target": {
|
|
340
|
+
"type": "specialist-doc",
|
|
341
|
+
"agentId": "brand-auditor",
|
|
342
|
+
"docPath": ".codex/agents/brand-auditor.md",
|
|
343
|
+
"taskPath": "squads/squad-brand/tasks/audit-brand-full.md"
|
|
344
|
+
}
|
|
377
345
|
}
|
|
378
|
-
|
|
346
|
+
}
|
|
379
347
|
},
|
|
380
|
-
"
|
|
381
|
-
"aliases": ["
|
|
382
|
-
"
|
|
383
|
-
"
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
],
|
|
394
|
-
"resources": [
|
|
395
|
-
".codex/agents/product-orqx.md",
|
|
396
|
-
".codex/agents/copy-orqx.md",
|
|
397
|
-
".codex/agents/paidmedia-orqx.md",
|
|
398
|
-
"docs/codex-total-parity-orchestration-plan.md"
|
|
399
|
-
],
|
|
400
|
-
"delegationChain": [
|
|
401
|
-
{
|
|
402
|
-
"from": "sinapse-orqx",
|
|
403
|
-
"fromType": "orqx",
|
|
404
|
-
"to": "product-orqx",
|
|
405
|
-
"toType": "orqx",
|
|
406
|
-
"path": ".codex/agents/product-orqx.md",
|
|
407
|
-
"handoff": "scope-launch-workstream",
|
|
408
|
-
"reason": "Product orchestrates sequencing, scope, and initiative framing."
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
"from": "sinapse-orqx",
|
|
412
|
-
"fromType": "orqx",
|
|
413
|
-
"to": "copy-orqx",
|
|
414
|
-
"toType": "orqx",
|
|
415
|
-
"path": ".codex/agents/copy-orqx.md",
|
|
416
|
-
"handoff": "shape-launch-messaging",
|
|
417
|
-
"reason": "Copy orchestrates campaign messaging and conversion assets."
|
|
348
|
+
"claude-orqx": {
|
|
349
|
+
"aliases": ["claude-orqx", "claude"],
|
|
350
|
+
"sourceDoc": ".codex/agents/claude-orqx.md",
|
|
351
|
+
"routes": {
|
|
352
|
+
"hooks": {
|
|
353
|
+
"aliases": ["claude-hooks"],
|
|
354
|
+
"classification": "exploratory",
|
|
355
|
+
"target": {
|
|
356
|
+
"type": "specialist-doc",
|
|
357
|
+
"agentId": "hooks-architect",
|
|
358
|
+
"docPath": ".codex/agents/hooks-architect.md",
|
|
359
|
+
"taskPath": "squads/squad-claude/tasks/claude-code-hooks-setup.md"
|
|
360
|
+
}
|
|
418
361
|
},
|
|
419
|
-
{
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
362
|
+
"mcp": {
|
|
363
|
+
"aliases": ["claude-mcp"],
|
|
364
|
+
"classification": "exploratory",
|
|
365
|
+
"target": {
|
|
366
|
+
"type": "specialist-doc",
|
|
367
|
+
"agentId": "mcp-integrator",
|
|
368
|
+
"docPath": ".codex/agents/mcp-integrator.md",
|
|
369
|
+
"taskPath": "squads/squad-claude/tasks/mcp-integration-plan.md"
|
|
370
|
+
}
|
|
427
371
|
}
|
|
428
|
-
|
|
372
|
+
}
|
|
429
373
|
},
|
|
430
|
-
"
|
|
431
|
-
"aliases": ["
|
|
432
|
-
"
|
|
433
|
-
"
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
],
|
|
444
|
-
"sharedSurfaceRisk": "low",
|
|
445
|
-
"resources": [
|
|
446
|
-
".codex/command-registry.json",
|
|
447
|
-
".sinapse-ai/development/tasks/create-doc.md",
|
|
448
|
-
".sinapse-ai/development/tasks/validate-next-story.md",
|
|
449
|
-
".sinapse-ai/development/tasks/create-next-story.md",
|
|
450
|
-
".sinapse-ai/development/tasks/dev-develop-story.md",
|
|
451
|
-
".sinapse-ai/development/tasks/qa-gate.md"
|
|
452
|
-
],
|
|
453
|
-
"delegationChain": [
|
|
454
|
-
{
|
|
455
|
-
"from": "sinapse-orqx",
|
|
456
|
-
"fromType": "orqx",
|
|
457
|
-
"to": "sinapse-pm",
|
|
458
|
-
"toType": "framework-agent",
|
|
459
|
-
"path": ".codex/agents/pm.md",
|
|
460
|
-
"resolver": "command-registry",
|
|
461
|
-
"command": "create-prd",
|
|
462
|
-
"handoff": "define-scope",
|
|
463
|
-
"reason": "PM defines the delivery brief and product scope."
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"from": "sinapse-pm",
|
|
467
|
-
"fromType": "framework-agent",
|
|
468
|
-
"to": "sinapse-po",
|
|
469
|
-
"toType": "framework-agent",
|
|
470
|
-
"path": ".codex/agents/po.md",
|
|
471
|
-
"resolver": "command-registry",
|
|
472
|
-
"command": "validate-story",
|
|
473
|
-
"handoff": "validate-backlog-readiness",
|
|
474
|
-
"reason": "PO validates readiness and acceptance quality before drafting."
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
"from": "sinapse-po",
|
|
478
|
-
"fromType": "framework-agent",
|
|
479
|
-
"to": "sinapse-sm",
|
|
480
|
-
"toType": "framework-agent",
|
|
481
|
-
"path": ".codex/agents/sm.md",
|
|
482
|
-
"resolver": "command-registry",
|
|
483
|
-
"command": "draft",
|
|
484
|
-
"handoff": "draft-implementation-story",
|
|
485
|
-
"reason": "SM drafts the executable story from validated requirements."
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"from": "sinapse-sm",
|
|
489
|
-
"fromType": "framework-agent",
|
|
490
|
-
"to": "sinapse-dev",
|
|
491
|
-
"toType": "framework-agent",
|
|
492
|
-
"path": ".codex/agents/dev.md",
|
|
493
|
-
"resolver": "command-registry",
|
|
494
|
-
"command": "develop",
|
|
495
|
-
"handoff": "implement-story",
|
|
496
|
-
"reason": "Developer executes the implementation against the drafted story."
|
|
374
|
+
"swarm-orqx": {
|
|
375
|
+
"aliases": ["swarm-orqx", "swarm"],
|
|
376
|
+
"sourceDoc": ".codex/agents/swarm-orqx.md",
|
|
377
|
+
"routes": {
|
|
378
|
+
"audit-hooks": {
|
|
379
|
+
"aliases": ["swarm-audit-hooks"],
|
|
380
|
+
"classification": "exploratory",
|
|
381
|
+
"target": {
|
|
382
|
+
"type": "specialist-doc",
|
|
383
|
+
"agentId": "hooks-architect",
|
|
384
|
+
"docPath": ".codex/agents/hooks-architect.md",
|
|
385
|
+
"taskPath": "squads/claude-code-mastery/tasks/audit-integration.md"
|
|
386
|
+
}
|
|
497
387
|
},
|
|
498
|
-
{
|
|
499
|
-
"
|
|
500
|
-
"
|
|
501
|
-
"
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
"reason": "QA closes the chain with the gate decision."
|
|
388
|
+
"configure": {
|
|
389
|
+
"aliases": ["swarm-configure"],
|
|
390
|
+
"classification": "exploratory",
|
|
391
|
+
"target": {
|
|
392
|
+
"type": "specialist-doc",
|
|
393
|
+
"agentId": "config-engineer",
|
|
394
|
+
"docPath": ".codex/agents/config-engineer.md",
|
|
395
|
+
"taskPath": "squads/claude-code-mastery/tasks/configure-claude-code.md"
|
|
396
|
+
}
|
|
508
397
|
}
|
|
509
|
-
|
|
398
|
+
}
|
|
510
399
|
}
|
|
511
400
|
}
|
|
512
401
|
}
|