From 4ec30cdc2d77426784549a844f364684f67e5d1f Mon Sep 17 00:00:00 2001 From: Lex Christopherson Date: Sat, 14 Mar 2026 23:21:28 -0600 Subject: [PATCH] chore(M003/S04): auto-commit after reassess-roadmap --- packages/pi-coding-agent/src/cli/args.ts | 2 +- packages/pi-coding-agent/src/core/sdk.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pi-coding-agent/src/cli/args.ts b/packages/pi-coding-agent/src/cli/args.ts index 7b2a27469..40306049c 100644 --- a/packages/pi-coding-agent/src/cli/args.ts +++ b/packages/pi-coding-agent/src/cli/args.ts @@ -207,7 +207,7 @@ ${chalk.bold("Options:")} Supports globs (anthropic/*, *sonnet*) and fuzzy matching --no-tools Disable all built-in 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 Set thinking level: off, minimal, low, medium, high, xhigh --extension, -e Load an extension file (can be used multiple times) --no-extensions, -ne Disable extension discovery (explicit -e paths still work) diff --git a/packages/pi-coding-agent/src/core/sdk.ts b/packages/pi-coding-agent/src/core/sdk.ts index 015644401..1c8050795 100644 --- a/packages/pi-coding-agent/src/core/sdk.ts +++ b/packages/pi-coding-agent/src/core/sdk.ts @@ -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;