diff --git a/docs/advanced.md b/docs/advanced.md index 38fbd0db..71ede313 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -54,22 +54,22 @@ Send a `tools/list` request and you will see that there are two tools available: Property | Type | Description -------------------|----------|---------------------------------------------------------------------------------------------------------- -approval-policy | string | Approval policy for shell commands generated by the model: `untrusted`, `on-failure`, `never`. -base-instructions | string | The set of instructions to use instead of the default ones. -config | object | Individual [config settings](https://github.com/openai/codex/blob/main/docs/config.md#config) that will override what is in CODEX_HOME/config.toml. -cwd | string | Working directory for the session. If relative, resolved against the server process's current directory. -include-plan-tool | boolean | Whether to include the plan tool in the conversation. -model | string | Optional override for the model name (e.g. "o3", "o4-mini"). -profile | string | Configuration profile from config.toml to specify default options. -**prompt** (required) | string | The initial user prompt to start the Codex conversation. -sandbox | string | Sandbox mode: `read-only`, `workspace-write`, or `danger-full-access`. +**`prompt`** (required) | string | The initial user prompt to start the Codex conversation. +`approval-policy` | string | Approval policy for shell commands generated by the model: `untrusted`, `on-failure`, `never`. +`base-instructions` | string | The set of instructions to use instead of the default ones. +`config` | object | Individual [config settings](https://github.com/openai/codex/blob/main/docs/config.md#config) that will override what is in `$CODEX_HOME/config.toml`. +`cwd` | string | Working directory for the session. If relative, resolved against the server process's current directory. +`include-plan-tool` | boolean | Whether to include the plan tool in the conversation. +`model` | string | Optional override for the model name (e.g. `o3`, `o4-mini`). +`profile` | string | Configuration profile from `config.toml` to specify default options. +`sandbox` | string | Sandbox mode: `read-only`, `workspace-write`, or `danger-full-access`. -**`codex-reply`** - Continue a Codex session by providing the session id and prompt. The `codex-reply` tool takes the following properties: +**`codex-reply`** - Continue a Codex session by providing the conversation id and prompt. The `codex-reply` tool takes the following properties: Property | Type | Description -----------|--------|--------------------------------------------------------------- -**prompt** (required) | string | The next user prompt to continue the Codex conversation. -**conversationId** (required) | string | The id of the conversation to continue. +**`prompt`** (required) | string | The next user prompt to continue the Codex conversation. +**`conversationId`** (required) | string | The id of the conversation to continue. ### Trying it Out > [!TIP]