You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ If no new rule is detected -> do not update the file.
89
89
- When asked to fix review findings, close every confirmed finding in the same pass; do not leave partial fixes.
90
90
- Do not keep or add public sample projects; repository focus is SDK + tests only.
91
91
- Upstream sync automation must track real `openai/codex` CLI changes (flags/models/features), not TypeScript SDK surface diffs, and open actionable repository issues for required SDK follow-up.
92
-
- Automatically opened upstream sync issues must include change summary/checklist and assign Copilot by default.
92
+
- Automatically opened upstream sync issues must include change summary/checklist and stay unassigned unless the user explicitly requests an assignee.
93
93
- For `openai/codex` repo sync/update work, always inspect the bundled `models.json` catalog in `submodules/openai-codex` (prefer `codex-rs/models-manager/models.json`, fall back to `codex-rs/core/models.json` for older pins) and reconcile SDK model constants against that repo-authoritative source.
94
94
- At the end of implementation/code-change tasks, create a git commit unless the user explicitly says not to, so the workspace ends in a reviewable state.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ var thread = client.StartThread(new ThreadOptions
99
99
100
100
`Ephemeral = false` forces rollout persistence even if your Codex config/profile enables `ephemeral = true`.
101
101
102
-
SDK turns still run through non-interactive `codex exec`, so the default CLI/App history views may hide them. To reopen a persisted SDK session outside the SDK, use `codex resume <threadId>` directly or `codex resume --include-non-interactive`.
102
+
SDK turns still run through non-interactive `codex exec`, so the default CLI/App history views may hide them. To reopen a persisted SDK session outside the SDK, use `codex resume <threadId>` directly.
- Completing a Codex CLI sync issue must update the pinned `submodules/openai-codex` commit after validation.
48
48
- Sync issue body must derive flag changes from CLI source snapshots, model changes from the bundled `models.json` catalog (`codex-rs/models-manager/models.json` in current upstream, with fallback to `codex-rs/core/models.json` for older pins), and feature changes from `codex-rs/core/config.schema.json` so alerts stay actionable.
49
49
- SDK model constants must cover every bundled slug from the pinned `submodules/openai-codex``models.json` catalog whenever upstream Codex repo sync work updates the pinned submodule.
50
-
- Sync issue must assign Copilot by default.
50
+
- Sync issue must stay unassigned by default unless repository configuration explicitly provides an assignee.
51
51
- Sync issue automation must keep at most one open `codex-cli-sync` issue at a time by updating the active issue and closing superseded ones when upstream advances again.
Copy file name to clipboardExpand all lines: docs/Features/thread-run-flow.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ Provide deterministic thread-based execution over Codex CLI so C# consumers can
47
47
- Codex executable resolution is deterministic: prefer npm-vendored native binary, then PATH lookup; on Windows PATH lookup checks `codex.exe`, `codex.cmd`, `codex.bat`, then `codex`.
48
48
- Thread options map full Codex CLI flags (`profile`, `enable/disable`, OSS provider, ephemeral/color/progress/output options), plus raw `AdditionalCliArguments` passthrough for forward-compatible flags.
49
49
- Explicit `ThreadOptions.Ephemeral = false` must override inherited Codex config/profile `ephemeral = true`, so SDK callers can force persistent rollout storage deterministically.
50
-
- Non-ephemeral SDK runs persist as non-interactive `codex exec` sessions; they remain resumable by thread id, but Codex CLIpickers may require `codex resume --include-non-interactive` to list them.
50
+
- Non-ephemeral SDK runs persist as non-interactive `codex exec` sessions; they remain resumable by thread id even when default CLI/App history pickers do not show them.
51
51
- If thread web search options are not set, SDK does not emit `web_search` overrides and keeps effective CLI/config setting unchanged.
52
52
- Cleanup failures are never silently swallowed; process/schema/image cleanup issues are logged through `ILogger`.
0 commit comments