sneakoscope 2.0.13 → 2.0.14

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 (61) hide show
  1. package/README.md +2 -2
  2. package/crates/sks-core/Cargo.lock +1 -1
  3. package/crates/sks-core/Cargo.toml +1 -1
  4. package/crates/sks-core/src/main.rs +1 -1
  5. package/dist/.sks-build-stamp.json +4 -4
  6. package/dist/bin/sks.js +1 -1
  7. package/dist/core/agents/agent-orchestrator.js +11 -4
  8. package/dist/core/agents/agent-output-validator.js +1 -1
  9. package/dist/core/codex-control/codex-fake-sdk-adapter.js +3 -3
  10. package/dist/core/codex-control/gpt-final-review-schema.js +61 -14
  11. package/dist/core/commands/naruto-command.js +1 -0
  12. package/dist/core/commands/research-command.js +71 -17
  13. package/dist/core/fsx.js +1 -1
  14. package/dist/core/naruto/naruto-real-worker-child.js +11 -3
  15. package/dist/core/naruto/naruto-real-worker-runtime.js +4 -0
  16. package/dist/core/pipeline/final-gpt-patch-stage.js +20 -3
  17. package/dist/core/research/implementation-blueprint-densifier.js +124 -0
  18. package/dist/core/research/research-claim-builder.js +114 -0
  19. package/dist/core/research/research-cycle-runner.js +115 -11
  20. package/dist/core/research/research-final-reviewer.js +155 -1
  21. package/dist/core/research/research-source-ledger-merge.js +186 -0
  22. package/dist/core/research/research-source-shards.js +176 -0
  23. package/dist/core/research/research-stage-runner.js +510 -11
  24. package/dist/core/research/research-work-graph.js +114 -23
  25. package/dist/core/research.js +12 -0
  26. package/dist/core/version.js +1 -1
  27. package/dist/scripts/codex-sdk-research-pipeline-check.js +40 -8
  28. package/dist/scripts/release-dag-full-coverage-check.js +14 -1
  29. package/dist/scripts/release-parallel-speed-budget-check.js +7 -2
  30. package/dist/scripts/research-blueprint-densifier-check.js +21 -0
  31. package/dist/scripts/research-claim-builder-check.js +19 -0
  32. package/dist/scripts/research-complete-package-fixture-check.js +23 -0
  33. package/dist/scripts/research-final-reviewer-blackbox.js +22 -0
  34. package/dist/scripts/research-parallel-source-shards-check.js +22 -0
  35. package/dist/scripts/research-quality-gate-check.js +28 -3
  36. package/dist/scripts/research-real-cycle-no-legacy-final-md-check.js +14 -0
  37. package/dist/scripts/research-short-report-rejection-check.js +46 -0
  38. package/dist/scripts/research-source-ledger-merge-check.js +26 -0
  39. package/dist/scripts/research-stage-cycle-runtime-blackbox.js +24 -0
  40. package/package.json +16 -1
  41. package/schemas/codex/agent-result.schema.json +1 -1
  42. package/schemas/research/research-source-shard.schema.json +46 -0
  43. package/dist/build-manifest.json +0 -1184
  44. package/dist/scripts/release-readiness-report.js +0 -1146
  45. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/permission-request.command.input.schema.json +0 -61
  46. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/permission-request.command.output.schema.json +0 -103
  47. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/post-compact.command.input.schema.json +0 -52
  48. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/post-compact.command.output.schema.json +0 -24
  49. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/post-tool-use.command.input.schema.json +0 -67
  50. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/post-tool-use.command.output.schema.json +0 -84
  51. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/pre-compact.command.input.schema.json +0 -52
  52. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/pre-compact.command.output.schema.json +0 -24
  53. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/pre-tool-use.command.input.schema.json +0 -65
  54. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/pre-tool-use.command.output.schema.json +0 -105
  55. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/session-start.command.input.schema.json +0 -59
  56. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/session-start.command.output.schema.json +0 -63
  57. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/snapshot-metadata.json +0 -31
  58. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/stop.command.input.schema.json +0 -63
  59. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/stop.command.output.schema.json +0 -45
  60. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/user-prompt-submit.command.input.schema.json +0 -59
  61. package/dist/vendor/openai-codex/rust-v0.131.0/hooks/user-prompt-submit.command.output.schema.json +0 -81
