fix: correct doc examples with valid Codex modes and update stable API list

- Replace invalid Codex mode values ("plan", "build") with valid ones
  ("auto", "full-access") in agent-sessions.mdx and sdk-overview.mdx
- Update CLAUDE.md stable method enumerations to include new session
  config methods (setSessionMode, setSessionModel, etc.)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Nathan Flurry 2026-03-05 23:08:58 -08:00
parent 971689ed6e
commit 0d0bb8b0e4
3 changed files with 5 additions and 5 deletions

View file

@ -91,7 +91,7 @@ Set the model, mode, or thought level on a session at creation time or after:
const session = await sdk.createSession({
agent: "codex",
model: "gpt-5.3-codex",
mode: "plan",
mode: "auto",
thoughtLevel: "high",
});
```
@ -99,7 +99,7 @@ const session = await sdk.createSession({
```ts
// After creation
await session.setModel("gpt-5.2-codex");
await session.setMode("build");
await session.setMode("full-access");
await session.setThoughtLevel("medium");
```

View file

@ -111,7 +111,7 @@ const session = await sdk.createSession({
});
await session.setModel("gpt-5.2-codex");
await session.setMode("plan");
await session.setMode("auto");
const options = await session.getConfigOptions();
const modes = await session.getModes();