trace-to-skill 0.1.82 → 0.1.83
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 +6 -3
- package/dist/src/benchmark.js +6 -0
- package/dist/src/benchmark.js.map +1 -1
- package/dist/src/demo.js +8 -0
- package/dist/src/demo.js.map +1 -1
- package/dist/src/rules.js +19 -0
- package/dist/src/rules.js.map +1 -1
- package/dist/src/types.d.ts +1 -1
- package/docs/BENCHMARK.md +1 -0
- package/docs/CODEX_ISSUE_MAP.md +3 -0
- package/docs/DEMO.md +2 -0
- package/docs/DISCOVERY.md +3 -1
- package/docs/FAILURE_TAXONOMY.md +8 -0
- package/docs/OPENAI_OSS_BRIEF.md +6 -6
- package/docs/SCORECARD.md +2 -1
- package/docs/USE_CASES.md +44 -29
- package/fixtures/codex-subagent-prompt-leakage.md +24 -0
- package/llms.txt +3 -1
- package/package.json +5 -1
- package/schemas/analysis-result.schema.json +1 -0
package/README.md
CHANGED
|
@@ -72,6 +72,7 @@ Use it when you need to:
|
|
|
72
72
|
- **Catch sensitive file access:** run `trace-to-skill analyze ./runs` when an agent trace includes `.env`, private keys, `.npmrc`, cloud credentials, local databases, or production secret manifests.
|
|
73
73
|
- **Report remote compact failures:** run `trace-to-skill codex-report ./runs` when `/compact` or auto-compaction fails with `responses/compact` timeouts, stream disconnects, provider timeout workarounds, or long-thread recovery loss.
|
|
74
74
|
- **Diagnose context fork bloat:** run `trace-to-skill codex-report ./runs` when a conversation fork duplicates parent transcript blocks, inflates `input_tokens`, changes `prompt_cache_key`, or loses prompt-cache lineage before new work happens.
|
|
75
|
+
- **Catch subagent prompt leakage:** run `trace-to-skill codex-report ./runs` when `spawn_agent` with `fork_turns: "none"` records the delegated task as an assistant/commentary envelope or a parallel child sees a sibling prompt.
|
|
75
76
|
- **Diagnose Windows helper path failures:** run `trace-to-skill codex-report ./runs` when Codex Desktop resolves `rg.exe`, `node_repl.exe`, Browser, Chrome, or Computer Use helpers through blocked WindowsApps/MSIX paths, missing LocalCache bins, or broken `CodexSandboxUsers` ACLs.
|
|
76
77
|
- **Triage stuck Codex sessions:** run `trace-to-skill analyze ./runs` to catch context compaction failures such as compact stream disconnects, `context_length_exceeded`, and schema mismatches.
|
|
77
78
|
- **Catch latest-turn drift:** run `trace-to-skill analyze ./runs` when Codex answers an older prompt, repeats a previous response, forgets recent edits after compaction, or leaks raw tool payload text into chat.
|
|
@@ -213,6 +214,7 @@ Trace analysis detects run-level failures:
|
|
|
213
214
|
| Prompt injection | Untrusted issue, PR, log, or web text asks the agent to ignore policy or leak secrets |
|
|
214
215
|
| Context compaction | Codex compact task fails, disconnects, loops, or hits `context_length_exceeded` |
|
|
215
216
|
| Codex context fork bloat | Conversation forks duplicate parent turns, inflate token counts, break prompt-cache lineage, or mix `fork_context` history into child context |
|
|
217
|
+
| Codex subagent prompt leakage | MultiAgentV2 children receive assistant/commentary prompt envelopes or sibling prompts despite `fork_turns: "none"` |
|
|
216
218
|
| Codex latest-turn drift | Long or compacted conversations answer stale prompts, redo old tasks, forget recent edits, or expose raw tool payloads |
|
|
217
219
|
| Codex latency regression | Model/runtime routing, thinking stalls, search/read, or compaction latency makes simple tasks take minutes or hours |
|
|
218
220
|
| Codex thinking hang | A turn, tool call, or Responses stream appears accepted but no assistant follow-up arrives while the UI stays on Thinking/Working |
|
|
@@ -269,6 +271,7 @@ Try a packaged public demo before collecting private traces:
|
|
|
269
271
|
trace-to-skill demo
|
|
270
272
|
trace-to-skill demo --list
|
|
271
273
|
trace-to-skill demo context-fork-bloat
|
|
274
|
+
trace-to-skill demo subagent-prompt-leakage
|
|
272
275
|
trace-to-skill demo latency-regression
|
|
273
276
|
trace-to-skill demo thinking-hang
|
|
274
277
|
trace-to-skill demo clipboard-attachment
|
|
@@ -512,7 +515,7 @@ jobs:
|
|
|
512
515
|
issues: write
|
|
513
516
|
steps:
|
|
514
517
|
- uses: actions/checkout@v5
|
|
515
|
-
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.
|
|
518
|
+
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.83
|
|
516
519
|
with:
|
|
517
520
|
mode: all
|
|
518
521
|
doctor-threshold: "85"
|
|
@@ -561,7 +564,7 @@ Composite action usage:
|
|
|
561
564
|
|
|
562
565
|
```yaml
|
|
563
566
|
- id: trace-to-skill
|
|
564
|
-
uses: grnbtqdbyx-create/trace-to-skill@v0.1.
|
|
567
|
+
uses: grnbtqdbyx-create/trace-to-skill@v0.1.83
|
|
565
568
|
with:
|
|
566
569
|
mode: all
|
|
567
570
|
doctor-threshold: "85"
|
|
@@ -603,7 +606,7 @@ Action outputs:
|
|
|
603
606
|
|
|
604
607
|
By default, generated reports are also appended to the GitHub Actions Job Summary. Set `job-summary: "false"` to disable that UI output.
|
|
605
608
|
|
|
606
|
-
Tagged Action releases build and run the CLI from `$GITHUB_ACTION_PATH`, so a workflow pinned to a release tag such as `@v0.1.
|
|
609
|
+
Tagged Action releases build and run the CLI from `$GITHUB_ACTION_PATH`, so a workflow pinned to a release tag such as `@v0.1.83` executes that release's checked-out source instead of pulling the default branch at runtime.
|
|
607
610
|
|
|
608
611
|
## Codex Skill
|
|
609
612
|
|
package/dist/src/benchmark.js
CHANGED
|
@@ -41,6 +41,12 @@ const BENCHMARK_CASES = [
|
|
|
41
41
|
fixture: "fixtures/codex-context-fork-bloat.md",
|
|
42
42
|
expectedKinds: ["codex_context_fork_bloat", "weak_evidence"]
|
|
43
43
|
},
|
|
44
|
+
{
|
|
45
|
+
id: "codex-subagent-prompt-leakage",
|
|
46
|
+
title: "Codex subagent prompt leakage or boundary failure",
|
|
47
|
+
fixture: "fixtures/codex-subagent-prompt-leakage.md",
|
|
48
|
+
expectedKinds: ["codex_subagent_prompt_leakage", "weak_evidence"]
|
|
49
|
+
},
|
|
44
50
|
{
|
|
45
51
|
id: "codex-latest-turn-drift",
|
|
46
52
|
title: "Codex latest-turn drift after compaction",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"benchmark.js","sourceRoot":"","sources":["../../src/benchmark.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"benchmark.js","sourceRoot":"","sources":["../../src/benchmark.ts"],"names":[],"mappings":"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"}
|
package/dist/src/demo.js
CHANGED
|
@@ -15,6 +15,12 @@ const DEMO_SCENARIOS = [
|
|
|
15
15
|
fixture: "fixtures/codex-context-fork-bloat.md",
|
|
16
16
|
description: "Conversation forks duplicate parent transcript blocks, inflate token usage, or break prompt-cache lineage before new work happens."
|
|
17
17
|
},
|
|
18
|
+
{
|
|
19
|
+
id: "subagent-prompt-leakage",
|
|
20
|
+
title: "Codex subagent prompt leakage",
|
|
21
|
+
fixture: "fixtures/codex-subagent-prompt-leakage.md",
|
|
22
|
+
description: "MultiAgentV2 child agents receive assistant/commentary prompt envelopes or sibling prompts despite `fork_turns: \"none\"`."
|
|
23
|
+
},
|
|
18
24
|
{
|
|
19
25
|
id: "windows-helper-path",
|
|
20
26
|
title: "Codex Windows helper path failure",
|
|
@@ -167,6 +173,7 @@ export function renderDemoMarkdown(result) {
|
|
|
167
173
|
"trace-to-skill demo --list",
|
|
168
174
|
"trace-to-skill demo remote-compact",
|
|
169
175
|
"trace-to-skill demo context-fork-bloat",
|
|
176
|
+
"trace-to-skill demo subagent-prompt-leakage",
|
|
170
177
|
"trace-to-skill demo windows-helper-path",
|
|
171
178
|
"trace-to-skill demo patch-overwrite",
|
|
172
179
|
"trace-to-skill demo thinking-hang",
|
|
@@ -198,6 +205,7 @@ export function renderDemoScenarioList(scenarios = listDemoScenarios()) {
|
|
|
198
205
|
"trace-to-skill demo",
|
|
199
206
|
"trace-to-skill demo remote-compact",
|
|
200
207
|
"trace-to-skill demo context-fork-bloat",
|
|
208
|
+
"trace-to-skill demo subagent-prompt-leakage",
|
|
201
209
|
"trace-to-skill demo windows-helper-path",
|
|
202
210
|
"trace-to-skill demo patch-overwrite",
|
|
203
211
|
"trace-to-skill demo latency-regression",
|
package/dist/src/demo.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"demo.js","sourceRoot":"","sources":["../../src/demo.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"demo.js","sourceRoot":"","sources":["../../src/demo.ts"],"names":[],"mappings":"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"}
|
package/dist/src/rules.js
CHANGED
|
@@ -167,6 +167,25 @@ const RULES = [
|
|
|
167
167
|
suggestedRule: "When reporting Codex context-fork bloat, capture Codex app/CLI/extension version, surface, model, fork source thread id, forked thread id, fork action timestamp, fork boundary marker, input_tokens and cached_input_tokens before and after the fork, prompt_cache_key before and after, cache hit rate, duplicated parent-turn or tool-transcript examples with line ids, whether new files were read before the token jump, compaction state, subagent/fork_context history, minimal reproduction steps, and whether a fresh thread or non-fork continuation avoids the bloat.",
|
|
168
168
|
suggestedSkill: "codex-context-fork-bloat-triage"
|
|
169
169
|
},
|
|
170
|
+
{
|
|
171
|
+
kind: "codex_subagent_prompt_leakage",
|
|
172
|
+
severity: "high",
|
|
173
|
+
title: "Codex subagent prompt leakage or boundary failure",
|
|
174
|
+
why: "Multi-agent Codex workflows rely on child agents receiving the delegated task as isolated user-equivalent input. Assistant/commentary prompt envelopes or sibling prompt leakage make review, QA, and security lanes untrustworthy.",
|
|
175
|
+
patterns: [
|
|
176
|
+
/\bspawn_agent\b.{0,180}\bfork_turns["'` ]*[:=]["'` ]*none\b/i,
|
|
177
|
+
/\bspawn_agent\b.{0,240}\bfork_turns["'` ]*[:=]["'` ]*none\b.{0,240}\b(role=assistant|assistant\/commentary|phase=commentary|commentary JSON envelope|not as a user|not as (?:a )?task)\b/i,
|
|
178
|
+
/\bfork_turns["'` ]*[:=]["'` ]*none\b.{0,240}\b(initial task|message argument|spawn message|delegated prompt)\b.{0,240}\b(assistant|commentary|envelope|not user|not task)\b/i,
|
|
179
|
+
/\b(role=assistant|assistant\/commentary|phase=commentary)\b.{0,240}\b(recipient|trigger_turn|spawn_agent|task_name|BLACKBOX|delegated prompt|child rollout)\b/i,
|
|
180
|
+
/\bparallel (?:child|children|spawns?)\b.{0,240}\b(sibling prompt|prompt envelope|prompt leakage|cross-contaminated|child A|child B|another child)\b/i,
|
|
181
|
+
/\bsibling (?:child )?prompt\b.{0,240}\b(leak|visible|appears?|included|contamination|child rollout|fork_turns)\b/i,
|
|
182
|
+
/\bmulti_tool_use\.parallel\b.{0,240}\b(spawn_agent|parallel child|sibling prompt|prompt envelope|leak|contamination)\b/i,
|
|
183
|
+
/\bwait_agent\b.{0,180}\b(close_agent|completed|completion)\b.{0,220}\b(did not perform|wrong task|generic workspace|AGENTS acknowledgement|ignored assigned task)\b/i,
|
|
184
|
+
/\b(worker|reviewer|subagent)\b.{0,220}\b(saw|received|included)\b.{0,120}\b(sibling prompt|other child|other agent|prompt envelope)\b/i
|
|
185
|
+
],
|
|
186
|
+
suggestedRule: "When reporting Codex subagent prompt leakage, capture Codex Desktop/app/CLI version, MultiAgentV2 state, OS, model, parent thread id, child thread ids, exact spawn_agent arguments, fork_turns value, role/profile, whether multi_tool_use.parallel or same-turn parallel spawning was used, redacted child rollout line order, first user/task message, assistant/commentary envelope lines, sibling prompt excerpts, wait_agent and close_agent results, whether the child executed tools unexpectedly, and sequential single-child versus parallel-child controls.",
|
|
187
|
+
suggestedSkill: "codex-subagent-prompt-boundary-triage"
|
|
188
|
+
},
|
|
170
189
|
{
|
|
171
190
|
kind: "codex_latest_turn_drift",
|
|
172
191
|
severity: "high",
|
package/dist/src/rules.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rules.js","sourceRoot":"","sources":["../../src/rules.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"rules.js","sourceRoot":"","sources":["../../src/rules.ts"],"names":[],"mappings":"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"}
|
package/dist/src/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type Severity = "low" | "medium" | "high" | "critical";
|
|
2
|
-
export type FindingKind = "premature_completion" | "tests_not_run" | "test_failure" | "ignored_instruction" | "hallucinated_file" | "over_editing" | "unsafe_command" | "secret_exposure" | "sensitive_file_access" | "hidden_unicode" | "prompt_injection" | "codex_remote_compact" | "context_compaction" | "codex_context_fork_bloat" | "codex_latest_turn_drift" | "codex_latency_regression" | "codex_thinking_hang" | "codex_clipboard_attachment" | "codex_deeplink_launch" | "codex_connector_auth_cache" | "codex_approval_friction" | "sandbox_permission" | "codex_windows_helper_path" | "codex_connectivity" | "codex_remote_control" | "codex_terminal_output_integrity" | "codex_subagent_lifecycle" | "codex_mcp_discovery_mismatch" | "codex_mcp_runtime" | "codex_mcp_streamable_http" | "codex_hooks_runtime" | "codex_plugin_runtime" | "codex_file_tree_ui" | "codex_session_state" | "codex_token_burn" | "codex_resource_leak" | "codex_tool_call_integrity" | "codex_usage_reset_drift" | "quota_mismatch" | "mcp_risk" | "weak_evidence";
|
|
2
|
+
export type FindingKind = "premature_completion" | "tests_not_run" | "test_failure" | "ignored_instruction" | "hallucinated_file" | "over_editing" | "unsafe_command" | "secret_exposure" | "sensitive_file_access" | "hidden_unicode" | "prompt_injection" | "codex_remote_compact" | "context_compaction" | "codex_context_fork_bloat" | "codex_subagent_prompt_leakage" | "codex_latest_turn_drift" | "codex_latency_regression" | "codex_thinking_hang" | "codex_clipboard_attachment" | "codex_deeplink_launch" | "codex_connector_auth_cache" | "codex_approval_friction" | "sandbox_permission" | "codex_windows_helper_path" | "codex_connectivity" | "codex_remote_control" | "codex_terminal_output_integrity" | "codex_subagent_lifecycle" | "codex_mcp_discovery_mismatch" | "codex_mcp_runtime" | "codex_mcp_streamable_http" | "codex_hooks_runtime" | "codex_plugin_runtime" | "codex_file_tree_ui" | "codex_session_state" | "codex_token_burn" | "codex_resource_leak" | "codex_tool_call_integrity" | "codex_usage_reset_drift" | "quota_mismatch" | "mcp_risk" | "weak_evidence";
|
|
3
3
|
export interface TraceInput {
|
|
4
4
|
path: string;
|
|
5
5
|
content: string;
|
package/docs/BENCHMARK.md
CHANGED
|
@@ -12,6 +12,7 @@ This benchmark runs the public fixture pack that ships with the repository and p
|
|
|
12
12
|
| Codex remote compact task failure | `fixtures/codex-remote-compact.md` | 59 | 3 | 0 | `codex_remote_compact`, `context_compaction`, `weak_evidence` | pass |
|
|
13
13
|
| Codex context compaction failure | `fixtures/context-compaction.md` | 59 | 3 | 0 | `codex_remote_compact`, `context_compaction`, `weak_evidence` | pass |
|
|
14
14
|
| Codex conversation fork context bloat | `fixtures/codex-context-fork-bloat.md` | 59 | 3 | 0 | `codex_context_fork_bloat`, `codex_thinking_hang`, `weak_evidence` | pass |
|
|
15
|
+
| Codex subagent prompt leakage or boundary failure | `fixtures/codex-subagent-prompt-leakage.md` | 75 | 2 | 0 | `codex_subagent_prompt_leakage`, `weak_evidence` | pass |
|
|
15
16
|
| Codex latest-turn drift after compaction | `fixtures/codex-latest-turn-drift.md` | 59 | 3 | 0 | `codex_latest_turn_drift`, `premature_completion`, `weak_evidence` | pass |
|
|
16
17
|
| Codex model and runtime latency regression | `fixtures/codex-latency-regression.md` | 75 | 2 | 0 | `codex_latency_regression`, `weak_evidence` | pass |
|
|
17
18
|
| Codex thinking and stream hang | `fixtures/codex-thinking-hang.md` | 75 | 2 | 0 | `codex_thinking_hang`, `weak_evidence` | pass |
|
package/docs/CODEX_ISSUE_MAP.md
CHANGED
|
@@ -37,6 +37,7 @@ npx trace-to-skill lsp-audit . --format json
|
|
|
37
37
|
| Deeplink, OAuth callback, and external launch regressions | `codex://oauth_callback?code=...` fails, `Unable to find Electron app`, `app\oauth_callback?code=...`, notification `type=click&tag=...` becomes an app path, AppX/MSIX protocol evidence, `codex app .` only focuses | `codex_deeplink_launch` | `trace-to-skill codex-report ./runs` or `trace-to-skill demo deeplink-launch` |
|
|
38
38
|
| App connector auth cache and stale link regressions | `401 Reauthentication required`, `refresh token was revoked`, stale `link_*`, `isAccessible: false`, `codex_apps_tools` or `codex_app_directory` cache regeneration keeps broken connector state | `codex_connector_auth_cache` | `trace-to-skill codex-report ./runs` or `trace-to-skill demo connector-auth-cache` |
|
|
39
39
|
| Context fork bloat and prompt-cache lineage loss | conversation fork carries full parent transcript, duplicate context blocks after fork boundary, `input_tokens` and `cached_input_tokens` jump before new files are read, `prompt_cache_key` changes despite inherited content, cache hit rate drops, `fork_context` history leaks into child context | `codex_context_fork_bloat` | `trace-to-skill codex-report ./runs` or `trace-to-skill demo context-fork-bloat` |
|
|
40
|
+
| Subagent prompt leakage and child-task boundary failure | `spawn_agent` with `fork_turns: "none"` records the delegated task as assistant/commentary, child rollout contains `recipient` / `trigger_turn` JSON envelopes, same-turn parallel children see sibling prompts, workers call tools from leaked sibling prompts, `wait_agent` or `close_agent` completes despite wrong task | `codex_subagent_prompt_leakage` | `trace-to-skill codex-report ./runs` or `trace-to-skill demo subagent-prompt-leakage` |
|
|
40
41
|
| MCP discovery and config-scope mismatches | CLI `/mcp` works but VS Code/Desktop has no `mcp__*` tools, project `.codex/config.toml` ignored, `codex mcp get` says `No MCP server named`, WSL opens Windows `config.toml`, `CODEX_HOME` differs | `codex_mcp_discovery_mismatch` | `trace-to-skill codex-report ./runs` or `trace-to-skill demo mcp-discovery-mismatch` |
|
|
41
42
|
| Streamable HTTP MCP parse, handshake, auth, and reconnect failures | Penpot `JsonRpcMessage deserialize`, `Content-Type: text/event-stream` parse failures, n8n initialize then `Transport closed`, DingTalk OAuth/login gating, stale `streamable-http` session ids after server restart, missing header/User-Agent requirements | `codex_mcp_streamable_http` | `trace-to-skill codex-report ./runs` or `trace-to-skill demo mcp-streamable-http` |
|
|
42
43
|
| Hooks runtime and settings failures | Duplicate Hooks entries, `PostToolUse` twice for one tool call, false `codex_hooks` deprecation warnings with `[features].hooks`, hooks stop after rate limits/live edits/auto-restore, Windows `command_execution` skips `PreToolUse`, Hooks page cannot scroll or only shows generic Hook N rows | `codex_hooks_runtime` | `trace-to-skill codex-report ./runs` or `trace-to-skill demo hooks-runtime` |
|
|
@@ -82,6 +83,7 @@ npx trace-to-skill lsp-audit . --format json
|
|
|
82
83
|
- Include exact redacted `codex://` URI shape, connector/plugin, browser, error dialog text, app running state, AppX/MSIX protocol registration evidence such as AppUserModelID and DelegateExecute, HKCU/HKCR `codex` keys, command-line arguments, `Start-Process "codex://test"` repro, and repair/reinstall/re-register attempts for deeplink/OAuth launch regressions.
|
|
83
84
|
- Include connector/plugin name and id, installed plugin root, exact Codex Apps tool name, 401/reauth text, `link_*` id before and after reconnect/cache regeneration, `isAccessible` state, redacted `codex_apps_tools`/`codex_app_directory` metadata, ChatGPT app page state, and external MCP workaround result for connector auth-cache regressions.
|
|
84
85
|
- Include fork source and forked thread ids, fork timestamp, fork boundary marker, `input_tokens` and `cached_input_tokens` before/after fork, `prompt_cache_key` before/after, cache hit rate, duplicated parent-turn/tool-transcript examples, whether new files were read before token growth, compaction state, subagent/`fork_context` history, minimal repro steps, and non-fork control result for context-fork bloat.
|
|
86
|
+
- Include Codex Desktop/app/CLI version, MultiAgentV2 state, OS, model, parent thread id, child thread ids, exact `spawn_agent` arguments, `fork_turns`, role/profile, whether `multi_tool_use.parallel` or same-turn parallel spawning was used, redacted child rollout line order, first user/task message, assistant/commentary envelope lines, sibling prompt excerpts, `wait_agent` and `close_agent` results, unexpected child tool calls, and sequential single-child versus parallel-child controls for subagent prompt leakage.
|
|
85
87
|
- Include effective `CODEX_HOME`, config files considered, redacted MCP sections, trust/profile/default-permissions state, `codex mcp list/get`, CLI-versus-Desktop/VS Code comparison, loaded config path/log lines, WSL/remote/SSH state, and restart/reload/new-conversation results for MCP discovery mismatches.
|
|
86
88
|
- Include Codex version, MCP server name, transport URL without secrets, initialize/tools/list/tools/call results, HTTP status, `Content-Type`, SSE event framing, JSON-RPC message shape, session id before/after restart, auth/OAuth expectations, User-Agent/header requirements, parse/deserialize error, another-client comparison, and reconnect/reinitialize behavior for Streamable HTTP MCP reports.
|
|
87
89
|
- Include app/CLI/extension version, OS, surface, shell/Desktop route, `[features].hooks`, redacted `hooks.json`, hook event type, matcher, handler command/name, expected versus observed fire count, duplicate event ids, deprecation warning text, trust state, live edit/rate-limit/auto-restore timing, Code Mode `exec` versus normal CLI comparison, linked-worktree cwd, Hooks settings UI evidence, and restart/reload/new-session behavior for hooks reports.
|
|
@@ -112,6 +114,7 @@ npx trace-to-skill lsp-audit . --format json
|
|
|
112
114
|
- Deeplink, OAuth callback, and external launch regressions: https://github.com/openai/codex/issues/25203, https://github.com/openai/codex/issues/25231, https://github.com/openai/codex/issues/25368, https://github.com/openai/codex/issues/25333
|
|
113
115
|
- App connector auth cache and stale link regressions: https://github.com/openai/codex/issues/24675, https://github.com/openai/codex/issues/25443
|
|
114
116
|
- Context fork bloat and prompt-cache lineage loss: https://github.com/openai/codex/issues/25467, https://github.com/openai/codex/issues/24704, https://github.com/openai/codex/issues/24150, https://github.com/openai/codex/issues/13491, https://github.com/openai/codex/issues/24281
|
|
117
|
+
- Subagent prompt leakage and child-task boundary failure: https://github.com/openai/codex/issues/25458, https://github.com/openai/codex/issues/24150, https://github.com/openai/codex/issues/20543, https://github.com/openai/codex/issues/20077, https://github.com/openai/codex/issues/17323
|
|
115
118
|
- MCP discovery and config-scope mismatches: https://github.com/openai/codex/issues/6465, https://github.com/openai/codex/issues/13025, https://github.com/openai/codex/issues/13549
|
|
116
119
|
- Streamable HTTP MCP parse, handshake, auth, and reconnect failures: https://github.com/openai/codex/issues/25451, https://github.com/openai/codex/issues/24439, https://github.com/openai/codex/issues/21532, https://github.com/openai/codex/issues/21903, https://github.com/openai/codex/issues/13920, https://github.com/openai/codex/issues/12869, https://github.com/openai/codex/issues/22571, https://github.com/openai/codex/issues/16485
|
|
117
120
|
- Hooks runtime and settings failures: https://github.com/openai/codex/issues/25437, https://github.com/openai/codex/issues/24781, https://github.com/openai/codex/issues/22148, https://github.com/openai/codex/issues/21160, https://github.com/openai/codex/issues/21639, https://github.com/openai/codex/issues/24453, https://github.com/openai/codex/issues/24211, https://github.com/openai/codex/issues/23996, https://github.com/openai/codex/issues/23906, https://github.com/openai/codex/issues/25293
|
package/docs/DEMO.md
CHANGED
|
@@ -83,6 +83,7 @@ Suggested rule:
|
|
|
83
83
|
|
|
84
84
|
- `remote-compact`: Long sessions break when `/compact` or auto-compaction times out, disconnects, or fails at `responses/compact`.
|
|
85
85
|
- `context-fork-bloat`: Conversation forks duplicate parent transcript blocks, inflate token usage, or break prompt-cache lineage before new work happens.
|
|
86
|
+
- `subagent-prompt-leakage`: MultiAgentV2 child agents receive assistant/commentary prompt envelopes or sibling prompts despite `fork_turns: "none"`.
|
|
86
87
|
- `windows-helper-path`: Windows Desktop exposes bundled rg/node/plugin helpers from WindowsApps or missing LocalCache paths that cannot execute.
|
|
87
88
|
- `approval-friction`: Repeated approval prompts, Approve for this session misses, and noisy trusted MCP tool approvals.
|
|
88
89
|
- `latency-regression`: Fast mode feels like Standard, with long thinking, search, read, or compaction stalls.
|
|
@@ -105,6 +106,7 @@ Suggested rule:
|
|
|
105
106
|
trace-to-skill demo --list
|
|
106
107
|
trace-to-skill demo remote-compact
|
|
107
108
|
trace-to-skill demo context-fork-bloat
|
|
109
|
+
trace-to-skill demo subagent-prompt-leakage
|
|
108
110
|
trace-to-skill demo windows-helper-path
|
|
109
111
|
trace-to-skill demo patch-overwrite
|
|
110
112
|
trace-to-skill demo thinking-hang
|
package/docs/DISCOVERY.md
CHANGED
|
@@ -40,6 +40,7 @@ This page is written for maintainers, search engines, package indexes, and AI re
|
|
|
40
40
|
- Codex `codex://oauth_callback`, notification clicks, browser-extension activation, mobile pairing links, or `codex app <path>` external launches fail to route back into Codex.
|
|
41
41
|
- Codex app connectors keep stale `link_*` authorization or discovery metadata after `401 Reauthentication required`, plugin reinstall, app restart, or cache regeneration.
|
|
42
42
|
- Codex conversation forks duplicate parent transcript blocks, inflate token counts, break `prompt_cache_key` lineage, drop cache hit rate, or leak `fork_context` subagent history into child context before new work happens.
|
|
43
|
+
- Codex subagents receive assistant/commentary prompt envelopes or sibling prompts despite `fork_turns: "none"`, making independent review, QA, and security lanes cross-contaminated.
|
|
43
44
|
- Codex usage drains unexpectedly because of rapid drain experiments (`1% in 4 minutes`, `22 credits`, `70% weekly in a day`), background `write_stdin` polling, idle app activity, compaction/replay overhead, retry loops, subagent fan-out, fast-mode drift, or cached-token-heavy turns.
|
|
44
45
|
- Codex weekly or 5-hour reset anchors move unexpectedly, saved usage is lost, or `/status` and the dashboard disagree about reset timing or enforcement.
|
|
45
46
|
- Codex usage evidence is scattered across `/status`, dashboard notes, reset tables, usage-limit messages, token totals, prompt-cache rows, cached input, and overhead clues, making high-signal reports hard to file.
|
|
@@ -77,6 +78,7 @@ npx trace-to-skill demo clipboard-attachment
|
|
|
77
78
|
npx trace-to-skill demo deeplink-launch
|
|
78
79
|
npx trace-to-skill demo connector-auth-cache
|
|
79
80
|
npx trace-to-skill demo context-fork-bloat
|
|
81
|
+
npx trace-to-skill demo subagent-prompt-leakage
|
|
80
82
|
npx trace-to-skill demo mcp-discovery-mismatch
|
|
81
83
|
npx trace-to-skill demo mcp-streamable-http
|
|
82
84
|
npx trace-to-skill demo hooks-runtime
|
|
@@ -147,7 +149,7 @@ npx trace-to-skill suggest ./runs --target agents-md
|
|
|
147
149
|
|
|
148
150
|
## Related Keywords
|
|
149
151
|
|
|
150
|
-
Codex, OpenAI Codex, Codex issue report, OpenAI triage, Codex LSP, Codex language server, lsp-audit, language-server readiness, typescript-language-server, pyright-langserver, gopls, rust-analyzer, sourcekit-lsp, clangd, Codex diagnostics bundle, privacy-preserving support bundle, workspace checkpoint, pre-agent checkpoint, Codex undo, Codex rewind, untracked file restore, sensitive path audit, sensitive-audit, agentignore, .agentignore, agentignore generator, codexignore, .codexignore, codexignore generator, aiexclude, .aiexclude, .gitignore candidates, exclude sensitive files, Codex plugin audit, Computer Use unavailable, Codex Browser plugin unavailable, bundled marketplace mismatch, generated runtime marketplace, plugin manifest missing, CODEX_HOME mismatch, Codex CLI, Codex sandbox, Windows sandbox, Codex config audit, Codex config.toml, Codex global state, .codex-global-state.json, Codex Speed reset, Codex Fast resets to Standard, service_tier fast, default-service-tier priority, has-user-changed-service-tier, Codex Preferences unable to save, configVersionConflict, default_permissions missing profile, Codex Windows helper path, Codex WindowsApps, Codex rg Access Denied, Codex ripgrep, CodexSandboxUsers, LocalCache Local OpenAI Codex bin, node_repl spawn setup refresh, Codex approval friction, Approve for this session, Allow for this session, approval_policy never, MCP approval prompts, default_tools_approval_mode, Playwright MCP approvals, Chrome DevTools MCP approvals, Codex auth, token_exchange_failed, Codex connectivity, stream disconnected, Codex connector auth cache, Codex Apps stale link, codex_apps_tools, codex_app_directory, Reauthentication required, refresh token revoked, isAccessible false, link_ connector, Codex deeplink, Codex OAuth callback, codex://oauth_callback, Unable to find Electron app, Error launching app, type=click&tag, AppUserModelID, DelegateExecute, codex app path, Codex remote compact, responses/compact, /compact timeout, tcp_user_timeout, stream_idle_timeout_ms, Codex context fork, Codex conversation fork, context fork bloat, codex context fork bloat, forked conversation duplicate context, prompt_cache_key lineage, prompt cache lineage, cached_input_tokens fork, cache hit rate fork, fork_context child context, Codex remote control, Codex mobile, Waiting for desktop, Directory Unavailable, stale listener, Codex terminal output, Codex scrollback, Codex terminal history, terminal output integrity, missing_count, missing_examples, tmux_scrollback_repro.sh, line_truncation_repro.md, Windows Terminal scrollback, transcript mode, Codex subagent lifecycle, Codex subagent audit, stale subagents, close_agent, wait_agent, spawn_agent, thread_spawn_edges, agent thread limit reached, agents.max_threads, list_agents, /agents, subagent child threads, fork_context, unbiased review, subagent recent conversations, Codex MCP runtime, MCP unsupported call, mcp__node_repl__js, MCP namespace serverName, MCP Transport closed, StdioServerTransport, Codex Streamable HTTP MCP, streamable-http MCP, HTTP/SSE MCP, MCP SSE, Content-Type text/event-stream, JsonRpcMessage deserialize, MCP handshake initialize, stale MCP session id, MCP reconnect, Penpot MCP, n8n MCP, DingTalk MCP, Codex hooks runtime, hooks.json, codex_hooks, features.hooks, PreToolUse, PostToolUse, SessionStart hook, duplicate hooks, Hook N, Hooks settings, command_execution hooks, Code Mode exec hooks, Codex plugin runtime, Computer Use native pipe path unavailable, SKY_CUA_NATIVE_PIPE_DIRECTORY, Plugin loading failed, plugin/list unknown variant vertical, Codex Browser plugin, Codex Computer Use, Codex Chrome plugin, stale plugin cache, codex plugin add, Codex file tree, Toggle File Tree, missing folder icon, floating file panel stale, file preview fails, workspace navigation, Codex project history disappeared, Codex project threads hidden, Codex session index repair, unindexed rollout thread, codex resume thread id, Codex latest-turn drift, Codex replies to earlier messages, stale prompt response, ignoring latest message, previous prompt, auto compaction forgets edits, raw tool payload leak, write_stdin session_id, Codex latency regression, GPT-5.5 Fast slow, Codex too slow, thinking stalls, Codex thinking hang, Codex stuck thinking, Codex Working stuck, no streamed follow-up, first response_item delayed, responses_http time.idle, model_client.stream_responses_api, turn/start, task_started, Codex Copy as Markdown missing, Codex Pasted text.txt, Codex long pasted prompt attachment, Codex clipboard export, Codex paste as text, Codex generated attachment preview edit, Codex goal ignores attachment, pasted-text-attachments.json, fileAttachments promptRaw composer.getText, pre-first-token latency, search/read latency, runtime scheduling latency, Codex resume, Codex session audit, Codex history audit, Codex history map, Codex session index, session_index.jsonl, Codex session state, rollout JSONL, logs_2.sqlite, codex-tui.log, sandbox.log, thread_goals, state_5.sqlite, goals_1.sqlite, archived chats, Codex token burn, Codex usage evidence, Codex rate-limit evidence, Codex usage drain, prompt cache collapse, prompt_cache_key, cached_input_tokens, cached_tokens, low cache hit rate, websocket reconnect cache drop, Codex usage reset, Codex weekly reset drift, reset_at changed, deterministic reset, rate limit reset, write_stdin polling, cached input tokens, compaction tax, background process polling, Codex process audit, PowerShell polling, powershell.exe Get-CimInstance Win32_Process, Win32_PerfFormattedData_PerfProc_Process, chat_processes.json stale entries, Codex resource leak, Codex performance, high CPU, high GPU, shell-snapshot, Code Helper Renderer, Codex tool-call integrity, apply_patch, apply_patch Add File overwrite, patch guard, guard-patch, Add File symlink, tool_call_id, failed revert changes, patch safety, Codex quota, usage limit, rate limits, sensitive files, Codex privacy, .env, private keys, credential files, AGENTS.md, SKILL.md, Claude Code, Cursor, Copilot coding agent, Gemini CLI, MCP, Model Context Protocol, prompt injection, agent evals, AI code review, open-source maintainers, trace redaction, SARIF, GitHub Actions.
|
|
152
|
+
Codex, OpenAI Codex, Codex issue report, OpenAI triage, Codex LSP, Codex language server, lsp-audit, language-server readiness, typescript-language-server, pyright-langserver, gopls, rust-analyzer, sourcekit-lsp, clangd, Codex diagnostics bundle, privacy-preserving support bundle, workspace checkpoint, pre-agent checkpoint, Codex undo, Codex rewind, untracked file restore, sensitive path audit, sensitive-audit, agentignore, .agentignore, agentignore generator, codexignore, .codexignore, codexignore generator, aiexclude, .aiexclude, .gitignore candidates, exclude sensitive files, Codex plugin audit, Computer Use unavailable, Codex Browser plugin unavailable, bundled marketplace mismatch, generated runtime marketplace, plugin manifest missing, CODEX_HOME mismatch, Codex CLI, Codex sandbox, Windows sandbox, Codex config audit, Codex config.toml, Codex global state, .codex-global-state.json, Codex Speed reset, Codex Fast resets to Standard, service_tier fast, default-service-tier priority, has-user-changed-service-tier, Codex Preferences unable to save, configVersionConflict, default_permissions missing profile, Codex Windows helper path, Codex WindowsApps, Codex rg Access Denied, Codex ripgrep, CodexSandboxUsers, LocalCache Local OpenAI Codex bin, node_repl spawn setup refresh, Codex approval friction, Approve for this session, Allow for this session, approval_policy never, MCP approval prompts, default_tools_approval_mode, Playwright MCP approvals, Chrome DevTools MCP approvals, Codex auth, token_exchange_failed, Codex connectivity, stream disconnected, Codex connector auth cache, Codex Apps stale link, codex_apps_tools, codex_app_directory, Reauthentication required, refresh token revoked, isAccessible false, link_ connector, Codex deeplink, Codex OAuth callback, codex://oauth_callback, Unable to find Electron app, Error launching app, type=click&tag, AppUserModelID, DelegateExecute, codex app path, Codex remote compact, responses/compact, /compact timeout, tcp_user_timeout, stream_idle_timeout_ms, Codex context fork, Codex conversation fork, context fork bloat, codex context fork bloat, forked conversation duplicate context, prompt_cache_key lineage, prompt cache lineage, cached_input_tokens fork, cache hit rate fork, fork_context child context, Codex subagent prompt leakage, Codex subagent prompt leak, subagent prompt boundary, MultiAgentV2, spawn_agent fork_turns none, assistant commentary prompt envelope, sibling prompt leakage, parallel child prompt contamination, wait_agent wrong task, close_agent wrong task, Codex remote control, Codex mobile, Waiting for desktop, Directory Unavailable, stale listener, Codex terminal output, Codex scrollback, Codex terminal history, terminal output integrity, missing_count, missing_examples, tmux_scrollback_repro.sh, line_truncation_repro.md, Windows Terminal scrollback, transcript mode, Codex subagent lifecycle, Codex subagent audit, stale subagents, close_agent, wait_agent, spawn_agent, thread_spawn_edges, agent thread limit reached, agents.max_threads, list_agents, /agents, subagent child threads, fork_context, unbiased review, subagent recent conversations, Codex MCP runtime, MCP unsupported call, mcp__node_repl__js, MCP namespace serverName, MCP Transport closed, StdioServerTransport, Codex Streamable HTTP MCP, streamable-http MCP, HTTP/SSE MCP, MCP SSE, Content-Type text/event-stream, JsonRpcMessage deserialize, MCP handshake initialize, stale MCP session id, MCP reconnect, Penpot MCP, n8n MCP, DingTalk MCP, Codex hooks runtime, hooks.json, codex_hooks, features.hooks, PreToolUse, PostToolUse, SessionStart hook, duplicate hooks, Hook N, Hooks settings, command_execution hooks, Code Mode exec hooks, Codex plugin runtime, Computer Use native pipe path unavailable, SKY_CUA_NATIVE_PIPE_DIRECTORY, Plugin loading failed, plugin/list unknown variant vertical, Codex Browser plugin, Codex Computer Use, Codex Chrome plugin, stale plugin cache, codex plugin add, Codex file tree, Toggle File Tree, missing folder icon, floating file panel stale, file preview fails, workspace navigation, Codex project history disappeared, Codex project threads hidden, Codex session index repair, unindexed rollout thread, codex resume thread id, Codex latest-turn drift, Codex replies to earlier messages, stale prompt response, ignoring latest message, previous prompt, auto compaction forgets edits, raw tool payload leak, write_stdin session_id, Codex latency regression, GPT-5.5 Fast slow, Codex too slow, thinking stalls, Codex thinking hang, Codex stuck thinking, Codex Working stuck, no streamed follow-up, first response_item delayed, responses_http time.idle, model_client.stream_responses_api, turn/start, task_started, Codex Copy as Markdown missing, Codex Pasted text.txt, Codex long pasted prompt attachment, Codex clipboard export, Codex paste as text, Codex generated attachment preview edit, Codex goal ignores attachment, pasted-text-attachments.json, fileAttachments promptRaw composer.getText, pre-first-token latency, search/read latency, runtime scheduling latency, Codex resume, Codex session audit, Codex history audit, Codex history map, Codex session index, session_index.jsonl, Codex session state, rollout JSONL, logs_2.sqlite, codex-tui.log, sandbox.log, thread_goals, state_5.sqlite, goals_1.sqlite, archived chats, Codex token burn, Codex usage evidence, Codex rate-limit evidence, Codex usage drain, prompt cache collapse, prompt_cache_key, cached_input_tokens, cached_tokens, low cache hit rate, websocket reconnect cache drop, Codex usage reset, Codex weekly reset drift, reset_at changed, deterministic reset, rate limit reset, write_stdin polling, cached input tokens, compaction tax, background process polling, Codex process audit, PowerShell polling, powershell.exe Get-CimInstance Win32_Process, Win32_PerfFormattedData_PerfProc_Process, chat_processes.json stale entries, Codex resource leak, Codex performance, high CPU, high GPU, shell-snapshot, Code Helper Renderer, Codex tool-call integrity, apply_patch, apply_patch Add File overwrite, patch guard, guard-patch, Add File symlink, tool_call_id, failed revert changes, patch safety, Codex quota, usage limit, rate limits, sensitive files, Codex privacy, .env, private keys, credential files, AGENTS.md, SKILL.md, Claude Code, Cursor, Copilot coding agent, Gemini CLI, MCP, Model Context Protocol, prompt injection, agent evals, AI code review, open-source maintainers, trace redaction, SARIF, GitHub Actions.
|
|
151
153
|
|
|
152
154
|
## Non-Goals
|
|
153
155
|
|
package/docs/FAILURE_TAXONOMY.md
CHANGED
|
@@ -128,6 +128,14 @@ Common signals include a forked conversation carrying the full parent transcript
|
|
|
128
128
|
|
|
129
129
|
The fix is to capture Codex app/CLI/extension version, surface, model, fork source thread id, forked thread id, fork action timestamp, fork boundary marker, `input_tokens` and `cached_input_tokens` before and after the fork, `prompt_cache_key` before and after, cache hit rate, duplicated parent-turn or tool-transcript examples with line ids, whether new files were read before the token jump, compaction state, subagent or `fork_context` history, minimal reproduction steps, and whether a fresh thread or non-fork continuation avoids the bloat.
|
|
130
130
|
|
|
131
|
+
## Codex Subagent Prompt Leakage
|
|
132
|
+
|
|
133
|
+
Codex MultiAgentV2 child agents can fail the task boundary even when the parent asks for isolated children. When `spawn_agent` with `fork_turns: "none"` records the delegated task as an assistant/commentary JSON envelope, or a same-turn parallel child sees a sibling prompt, independent review, QA, and security lanes are no longer independent.
|
|
134
|
+
|
|
135
|
+
Common signals include `spawn_agent` arguments with `fork_turns: "none"`, the initial child task appearing as `role=assistant` or `phase=commentary`, child rollout lines containing `recipient`, `trigger_turn`, or JSON prompt envelopes, `multi_tool_use.parallel` spawning multiple children in one parent turn, child A seeing child B's prompt, generic AGENTS/workspace acknowledgements instead of the assigned output, unexpected child tool calls from leaked sibling prompts, and `wait_agent` or `close_agent` reporting completion despite the wrong task.
|
|
136
|
+
|
|
137
|
+
The fix is to capture Codex Desktop/app/CLI version, MultiAgentV2 state, OS, model, parent thread id, child thread ids, exact `spawn_agent` arguments, `fork_turns`, role/profile, whether `multi_tool_use.parallel` or same-turn parallel spawning was used, redacted child rollout line order, first user/task message, assistant/commentary envelope lines, sibling prompt excerpts, `wait_agent` and `close_agent` results, unexpected child tool calls, and sequential single-child versus parallel-child controls.
|
|
138
|
+
|
|
131
139
|
## Codex Streamable HTTP MCP
|
|
132
140
|
|
|
133
141
|
Streamable HTTP and SSE MCP servers can be reachable and still fail inside Codex before or during tool calls. This is different from discovery mismatch because the server may initialize or expose tools, and different from stdio runtime failure because the failure sits in HTTP framing, JSON-RPC parsing, session reuse, auth expectations, or reconnect behavior.
|
package/docs/OPENAI_OSS_BRIEF.md
CHANGED
|
@@ -3,18 +3,18 @@
|
|
|
3
3
|
| Field | Value |
|
|
4
4
|
| --- | --- |
|
|
5
5
|
| Repository | https://github.com/grnbtqdbyx-create/trace-to-skill |
|
|
6
|
-
| Package | trace-to-skill@0.1.
|
|
6
|
+
| Package | trace-to-skill@0.1.83 |
|
|
7
7
|
| License | Apache-2.0 |
|
|
8
8
|
| Codex readiness | ready (100/100) |
|
|
9
|
-
| Benchmark | pass,
|
|
9
|
+
| Benchmark | pass, 37 cases |
|
|
10
10
|
|
|
11
11
|
## Why This Repository Qualifies
|
|
12
12
|
|
|
13
|
-
trace-to-skill helps open-source maintainers adopt Codex safely by turning failed coding-agent runs into evidence-backed rules, reusable workflows, and CI gates. It supports real maintenance work: PR review, issue triage, release quality, MCP risk, prompt-injection defense, privacy-preserving trace sharing, and repeat failure reduction. The repository is ready, scores 100/100 on the local Codex readiness doctor, and ships a deterministic benchmark with
|
|
13
|
+
trace-to-skill helps open-source maintainers adopt Codex safely by turning failed coding-agent runs into evidence-backed rules, reusable workflows, and CI gates. It supports real maintenance work: PR review, issue triage, release quality, MCP risk, prompt-injection defense, privacy-preserving trace sharing, and repeat failure reduction. The repository is ready, scores 100/100 on the local Codex readiness doctor, and ships a deterministic benchmark with 37 public fixture cases.
|
|
14
14
|
|
|
15
15
|
### 500-Character Version
|
|
16
16
|
|
|
17
|
-
> trace-to-skill helps open-source maintainers adopt Codex safely by turning failed coding-agent runs into evidence-backed rules, reusable workflows, and CI gates. It supports real maintenance work: PR review, issue triage, release quality, MCP risk, prompt-injection defense, privacy-preserving trace sharing, and repeat failure reduction. The repository is ready, scores 100/100 on the local Codex readiness doctor, and ships a deterministic benchmark with
|
|
17
|
+
> trace-to-skill helps open-source maintainers adopt Codex safely by turning failed coding-agent runs into evidence-backed rules, reusable workflows, and CI gates. It supports real maintenance work: PR review, issue triage, release quality, MCP risk, prompt-injection defense, privacy-preserving trace sharing, and repeat failure reduction. The repository is ready, scores 100/100 on the local Codex readiness doctor, and ships a deterministic benchmark with 37 public fixture cases.
|
|
18
18
|
|
|
19
19
|
## How API Credits Would Be Used
|
|
20
20
|
|
|
@@ -27,10 +27,10 @@ API credits would power optional maintainer workflows on top of the local determ
|
|
|
27
27
|
## Evidence
|
|
28
28
|
|
|
29
29
|
- Public repository: https://github.com/grnbtqdbyx-create/trace-to-skill
|
|
30
|
-
- One-command package: npx trace-to-skill@0.1.
|
|
30
|
+
- One-command package: npx trace-to-skill@0.1.83
|
|
31
31
|
- Open-source license: Apache-2.0
|
|
32
32
|
- Codex readiness doctor: ready, 100/100, 0 failed checks.
|
|
33
|
-
- Public fixture benchmark: pass,
|
|
33
|
+
- Public fixture benchmark: pass, 37 cases.
|
|
34
34
|
- Maintainer control: generated rules are suggestions, evidence is line-linked, and secrets can be redacted before sharing.
|
|
35
35
|
|
|
36
36
|
## Next Steps Before Submitting
|
package/docs/SCORECARD.md
CHANGED
|
@@ -9,7 +9,7 @@ Status: **pass**
|
|
|
9
9
|
| Failed doctor checks | 0 |
|
|
10
10
|
| Critical findings | 0 |
|
|
11
11
|
| Built-in benchmark | pass |
|
|
12
|
-
| Benchmark cases |
|
|
12
|
+
| Benchmark cases | 37 |
|
|
13
13
|
|
|
14
14
|
## Doctor Summary
|
|
15
15
|
|
|
@@ -29,6 +29,7 @@ This benchmark runs the public fixture pack that ships with the repository and p
|
|
|
29
29
|
| Codex remote compact task failure | `fixtures/codex-remote-compact.md` | 59 | 3 | 0 | `codex_remote_compact`, `context_compaction`, `weak_evidence` | pass |
|
|
30
30
|
| Codex context compaction failure | `fixtures/context-compaction.md` | 59 | 3 | 0 | `codex_remote_compact`, `context_compaction`, `weak_evidence` | pass |
|
|
31
31
|
| Codex conversation fork context bloat | `fixtures/codex-context-fork-bloat.md` | 59 | 3 | 0 | `codex_context_fork_bloat`, `codex_thinking_hang`, `weak_evidence` | pass |
|
|
32
|
+
| Codex subagent prompt leakage or boundary failure | `fixtures/codex-subagent-prompt-leakage.md` | 75 | 2 | 0 | `codex_subagent_prompt_leakage`, `weak_evidence` | pass |
|
|
32
33
|
| Codex latest-turn drift after compaction | `fixtures/codex-latest-turn-drift.md` | 59 | 3 | 0 | `codex_latest_turn_drift`, `premature_completion`, `weak_evidence` | pass |
|
|
33
34
|
| Codex model and runtime latency regression | `fixtures/codex-latency-regression.md` | 75 | 2 | 0 | `codex_latency_regression`, `weak_evidence` | pass |
|
|
34
35
|
| Codex thinking and stream hang | `fixtures/codex-thinking-hang.md` | 75 | 2 | 0 | `codex_thinking_hang`, `weak_evidence` | pass |
|
package/docs/USE_CASES.md
CHANGED
|
@@ -11,6 +11,7 @@ npx trace-to-skill demo
|
|
|
11
11
|
npx trace-to-skill demo --list
|
|
12
12
|
npx trace-to-skill demo remote-compact
|
|
13
13
|
npx trace-to-skill demo context-fork-bloat
|
|
14
|
+
npx trace-to-skill demo subagent-prompt-leakage
|
|
14
15
|
npx trace-to-skill demo windows-helper-path
|
|
15
16
|
npx trace-to-skill demo patch-overwrite
|
|
16
17
|
npx trace-to-skill demo latency-regression
|
|
@@ -32,7 +33,7 @@ What it proves:
|
|
|
32
33
|
|
|
33
34
|
- packaged fixtures can produce a real Codex issue report immediately
|
|
34
35
|
- maintainers can inspect the output shape before sharing any private log
|
|
35
|
-
- demos cover remote compact failures, context fork bloat, Windows helper path failures, patch overwrite safety, approval friction, latency, Thinking hangs, clipboard/attachment regressions, deeplink/OAuth launch regressions, connector auth-cache regressions, MCP discovery/config-scope mismatches, Streamable HTTP MCP parse/handshake failures, hooks runtime failures, terminal output/scrollback integrity, subagent lifecycle drift, token burn, sensitive files, and prompt injection
|
|
36
|
+
- demos cover remote compact failures, context fork bloat, subagent prompt leakage, Windows helper path failures, patch overwrite safety, approval friction, latency, Thinking hangs, clipboard/attachment regressions, deeplink/OAuth launch regressions, connector auth-cache regressions, MCP discovery/config-scope mismatches, Streamable HTTP MCP parse/handshake failures, hooks runtime failures, terminal output/scrollback integrity, subagent lifecycle drift, token burn, sensitive files, and prompt injection
|
|
36
37
|
- `sensitive-audit` scans filenames and paths before an agent run, without reading file contents, so teams can build `.agentignore`, `.aiexclude`, `.codexignore`, `.gitignore`, or sandbox permission profiles from a concrete repo report
|
|
37
38
|
- `lsp-audit` scans repo language signals and PATH availability so teams know which language servers are ready before asking Codex for symbol-aware edits
|
|
38
39
|
|
|
@@ -57,7 +58,7 @@ What it proves:
|
|
|
57
58
|
Recommended CI surface:
|
|
58
59
|
|
|
59
60
|
```yaml
|
|
60
|
-
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.
|
|
61
|
+
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.83
|
|
61
62
|
with:
|
|
62
63
|
mode: all
|
|
63
64
|
doctor-threshold: "85"
|
|
@@ -160,7 +161,21 @@ This catches signals such as forked conversations carrying the full parent trans
|
|
|
160
161
|
|
|
161
162
|
Include Codex app/CLI/extension version, surface, model, fork source thread id, forked thread id, fork action timestamp, fork boundary marker, `input_tokens` and `cached_input_tokens` before and after the fork, `prompt_cache_key` before and after, cache hit rate, duplicated parent-turn or tool-transcript examples with line ids, whether new files were read before the token jump, compaction state, subagent or `fork_context` history, minimal reproduction steps, and whether a fresh thread or non-fork continuation avoids the bloat.
|
|
162
163
|
|
|
163
|
-
## 9. Codex
|
|
164
|
+
## 9. Codex Subagent Prompt Leakage Evidence
|
|
165
|
+
|
|
166
|
+
Use this when `spawn_agent` child tasks are not isolated, especially with `fork_turns: "none"` or same-turn parallel subagent spawning.
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
npx trace-to-skill demo subagent-prompt-leakage
|
|
170
|
+
npx trace-to-skill analyze ./runs --format json
|
|
171
|
+
npx trace-to-skill codex-report ./runs --output openai-codex-subagent-prompt-leakage.md
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
This catches signals such as delegated `spawn_agent` messages recorded as assistant/commentary JSON envelopes, child rollout lines containing `recipient` or `trigger_turn`, same-turn `multi_tool_use.parallel` child prompts leaking into sibling child rollouts, generic workspace acknowledgements instead of assigned outputs, unexpected child tool calls from leaked sibling prompts, and `wait_agent` or `close_agent` reporting completion despite the wrong task.
|
|
175
|
+
|
|
176
|
+
Include Codex Desktop/app/CLI version, MultiAgentV2 state, OS, model, parent thread id, child thread ids, exact `spawn_agent` arguments, `fork_turns`, role/profile, whether `multi_tool_use.parallel` or same-turn parallel spawning was used, redacted child rollout line order, first user/task message, assistant/commentary envelope lines, sibling prompt excerpts, `wait_agent` and `close_agent` results, unexpected child tool calls, and sequential single-child versus parallel-child controls.
|
|
177
|
+
|
|
178
|
+
## 10. Codex Usage Evidence Packaging
|
|
164
179
|
|
|
165
180
|
Use this when a Codex usage issue has scattered evidence across `/status`, dashboard notes, reset tables, token totals, prompt-cache rows, cached input, and local overhead clues.
|
|
166
181
|
|
|
@@ -180,7 +195,7 @@ The receipt separates:
|
|
|
180
195
|
- orchestration-overhead signals that may burn usage without accepted work
|
|
181
196
|
- suspected cause buckets to keep public reports comparable
|
|
182
197
|
|
|
183
|
-
##
|
|
198
|
+
## 11. Codex Windows Helper Path Triage
|
|
184
199
|
|
|
185
200
|
Use this when Codex Desktop on Windows discovers bundled tools or plugin helpers but cannot execute them from the integrated terminal, tool runner, Browser, Chrome, Computer Use, or node_repl path.
|
|
186
201
|
|
|
@@ -190,7 +205,7 @@ npx trace-to-skill codex-report ./runs --output openai-codex-windows-helper-issu
|
|
|
190
205
|
|
|
191
206
|
This catches signals such as `Program 'rg.exe' failed to run`, `Access is denied`, `WindowsApps\OpenAI.Codex...\app\resources`, missing `%LOCALAPPDATA%\OpenAI\Codex\bin`, missing MSIX LocalCache helper bins, `CodexSandboxUsers` ACL/RX problems, `copyfile` failures from WindowsApps bundled plugin manifests, EFS/Application Protected attributes, `windows sandbox failed: spawn setup refresh`, `missing-helper-path`, and unavailable Browser/Chrome/Computer Use plugin helpers.
|
|
192
207
|
|
|
193
|
-
##
|
|
208
|
+
## 12. Codex Mobile And Remote-Control Route Health
|
|
194
209
|
|
|
195
210
|
Use this when Codex mobile, SSH remote, or desktop remote-control says it is connected but commands do not reach the expected host, workspace, or app-server.
|
|
196
211
|
|
|
@@ -200,7 +215,7 @@ npx trace-to-skill analyze ./runs --format json
|
|
|
200
215
|
|
|
201
216
|
This catches signals such as `Waiting for desktop`, `Directory: Unavailable`, stale `server_name` enrollment, stale remote-control listener, `127.0.0.1:14567`, missing cached helper files such as `codex-windows-sandbox-setup.exe` or `codex-command-runner.exe`, empty backend environments, stale Android session lists, and temporary recovery after re-pairing or listener restart.
|
|
202
217
|
|
|
203
|
-
##
|
|
218
|
+
## 13. Codex Terminal Output And Scrollback Integrity
|
|
204
219
|
|
|
205
220
|
Use this when Codex terminal output, streamed assistant text, or scrollback becomes untrustworthy even though raw logs, transcripts, or transaction views still contain the missing lines.
|
|
206
221
|
|
|
@@ -214,7 +229,7 @@ This catches signals such as Windows Terminal scrollback lines disappearing, str
|
|
|
214
229
|
|
|
215
230
|
Include the Codex CLI/app/extension version, OS, shell, terminal emulator and version, WSL/SSH/tmux/Zellij state, model, whether streaming was active, exact scroll action, terminal dimensions and scrollback settings, first missing or duplicated line id, raw log/transcript proof, terminal capture, numbered-line harness output, control run, `/resume` or transcript recovery behavior, and whether another terminal or downgrade changes the result.
|
|
216
231
|
|
|
217
|
-
##
|
|
232
|
+
## 14. Codex Subagent Lifecycle And State Reconciliation
|
|
218
233
|
|
|
219
234
|
Use this when subagents appear completed, closed, stale, or interrupted but Codex cannot reconcile UI state, live handles, persisted spawn edges, parent discoverability, and active spawn quota.
|
|
220
235
|
|
|
@@ -228,7 +243,7 @@ This catches signals such as completed subagents remaining visible in the Subage
|
|
|
228
243
|
|
|
229
244
|
Include Codex app/CLI/extension version, OS, surface, model, subscription/workspace, root thread id, subagent ids/nicknames/roles, spawn/close/list commands, `close_agent` results, `list_agents` or `/agents` output, `thread_spawn_edges` status counts, `agents.max_threads` or registry quota evidence, recent-list/sidebar behavior, child-thread archive/top-level status, last-progress or halt reason, MCP server state, compaction/resume timing, redacted UI evidence, restart/reload behavior, and whether stale agents are UI-only or still block spawns.
|
|
230
245
|
|
|
231
|
-
##
|
|
246
|
+
## 15. Codex MCP Runtime Triage
|
|
232
247
|
|
|
233
248
|
Use this when MCP tools are configured and visible, but Codex cannot actually call them at runtime.
|
|
234
249
|
|
|
@@ -239,7 +254,7 @@ npx trace-to-skill config-audit ~/.codex --format json
|
|
|
239
254
|
|
|
240
255
|
This catches signals such as `user cancelled MCP tool call`, `request_user_input is not supported in exec mode`, `Approve app tool call?`, `tool_call_mcp_elicitation`, routed callable names like `mcp__node_repl__js` becoming `unsupported call`, deferred discovery dropping namespace or `serverName`, `tools/list` succeeding while Codex routing fails, and stdio transport lifecycle failures such as `Transport closed`, `stdin_end`, `stdin_close`, `transport_close`, or stderr backpressure.
|
|
241
256
|
|
|
242
|
-
##
|
|
257
|
+
## 16. Codex Resume And Session State Triage
|
|
243
258
|
|
|
244
259
|
Use this when long Codex sessions become difficult to resume, Desktop history rendering gets sluggish, or local state migrations break goals/projects/history.
|
|
245
260
|
|
|
@@ -256,7 +271,7 @@ This catches signals such as `codex resume` picker hangs, `codex resume <id>` wo
|
|
|
256
271
|
|
|
257
272
|
For mixed resume, crash, config, plugin, or history issues, `diagnostics-bundle` writes the session, config, and plugin reports together with a checklist of files not to attach publicly.
|
|
258
273
|
|
|
259
|
-
##
|
|
274
|
+
## 17. Codex File Tree UI Evidence
|
|
260
275
|
|
|
261
276
|
Use this when Codex Desktop cannot reveal project files through the native file tree, folder icon, floating file panel, or built-in preview.
|
|
262
277
|
|
|
@@ -267,7 +282,7 @@ npx trace-to-skill codex-report ./runs --output openai-codex-issue.md
|
|
|
267
282
|
|
|
268
283
|
This catches signals such as `View > Toggle File Tree` doing nothing, `Cmd+Shift+E` or `Ctrl+Shift+E` having no visible effect, the folder icon disappearing, the floating file panel showing stale or unclickable entries after add/rename/delete operations, and `.doc`, `.pdf`, or `.ppt` previews failing until restart.
|
|
269
284
|
|
|
270
|
-
##
|
|
285
|
+
## 18. Codex Token Burn Attribution
|
|
271
286
|
|
|
272
287
|
Use this when Codex usage drains faster than expected and the trace needs to separate useful model work from orchestration overhead.
|
|
273
288
|
|
|
@@ -280,7 +295,7 @@ This catches signals such as tokens `burning very fast`, usage dropping by visib
|
|
|
280
295
|
|
|
281
296
|
For public reports, prefer `usage-evidence` first so the quota-window, local-token, and orchestration-overhead layers are visible separately.
|
|
282
297
|
|
|
283
|
-
##
|
|
298
|
+
## 19. Usage Reset Drift Evidence
|
|
284
299
|
|
|
285
300
|
Use this when Codex reset timing changes unexpectedly or users lose the ability to plan paid usage.
|
|
286
301
|
|
|
@@ -291,7 +306,7 @@ npx trace-to-skill codex-report ./runs --output openai-codex-issue.md
|
|
|
291
306
|
|
|
292
307
|
This catches signals such as weekly reset dates moving from one date to another, `reset_at` jumping after the first prompt, saved weekly usage being wiped or pushed into the next window, outage compensation resets changing the anchor, `/status` and dashboard disagreement, and requests for deterministic reset schedules or rollover of unused prior-window usage.
|
|
293
308
|
|
|
294
|
-
##
|
|
309
|
+
## 20. Quota And Usage-Limit Evidence
|
|
295
310
|
|
|
296
311
|
Use this when Codex blocks a prompt with a usage-limit message but another surface still shows remaining quota.
|
|
297
312
|
|
|
@@ -301,7 +316,7 @@ npx trace-to-skill analyze ./runs --format json
|
|
|
301
316
|
|
|
302
317
|
This catches traces where `/status` or the usage page shows remaining 5h or weekly quota, accounts appear to share limits unexpectedly, a Team account inherits a Plus account's limit state, or quota reset times jump after logout/login.
|
|
303
318
|
|
|
304
|
-
##
|
|
319
|
+
## 21. Codex Resource Leak Evidence
|
|
305
320
|
|
|
306
321
|
Use this when Codex Desktop, the VS Code extension, renderer, app-server, GPU process, shell snapshot, or helper process keeps burning local resources after the useful work should be idle.
|
|
307
322
|
|
|
@@ -323,7 +338,7 @@ npx trace-to-skill process-audit ./process-notes.md --format json
|
|
|
323
338
|
|
|
324
339
|
`process-audit` packages Task Manager, System Informer, `Get-CimInstance`, `ps`, `top`, or handwritten process measurement snippets into a smaller public report. It detects PowerShell/pwsh CIM polling such as `Get-CimInstance Win32_Process`, high-CPU Codex/helper/renderer samples, stale `process_manager/chat_processes.json` mentions, and runaway helper signals without inspecting live processes or asking users to post full raw process dumps.
|
|
325
340
|
|
|
326
|
-
##
|
|
341
|
+
## 22. Codex Thinking Hang Evidence
|
|
327
342
|
|
|
328
343
|
Use this when Codex accepts a prompt, finishes a local tool call, or keeps a Responses stream open but the UI/CLI remains on Thinking or Working with no visible assistant follow-up.
|
|
329
344
|
|
|
@@ -337,7 +352,7 @@ This catches signals such as `turn/start`, `task_started`, a completed local too
|
|
|
337
352
|
|
|
338
353
|
Include the Codex version, OS, model and reasoning/speed settings, turn or thread id, prompt timestamp, last successful tool output, first `response_item` timestamp, `responses_http` or websocket transport evidence, `time.busy` / `time.idle`, MCP/subagent state, stop/interrupt behavior, and whether a new thread or minimal config recovers.
|
|
339
354
|
|
|
340
|
-
##
|
|
355
|
+
## 23. Codex Clipboard And Pasted-Text Attachment Evidence
|
|
341
356
|
|
|
342
357
|
Use this when copy/export, long pasted prompts, or generated `Pasted text.txt` attachments break Codex prompt, `/goal`, or support-report workflows.
|
|
343
358
|
|
|
@@ -351,7 +366,7 @@ This catches signals such as `Copy as Markdown` disappearing from the Copy menu,
|
|
|
351
366
|
|
|
352
367
|
Include app version, OS, surface, exact copy menu items, source text size, paste action, visible editor text, generated attachment name/path/size, `pasted-text-attachments.json` or fileAttachments metadata, command path such as `/goal`, preview/edit/revert actions tried, clipboard payload format, and whether paste-as-text, opt-out, explicit file reference, or downgrade changes behavior.
|
|
353
368
|
|
|
354
|
-
##
|
|
369
|
+
## 24. Codex Deeplink And External Launch Evidence
|
|
355
370
|
|
|
356
371
|
Use this when OAuth callbacks, notification clicks, browser extension activation, mobile pairing, or CLI app-open commands fail to route back into Codex.
|
|
357
372
|
|
|
@@ -365,7 +380,7 @@ This catches signals such as `codex://oauth_callback?code=...` opening an Electr
|
|
|
365
380
|
|
|
366
381
|
Include app/CLI/extension version, OS/build, install source, package id/path, affected surface, exact redacted URI shape, browser and connector/plugin name, error dialog text, whether the app was already running, AppX/MSIX evidence such as AppUserModelID and DelegateExecute, HKCU/HKCR `codex` keys, command-line arguments, repair/reinstall/re-register attempts, and whether manual `codex://test` or `Start-Process` reproduces.
|
|
367
382
|
|
|
368
|
-
##
|
|
383
|
+
## 25. Codex App Connector Auth Cache Evidence
|
|
369
384
|
|
|
370
385
|
Use this when Codex app connectors appear installed but keep stale auth or discovery metadata after a reauth-required response.
|
|
371
386
|
|
|
@@ -379,7 +394,7 @@ This catches signals such as `401: "Server returned 401: 'Reauthentication requi
|
|
|
379
394
|
|
|
380
395
|
Include app/CLI version, OS, connector/plugin name and id, installed plugin root, exact tool name, redacted `codex_apps_tools` and `codex_app_directory` metadata, `link_*` id before/after reconnect, `isAccessible` state, restart/remove/re-add/cache-clear/sign-in attempts, ChatGPT app page state, and whether an external MCP workaround succeeds.
|
|
381
396
|
|
|
382
|
-
##
|
|
397
|
+
## 26. Codex MCP Discovery And Config Scope Evidence
|
|
383
398
|
|
|
384
399
|
Use this when MCP servers work in Codex CLI or one config scope but are missing in VS Code, Desktop, WSL, remote sessions, project-local config, or an older conversation.
|
|
385
400
|
|
|
@@ -393,7 +408,7 @@ This catches signals such as `MCP servers not detected in Codex VS Code extensio
|
|
|
393
408
|
|
|
394
409
|
Include app/CLI/extension version, OS, IDE, remote/WSL/SSH state, workspace root, effective `CODEX_HOME`, all config files considered (`~/.codex/config.toml`, project `.codex/config.toml`, `.vscode/mcp.json`, `.mcp.json`), redacted MCP sections, trust/profile/default-permissions state, `codex mcp list`, `codex mcp get <server>`, CLI-versus-Desktop/VS Code comparison, loaded config path/log lines, whether moving the same server to user-global config fixes it, and whether the current session exposes `mcp__*` tools.
|
|
395
410
|
|
|
396
|
-
##
|
|
411
|
+
## 27. Codex Streamable HTTP MCP Evidence
|
|
397
412
|
|
|
398
413
|
Use this when a Streamable HTTP or SSE MCP server is reachable but Codex fails during JSON-RPC parsing, handshake, auth gating, stale session reuse, or reconnect.
|
|
399
414
|
|
|
@@ -407,7 +422,7 @@ This catches signals such as Penpot `JsonRpcMessage deserialize` or response-par
|
|
|
407
422
|
|
|
408
423
|
Include Codex version, MCP server name, transport URL without secrets, initialize/tools/list/tools/call results, HTTP status, `Content-Type`, SSE event framing, JSON-RPC message shape, session id before and after reconnect or server restart, auth/OAuth expectations, User-Agent/header requirements, exact parse/deserialize error, whether curl or another MCP client succeeds, and whether restarting Codex or reinitializing the transport recovers.
|
|
409
424
|
|
|
410
|
-
##
|
|
425
|
+
## 28. Codex Hooks Runtime Evidence
|
|
411
426
|
|
|
412
427
|
Use this when Codex hooks duplicate, stop firing, emit stale deprecation warnings, behave differently across CLI/Desktop/Code Mode/Windows, or become hard to inspect in settings.
|
|
413
428
|
|
|
@@ -421,7 +436,7 @@ This catches signals such as duplicate Hooks entries for one tool call, `PostToo
|
|
|
421
436
|
|
|
422
437
|
Include Codex app/CLI/extension version, OS, surface, shell or Desktop route, `[features].hooks` and `hooks.json` snippets without secrets, hook event type, matcher, handler command/name, expected versus observed fire count, duplicate event ids, exact deprecation warning, trust state, live-edit/rate-limit/auto-restore timing, Code Mode `exec` versus normal CLI comparison, linked-worktree cwd, Hooks settings UI screenshot if relevant, and whether restart/reload/new session restores behavior.
|
|
423
438
|
|
|
424
|
-
##
|
|
439
|
+
## 29. Patch Overwrite Guard
|
|
425
440
|
|
|
426
441
|
Use this before applying a generated patch when you want create/update/delete semantics checked against the actual workspace.
|
|
427
442
|
|
|
@@ -438,7 +453,7 @@ For a public demo report:
|
|
|
438
453
|
npx trace-to-skill demo patch-overwrite
|
|
439
454
|
```
|
|
440
455
|
|
|
441
|
-
##
|
|
456
|
+
## 30. Sensitive Path Preflight Before Agent Runs
|
|
442
457
|
|
|
443
458
|
Use this before giving an AI coding agent a repository.
|
|
444
459
|
|
|
@@ -453,7 +468,7 @@ This finds sensitive-looking paths such as `.env`, `.env.*`, `.npmrc`, `.pypirc`
|
|
|
453
468
|
|
|
454
469
|
The output includes a stable JSON schema plus recommended exclude globs that can seed `.agentignore`, `.aiexclude`, `.codexignore`, `.gitignore`, local sandbox permission profiles, or team security review checklists. `--format ignore` renders a reviewable generated file candidate and still does not mutate the repo. It is a preflight report, not a sandbox boundary.
|
|
455
470
|
|
|
456
|
-
##
|
|
471
|
+
## 31. Workspace Checkpoint Before Agent Runs
|
|
457
472
|
|
|
458
473
|
Use this before giving Codex, Claude, Cursor, or another coding agent a dirty repository where untracked local work matters.
|
|
459
474
|
|
|
@@ -466,7 +481,7 @@ This writes a local checkpoint bundle with `status.txt`, staged and unstaged bin
|
|
|
466
481
|
|
|
467
482
|
This is useful for OpenAI/Codex `/undo` and `/rewind` discussions where users need workspace protection beyond conversation rewind, especially when untracked files are outside normal commit history.
|
|
468
483
|
|
|
469
|
-
##
|
|
484
|
+
## 32. OpenAI Codex Issue Report
|
|
470
485
|
|
|
471
486
|
Use this when you want to file or update an OpenAI/Codex issue with a concise, evidence-backed report instead of pasting a full transcript.
|
|
472
487
|
|
|
@@ -479,7 +494,7 @@ The report includes the likely Codex failure class, line-linked evidence, diagno
|
|
|
479
494
|
|
|
480
495
|
For a cluster-to-command map of current Codex issue patterns, see [CODEX_ISSUE_MAP.md](CODEX_ISSUE_MAP.md).
|
|
481
496
|
|
|
482
|
-
##
|
|
497
|
+
## 33. Sensitive File Access Evidence
|
|
483
498
|
|
|
484
499
|
Use this when a trace suggests an agent read, attached, uploaded, diffed, or indexed credential-bearing files.
|
|
485
500
|
|
|
@@ -492,7 +507,7 @@ This catches signals such as `.env`, `.env.production`, `.npmrc`, `.pypirc`, `.n
|
|
|
492
507
|
|
|
493
508
|
Before publishing evidence, run `trace-to-skill redact` and attach only redacted excerpts plus the file path/class.
|
|
494
509
|
|
|
495
|
-
##
|
|
510
|
+
## 34. GitHub Context Guard
|
|
496
511
|
|
|
497
512
|
Use this before an agent reads untrusted GitHub text.
|
|
498
513
|
|
|
@@ -509,7 +524,7 @@ Use it when:
|
|
|
509
524
|
- a bot asks Codex to triage untrusted user reports
|
|
510
525
|
- logs or comments might contain instructions like "ignore previous instructions" or "print secrets"
|
|
511
526
|
|
|
512
|
-
##
|
|
527
|
+
## 35. Failed Agent Run To Reviewable Rule
|
|
513
528
|
|
|
514
529
|
Use this when a coding agent made a repeated workflow mistake.
|
|
515
530
|
|
|
@@ -527,7 +542,7 @@ Recommended maintainer loop:
|
|
|
527
542
|
4. Copy only evidence-backed rules into the real policy file.
|
|
528
543
|
5. Run `eval` or `scorecard` in CI so the same failure does not silently return.
|
|
529
544
|
|
|
530
|
-
##
|
|
545
|
+
## 36. Privacy-Preserving Adoption
|
|
531
546
|
|
|
532
547
|
Use this when you want public evidence without leaking private traces.
|
|
533
548
|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Codex MultiAgentV2 Subagent Prompt Leakage
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
|
|
5
|
+
Codex Desktop MultiAgentV2 spawned child agents with `fork_turns: "none"`, but the child rollout did not treat the `spawn_agent` message as an isolated user task.
|
|
6
|
+
|
|
7
|
+
## Evidence
|
|
8
|
+
|
|
9
|
+
- `spawn_agent` was called with `fork_turns: "none"` for `task_name: exp1_seq_b`.
|
|
10
|
+
- The initial task appeared in the child rollout as `role=assistant`, `phase=commentary`, not as a user/task message.
|
|
11
|
+
- The assistant/commentary JSON envelope contained `recipient: /root/exp1_seq_b`, `trigger_turn: true`, and `content: BLACKBOX_PROBE_B`.
|
|
12
|
+
- In a same-turn parallel spawn through `multi_tool_use.parallel`, child A received sibling child B's prompt envelope before child A produced a final answer.
|
|
13
|
+
- The leaked sibling prompt included `recipient: /root/exp2_parallel_b` and `content: BLACKBOX_PARALLEL_B`, even though child A had `fork_turns: "none"`.
|
|
14
|
+
- The child replied with a generic workspace or AGENTS acknowledgement instead of the exact assigned task output.
|
|
15
|
+
- In a worker-role run, a child saw the sibling prompt and called `spawn_agent` itself despite instructions not to use tools.
|
|
16
|
+
- `wait_agent` and `close_agent` reported completion, but the child did not perform the assigned independent review task.
|
|
17
|
+
|
|
18
|
+
## Expected
|
|
19
|
+
|
|
20
|
+
For `spawn_agent` with `fork_turns: "none"`, the child should receive only the delegated task as its initial user-equivalent instruction. Parallel children should not see sibling prompt envelopes unless shared context is explicitly requested.
|
|
21
|
+
|
|
22
|
+
## Diagnostics To Attach
|
|
23
|
+
|
|
24
|
+
Include Codex Desktop version, CLI version, MultiAgentV2 state, model, OS, parent thread id, child thread ids, `spawn_agent` arguments, `fork_turns`, role/profile, whether `multi_tool_use.parallel` was used, redacted child rollout line order, first child user/task message, assistant/commentary envelope lines, sibling prompt excerpts, `wait_agent` and `close_agent` results, and whether sequential single-child spawns reproduce.
|
package/llms.txt
CHANGED
|
@@ -35,6 +35,7 @@ Runtime: Node.js 20+
|
|
|
35
35
|
- Codex deeplink, OAuth callback, notification click, browser-extension activation, mobile pairing, and `codex app <path>` launch regressions
|
|
36
36
|
- Codex app connector stale auth/cache regressions such as `401 Reauthentication required`, unchanged `link_*`, `isAccessible: false`, and broken `codex_apps_tools` metadata
|
|
37
37
|
- Codex context fork bloat and prompt-cache lineage failures where conversation forks duplicate parent transcript blocks, inflate `input_tokens`, change `prompt_cache_key`, drop cache hit rate, or leak `fork_context` subagent history into child context before new work happens
|
|
38
|
+
- Codex subagent prompt leakage where `spawn_agent` with `fork_turns: "none"` delivers assistant/commentary prompt envelopes, same-turn parallel children see sibling prompts, or `wait_agent`/`close_agent` completes despite the wrong child task
|
|
38
39
|
- Codex token-burn, prompt-cache collapse, and usage-drain failures such as rapid drain experiments (`1% in 4 minutes`, `22 credits`, `70% weekly in a day`), `input_tokens` / `cached_input_tokens` / `prompt_cache_key` rows, websocket reconnect cache drops, background `write_stdin` polling, idle app usage, compaction tax, retry/tool loops, cached-token-heavy turns, fast-mode drift, subagent fan-out, and unclear usage attribution
|
|
39
40
|
- Codex process evidence packaging for Windows PowerShell/pwsh CIM polling, high-CPU helpers, stale process-manager entries, and renderer runaways
|
|
40
41
|
- Codex usage reset schedule drift such as weekly reset dates moving, `reset_at` jumping, saved usage disappearing, outage compensation resets changing the anchor, and `/status` disagreeing with enforcement
|
|
@@ -84,6 +85,7 @@ npx trace-to-skill demo clipboard-attachment
|
|
|
84
85
|
npx trace-to-skill demo deeplink-launch
|
|
85
86
|
npx trace-to-skill demo connector-auth-cache
|
|
86
87
|
npx trace-to-skill demo context-fork-bloat
|
|
88
|
+
npx trace-to-skill demo subagent-prompt-leakage
|
|
87
89
|
npx trace-to-skill demo mcp-discovery-mismatch
|
|
88
90
|
npx trace-to-skill demo mcp-streamable-http
|
|
89
91
|
npx trace-to-skill demo hooks-runtime
|
|
@@ -115,7 +117,7 @@ npx trace-to-skill init --comment --sarif
|
|
|
115
117
|
## GitHub Action
|
|
116
118
|
|
|
117
119
|
```yaml
|
|
118
|
-
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.
|
|
120
|
+
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.83
|
|
119
121
|
with:
|
|
120
122
|
mode: all
|
|
121
123
|
doctor-threshold: "85"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trace-to-skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.83",
|
|
4
4
|
"description": "Turn failed AI coding-agent runs into reusable AGENTS.md rules, SKILL.md files, and eval evidence.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -167,6 +167,10 @@
|
|
|
167
167
|
"codex-context-fork",
|
|
168
168
|
"context-bloat",
|
|
169
169
|
"fork-bloat",
|
|
170
|
+
"codex-subagent-prompt",
|
|
171
|
+
"subagent-prompt-leak",
|
|
172
|
+
"multiagentv2",
|
|
173
|
+
"fork-turns",
|
|
170
174
|
"usage-receipt",
|
|
171
175
|
"codex-usage-receipt",
|
|
172
176
|
"codex-usage-spike",
|