sinapse-ai 7.7.7 → 7.7.9
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/.codex/tasks/route-sinapse-request.md +2 -2
- package/.sinapse-ai/data/entity-registry.yaml +763 -753
- package/.sinapse-ai/infrastructure/scripts/validate-codex-delegation.js +3 -5
- package/.sinapse-ai/install-manifest.yaml +6 -6
- package/bin/cli.js +31 -10
- package/docs/codex-parity-program.md +0 -7
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ Diagnose a request and choose the smallest correct Codex routing path.
|
|
|
11
11
|
## Steps
|
|
12
12
|
|
|
13
13
|
1. Read `.codex/catalog.json`.
|
|
14
|
-
2. Read `.codex/delegation-
|
|
14
|
+
2. Read `.codex/delegation-matrix.json`.
|
|
15
15
|
3. Classify the request as one of:
|
|
16
16
|
- simple + single-domain
|
|
17
17
|
- complex + single-domain
|
|
@@ -22,7 +22,7 @@ Diagnose a request and choose the smallest correct Codex routing path.
|
|
|
22
22
|
- complex + single-domain -> relevant `*-orqx`
|
|
23
23
|
- complex + multi-domain -> `sinapse-orqx` orchestration plan
|
|
24
24
|
- framework/development workflow -> `sinapse-pm`, `sinapse-po`, `sinapse-sm`, `sinapse-dev`, or `sinapse-qa`
|
|
25
|
-
5. When the request matches an approved handoff route, resolve it through `.codex/delegation-
|
|
25
|
+
5. When the request matches an approved handoff route, resolve it through `.codex/delegation-matrix.json`.
|
|
26
26
|
6. If the request depends on a starred command, resolve it through `.codex/command-registry.json`.
|
|
27
27
|
7. Only recommend direct specialist routing from `.codex/agents` when the delegation matrix marks it as `exploratory`.
|
|
28
28
|
8. Return the recommended route with rationale, classification, and next action.
|