diff --git a/Sessions.md b/Sessions.md index 4d696c7..013cbab 100644 --- a/Sessions.md +++ b/Sessions.md @@ -122,12 +122,19 @@ at runtime using the `.set` command or configured in the session's YAML file: | Setting | Default | Description | |----------------------------|-----------------------------------------|---------------------------------------------------------------------------------------------------------------------------------| +| `model` | Active model at session creation | The model used for this session. Changed via `.model` in the REPL; persisted in the session YAML. | +| `temperature` | Global `temperature` value | Model temperature for this session. | +| `top_p` | Global `top_p` value | Model top-p for this session. | +| `reasoning_effort` | Global `reasoning_effort` value | Reasoning effort level for models that support it (e.g. `low`, `medium`, `high`). Only valid when the active model declares `reasoning_levels`. | +| `enabled_tools` | Global `enabled_tools` value | Tools enabled for this session. Accepts a comma-separated string (e.g. `fs_ls,fs_cat`) or `all`. | +| `enabled_mcp_servers` | Global `enabled_mcp_servers` value | MCP servers enabled for this session. Accepts a comma-separated string (e.g. `github,slack`) or `all`. | | `auto_continue` | Global `auto_continue` value | Enable the [Todo System](TODO-System) auto-continuation for this session. Overrides global and role settings. | | `max_auto_continues` | Global `max_auto_continues` value | Maximum number of automatic continuations before stopping. Overrides global and role settings. | | `inject_todo_instructions` | Global `inject_todo_instructions` value | Inject default todo tool usage instructions into the system prompt. Overrides global and role settings. | | `continuation_prompt` | Global `continuation_prompt` value | Custom prompt used when auto-continuing. Overrides global and role settings. | -| `reasoning_effort` | Global `reasoning_effort` value | Reasoning effort level for models that support it (e.g. `low`, `medium`, `high`). Only valid when the session's active model declares `reasoning_levels`. | | `skills_enabled` | Global `skills_enabled` value | Master switch for [skills](Skills) in this session. `.set skills_enabled null` clears the session override. | | `enabled_skills` | Inherited via the skill cascade | The active [skills](Skills) for this session. Accepts either a YAML list or a comma-separated string in the saved session YAML. | +| `inject_skill_instructions`| Global `inject_skill_instructions` value| Whether to inject the skill-discovery hint into the session's system prompt. | +| `skill_instructions` | Global `skill_instructions` value | Custom text for the skill-discovery hint. `null` to reset to the built-in default. | For more information on the Todo System, see the [Todo System documentation](TODO-System).