@@ -1,63 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "additionalProperties": false,
4
- "definitions": {
5
- "HookEventNameWire": {
6
- "enum": [
7
- "PreToolUse",
8
- "PermissionRequest",
9
- "PostToolUse",
10
- "PreCompact",
11
- "PostCompact",
12
- "SessionStart",
13
- "UserPromptSubmit",
14
- "Stop"
15
- ],
16
- "type": "string"
17
- },
18
- "SessionStartHookSpecificOutputWire": {
19
- "additionalProperties": false,
20
- "properties": {
21
- "additionalContext": {
22
- "default": null,
23
- "type": "string"
24
- },
25
- "hookEventName": {
26
- "$ref": "#/definitions/HookEventNameWire"
27
- }
28
- },
29
- "required": [
30
- "hookEventName"
31
- ],
32
- "type": "object"
33
- }
34
- },
35
- "properties": {
36
- "continue": {
37
- "default": true,
38
- "type": "boolean"
39
- },
40
- "hookSpecificOutput": {
41
- "allOf": [
42
- {
43
- "$ref": "#/definitions/SessionStartHookSpecificOutputWire"
44
- }
45
- ],
46
- "default": null
47
- },
48
- "stopReason": {
49
- "default": null,
50
- "type": "string"
51
- },
52
- "suppressOutput": {
53
- "default": false,
54
- "type": "boolean"
55
- },
56
- "systemMessage": {
57
- "default": null,
58
- "type": "string"
59
- }
60
- },
61
- "title": "session-start.command.output",
62
- "type": "object"
63
- }
@@ -1,31 +0,0 @@
1
- {
2
- "schema": "sks.codex-hook-schema-snapshot.v1",
3
- "upstream": "openai/codex",
4
- "tag": "rust-v0.131.0",
5
- "commit": "02d0ab56b9201fbb6f8e0e9be914c19053058eb1",
6
- "codex_version": "0.131.0",
7
- "captured_at": "2026-05-19T16:04:03.464Z",
8
- "source_files": [
9
- "codex-rs/hooks/src/schema.rs",
10
- "codex-rs/hooks/src/engine/output_parser.rs",
11
- "codex-rs/hooks/schema/generated/*.schema.json"
12
- ],
13
- "source_urls": [
14
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/pre-tool-use.command.input.schema.json",
15
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/pre-tool-use.command.output.schema.json",
16
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/permission-request.command.input.schema.json",
17
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/permission-request.command.output.schema.json",
18
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/post-tool-use.command.input.schema.json",
19
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/post-tool-use.command.output.schema.json",
20
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/pre-compact.command.input.schema.json",
21
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/pre-compact.command.output.schema.json",
22
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/post-compact.command.input.schema.json",
23
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/post-compact.command.output.schema.json",
24
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/session-start.command.input.schema.json",
25
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/session-start.command.output.schema.json",
26
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/user-prompt-submit.command.input.schema.json",
27
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/user-prompt-submit.command.output.schema.json",
28
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/stop.command.input.schema.json",
29
- "https://raw.githubusercontent.com/openai/codex/rust-v0.131.0/codex-rs/hooks/schema/generated/stop.command.output.schema.json"
30
- ]
31
- }
@@ -1,63 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "additionalProperties": false,
4
- "definitions": {
5
- "NullableString": {
6
- "type": [
7
- "string",
8
- "null"
9
- ]
10
- }
11
- },
12
- "properties": {
13
- "cwd": {
14
- "type": "string"
15
- },
16
- "hook_event_name": {
17
- "const": "Stop",
18
- "type": "string"
19
- },
20
- "last_assistant_message": {
21
- "$ref": "#/definitions/NullableString"
22
- },
23
- "model": {
24
- "type": "string"
25
- },
26
- "permission_mode": {
27
- "enum": [
28
- "default",
29
- "acceptEdits",
30
- "plan",
31
- "dontAsk",
32
- "bypassPermissions"
33
- ],
34
- "type": "string"
35
- },
36
- "session_id": {
37
- "type": "string"
38
- },
39
- "stop_hook_active": {
40
- "type": "boolean"
41
- },
42
- "transcript_path": {
43
- "$ref": "#/definitions/NullableString"
44
- },
45
- "turn_id": {
46
- "description": "Codex extension: expose the active turn id to internal turn-scoped hooks.",
47
- "type": "string"
48
- }
49
- },
50
- "required": [
51
- "cwd",
52
- "hook_event_name",
53
- "last_assistant_message",
54
- "model",
55
- "permission_mode",
56
- "session_id",
57
- "stop_hook_active",
58
- "transcript_path",
59
- "turn_id"
60
- ],
61
- "title": "stop.command.input",
62
- "type": "object"
63
- }
@@ -1,45 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "additionalProperties": false,
4
- "definitions": {
5
- "BlockDecisionWire": {
6
- "enum": [
7
- "block"
8
- ],
9
- "type": "string"
10
- }
11
- },
12
- "properties": {
13
- "continue": {
14
- "default": true,
15
- "type": "boolean"
16
- },
17
- "decision": {
18
- "allOf": [
19
- {
20
- "$ref": "#/definitions/BlockDecisionWire"
21
- }
22
- ],
23
- "default": null
24
- },
25
- "reason": {
26
- "default": null,
27
- "description": "Claude requires `reason` when `decision` is `block`; we enforce that semantic rule during output parsing rather than in the JSON schema.",
28
- "type": "string"
29
- },
30
- "stopReason": {
31
- "default": null,
32
- "type": "string"
33
- },
34
- "suppressOutput": {
35
- "default": false,
36
- "type": "boolean"
37
- },
38
- "systemMessage": {
39
- "default": null,
40
- "type": "string"
41
- }
42
- },
43
- "title": "stop.command.output",
44
- "type": "object"
45
- }
@@ -1,59 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "additionalProperties": false,
4
- "definitions": {
5
- "NullableString": {
6
- "type": [
7
- "string",
8
- "null"
9
- ]
10
- }
11
- },
12
- "properties": {
13
- "cwd": {
14
- "type": "string"
15
- },
16
- "hook_event_name": {
17
- "const": "UserPromptSubmit",
18
- "type": "string"
19
- },
20
- "model": {
21
- "type": "string"
22
- },
23
- "permission_mode": {
24
- "enum": [
25
- "default",
26
- "acceptEdits",
27
- "plan",
28
- "dontAsk",
29
- "bypassPermissions"
30
- ],
31
- "type": "string"
32
- },
33
- "prompt": {
34
- "type": "string"
35
- },
36
- "session_id": {
37
- "type": "string"
38
- },
39
- "transcript_path": {
40
- "$ref": "#/definitions/NullableString"
41
- },
42
- "turn_id": {
43
- "description": "Codex extension: expose the active turn id to internal turn-scoped hooks.",
44
- "type": "string"
45
- }
46
- },
47
- "required": [
48
- "cwd",
49
- "hook_event_name",
50
- "model",
51
- "permission_mode",
52
- "prompt",
53
- "session_id",
54
- "transcript_path",
55
- "turn_id"
56
- ],
57
- "title": "user-prompt-submit.command.input",
58
- "type": "object"
59
- }
@@ -1,81 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "additionalProperties": false,
4
- "definitions": {
5
- "BlockDecisionWire": {
6
- "enum": [
7
- "block"
8
- ],
9
- "type": "string"
10
- },
11
- "HookEventNameWire": {
12
- "enum": [
13
- "PreToolUse",
14
- "PermissionRequest",
15
- "PostToolUse",
16
- "PreCompact",
17
- "PostCompact",
18
- "SessionStart",
19
- "UserPromptSubmit",
20
- "Stop"
21
- ],
22
- "type": "string"
23
- },
24
- "UserPromptSubmitHookSpecificOutputWire": {
25
- "additionalProperties": false,
26
- "properties": {
27
- "additionalContext": {
28
- "default": null,
29
- "type": "string"
30
- },
31
- "hookEventName": {
32
- "$ref": "#/definitions/HookEventNameWire"
33
- }
34
- },
35
- "required": [
36
- "hookEventName"
37
- ],
38
- "type": "object"
39
- }
40
- },
41
- "properties": {
42
- "continue": {
43
- "default": true,
44
- "type": "boolean"
45
- },
46
- "decision": {
47
- "allOf": [
48
- {
49
- "$ref": "#/definitions/BlockDecisionWire"
50
- }
51
- ],
52
- "default": null
53
- },
54
- "hookSpecificOutput": {
55
- "allOf": [
56
- {
57
- "$ref": "#/definitions/UserPromptSubmitHookSpecificOutputWire"
58
- }
59
- ],
60
- "default": null
61
- },
62
- "reason": {
63
- "default": null,
64
- "type": "string"
65
- },
66
- "stopReason": {
67
- "default": null,
68
- "type": "string"
69
- },
70
- "suppressOutput": {
71
- "default": false,
72
- "type": "boolean"
73
- },
74
- "systemMessage": {
75
- "default": null,
76
- "type": "string"
77
- }
78
- },
79
- "title": "user-prompt-submit.command.output",
80
- "type": "object"
81
- }