sinapse-ai 7.7.7 → 7.7.8
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/docs/codex-parity-program.md +0 -7
- package/package.json +1 -1
|
@@ -7,9 +7,7 @@ const Ajv2020 = require('ajv/dist/2020');
|
|
|
7
7
|
const {
|
|
8
8
|
buildHandoffPacket,
|
|
9
9
|
loadDelegationMatrix,
|
|
10
|
-
} = require(
|
|
11
|
-
path.join(__dirname, '..', '..', '..', '.codex', 'scripts', 'resolve-codex-delegation-parity'),
|
|
12
|
-
);
|
|
10
|
+
} = require(path.join(__dirname, '..', '..', '..', '.codex', 'scripts', 'resolve-codex-delegation'));
|
|
13
11
|
const {
|
|
14
12
|
loadRegistry: loadCommandRegistryFile,
|
|
15
13
|
} = require('./validate-codex-command-registry');
|
|
@@ -66,8 +64,8 @@ function validateCodexDelegation(options = {}) {
|
|
|
66
64
|
};
|
|
67
65
|
}
|
|
68
66
|
|
|
69
|
-
const matrixPath = path.join(projectRoot, '.codex', 'delegation-
|
|
70
|
-
const schemaPath = path.join(projectRoot, matrix.handoffSchema || '.codex/handoff-packet.
|
|
67
|
+
const matrixPath = path.join(projectRoot, '.codex', 'delegation-matrix.json');
|
|
68
|
+
const schemaPath = path.join(projectRoot, matrix.handoffSchema || '.codex/handoff-packet.schema.json');
|
|
71
69
|
if (!fs.existsSync(schemaPath)) {
|
|
72
70
|
errors.push(`Missing handoff schema ${path.relative(projectRoot, schemaPath)}`);
|
|
73
71
|
}
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 7.7.
|
|
11
|
-
generated_at: "2026-04-
|
|
10
|
+
version: 7.7.8
|
|
11
|
+
generated_at: "2026-04-03T03:10:41.295Z"
|
|
12
12
|
generator: scripts/generate-install-manifest.js
|
|
13
13
|
file_count: 1118
|
|
14
14
|
files:
|
|
@@ -1237,9 +1237,9 @@ files:
|
|
|
1237
1237
|
type: data
|
|
1238
1238
|
size: 9586
|
|
1239
1239
|
- path: data/entity-registry.yaml
|
|
1240
|
-
hash: sha256:
|
|
1240
|
+
hash: sha256:bf5a84ef1311e7422604aa07f272c11d2240d654bd39cd1128b3239b6696a40e
|
|
1241
1241
|
type: data
|
|
1242
|
-
size:
|
|
1242
|
+
size: 515880
|
|
1243
1243
|
- path: data/learned-patterns.yaml
|
|
1244
1244
|
hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
|
|
1245
1245
|
type: data
|
|
@@ -3433,9 +3433,9 @@ files:
|
|
|
3433
3433
|
type: script
|
|
3434
3434
|
size: 7266
|
|
3435
3435
|
- path: infrastructure/scripts/validate-codex-delegation.js
|
|
3436
|
-
hash: sha256:
|
|
3436
|
+
hash: sha256:a71224ad31b3a28bcc26953f75bbd6387686b3b906404c833f52b8dfff306384
|
|
3437
3437
|
type: script
|
|
3438
|
-
size:
|
|
3438
|
+
size: 9532
|
|
3439
3439
|
- path: infrastructure/scripts/validate-codex-integration.js
|
|
3440
3440
|
hash: sha256:c553cc493ddbfecf41b865f8a1075df56b6500c3b2b315bae8b7e7bcec4db85a
|
|
3441
3441
|
type: script
|
|
@@ -261,13 +261,6 @@ Focus:
|
|
|
261
261
|
|
|
262
262
|
Execution detail is now formalized in `docs/codex-total-parity-orchestration-plan.md`.
|
|
263
263
|
|
|
264
|
-
Current state after Story `7.7.8`:
|
|
265
|
-
|
|
266
|
-
- a Codex-only delegation parity contract now lives in `.codex/delegation-parity.json`
|
|
267
|
-
- a parity handoff schema now validates delegation packets in `.codex/handoff-packet.parity.schema.json`
|
|
268
|
-
- Codex has a delegation parity resolver CLI for route lookup and packet inspection
|
|
269
|
-
- `validate:codex-delegation` now enforces the approved Codex routing contract
|
|
270
|
-
|
|
271
264
|
Current recommended implementation story:
|
|
272
265
|
|
|
273
266
|
- Story `7.7.8` - Codex delegation and handoff parity
|