chore(M003/S04): auto-commit after reassess-roadmap

This commit is contained in:
Lex Christopherson 2026-03-14 23:21:28 -06:00
parent 01f5d2bf7f
commit 4ec30cdc2d
2 changed files with 2 additions and 2 deletions

View file

@ -207,7 +207,7 @@ ${chalk.bold("Options:")}
Supports globs (anthropic/*, *sonnet*) and fuzzy matching
--no-tools Disable all built-in tools
--tools <tools> Comma-separated list of tools to enable (default: read,bash,edit,write)
Available: read, bash, edit, write, grep, find, ls
Available: read, bash, edit, write, lsp, grep, find, ls
--thinking <level> Set thinking level: off, minimal, low, medium, high, xhigh
--extension, -e <path> Load an extension file (can be used multiple times)
--no-extensions, -ne Disable extension discovery (explicit -e paths still work)

View file

@ -238,7 +238,7 @@ export async function createAgentSession(options: CreateAgentSessionOptions = {}
thinkingLevel = "off";
}
const defaultActiveToolNames: ToolName[] = ["read", "bash", "edit", "write"];
const defaultActiveToolNames: ToolName[] = ["read", "bash", "edit", "write", "lsp"];
const initialActiveToolNames: ToolName[] = options.tools
? options.tools.map((t) => t.name).filter((n): n is ToolName => n in allTools)
: defaultActiveToolNames;