b5e5824a56
Core changes:
- Added claw-code/src/token_budget.py for projected prompt size, chat-framing overhead, output reserve, and soft/hard input limits.
- Wired preflight prompt-length validation and auto-compact/context collapse into claw-code/src/agent_runtime.py.
- Extended claw-code/src/compact.py so compaction reports usage back to the runtime.
- Added inspection surfaces in claw-code/src/agent_slash_commands.py and claw-code/src/main.py:
- /token-budget and /budget
- token-budget
- Hardened claw-code/src/tokenizer_runtime.py so arbitrary simple model names fall back cleanly instead of trying a slow Transformers
lookup.
- Exported the new helpers in claw-code/src/__init__.py.
Docs and tracking:
- Updated claw-code/PARITY_CHECKLIST.md to mark prompt-length validation, token-budget calculation, and auto-compact/context collapse as
done.
- Updated claw-code/README.md and claw-code/TESTING_GUIDE.md with the new commands and behavior.
Tests:
- Added claw-code/tests/test_token_budget.py.
- Updated claw-code/tests/test_agent_runtime.py, claw-code/tests/test_agent_slash_commands.py, claw-code/tests/test_main.py, and claw-code/
tests/test_agent_context_usage.py.
- Verified with:
- /data/fs201059/aa17626/miniconda3/bin/python3 -m compileall src tests
- /data/fs201059/aa17626/miniconda3/bin/python3 -m unittest -v tests.test_token_budget
tests.test_agent_runtime.AgentRuntimeTests.test_agent_rejects_prompt_before_backend_when_preflight_input_budget_is_exceeded
tests.test_agent_runtime.AgentRuntimeTests.test_agent_auto_compacts_context_before_next_model_call tests.test_agent_slash_commands
tests.test_main tests.test_compact tests.test_tokenizer_runtime tests.test_agent_context_usage
- Result: 71 tests, OK
1199 lines
45 KiB
Python
1199 lines
45 KiB
Python
from __future__ import annotations
|
|
|
|
import re
|
|
from dataclasses import dataclass
|
|
from typing import TYPE_CHECKING, Any, Callable
|
|
|
|
if TYPE_CHECKING:
|
|
from .agent_runtime import LocalCodingAgent
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class ParsedSlashCommand:
|
|
command_name: str
|
|
args: str
|
|
is_mcp: bool
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class SlashCommandResult:
|
|
handled: bool
|
|
should_query: bool
|
|
prompt: str | None = None
|
|
output: str = ''
|
|
transcript: tuple[dict[str, Any], ...] = ()
|
|
|
|
|
|
SlashCommandHandler = Callable[['LocalCodingAgent', str, str], SlashCommandResult]
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class SlashCommandSpec:
|
|
names: tuple[str, ...]
|
|
description: str
|
|
handler: SlashCommandHandler
|
|
|
|
|
|
def parse_slash_command(input_text: str) -> ParsedSlashCommand | None:
|
|
trimmed = input_text.strip()
|
|
if not trimmed.startswith('/'):
|
|
return None
|
|
|
|
without_slash = trimmed[1:]
|
|
words = without_slash.split(' ')
|
|
if not words or not words[0]:
|
|
return None
|
|
|
|
command_name = words[0]
|
|
is_mcp = False
|
|
args_start_index = 1
|
|
if len(words) > 1 and words[1] == '(MCP)':
|
|
command_name = f'{command_name} (MCP)'
|
|
is_mcp = True
|
|
args_start_index = 2
|
|
|
|
return ParsedSlashCommand(
|
|
command_name=command_name,
|
|
args=' '.join(words[args_start_index:]),
|
|
is_mcp=is_mcp,
|
|
)
|
|
|
|
|
|
def looks_like_command(command_name: str) -> bool:
|
|
return re.search(r'[^a-zA-Z0-9:\-_]', command_name) is None
|
|
|
|
|
|
def preprocess_slash_command(
|
|
agent: 'LocalCodingAgent',
|
|
input_text: str,
|
|
) -> SlashCommandResult:
|
|
if not input_text.strip().startswith('/'):
|
|
return SlashCommandResult(handled=False, should_query=True, prompt=input_text)
|
|
|
|
parsed = parse_slash_command(input_text)
|
|
if parsed is None:
|
|
return _local_result(
|
|
input_text,
|
|
'Commands are in the form `/command [args]`.',
|
|
)
|
|
|
|
normalized_name = (
|
|
parsed.command_name[:-6]
|
|
if parsed.is_mcp and parsed.command_name.endswith(' (MCP)')
|
|
else parsed.command_name
|
|
)
|
|
spec = find_slash_command(normalized_name)
|
|
if spec is None:
|
|
if looks_like_command(parsed.command_name):
|
|
label = normalized_name if parsed.is_mcp else parsed.command_name
|
|
return _local_result(input_text, f'Unknown skill: {label}')
|
|
return SlashCommandResult(handled=False, should_query=True, prompt=input_text)
|
|
|
|
return spec.handler(agent, parsed.args.strip(), input_text)
|
|
|
|
|
|
def get_slash_command_specs() -> tuple[SlashCommandSpec, ...]:
|
|
return (
|
|
SlashCommandSpec(
|
|
names=('help', 'commands'),
|
|
description='Show the built-in Python slash commands.',
|
|
handler=_handle_help,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('context', 'usage'),
|
|
description='Show estimated session context usage similar to the npm /context command.',
|
|
handler=_handle_context,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('context-raw', 'env'),
|
|
description='Show the raw environment, user context, and system context snapshot.',
|
|
handler=_handle_context_raw,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('token-budget', 'budget'),
|
|
description='Show the current token-budget window, reserves, and prompt-length limits.',
|
|
handler=_handle_token_budget,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('mcp',),
|
|
description='Show discovered local MCP manifests and resource counts.',
|
|
handler=_handle_mcp,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('search',),
|
|
description='Show search runtime status, list or activate providers, or run a real web search query.',
|
|
handler=_handle_search,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('remote',),
|
|
description='Show local remote runtime status or activate a remote target/profile.',
|
|
handler=_handle_remote,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('worktree',),
|
|
description='Show managed git worktree status or enter/exit the current managed worktree session.',
|
|
handler=_handle_worktree,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('account',),
|
|
description='Show local account runtime status or configured account profiles.',
|
|
handler=_handle_account,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('ask',),
|
|
description='Show local ask-user runtime status or ask-user history.',
|
|
handler=_handle_ask,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('login',),
|
|
description='Activate a local account profile or ephemeral identity.',
|
|
handler=_handle_login,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('logout',),
|
|
description='Clear the active local account session.',
|
|
handler=_handle_logout,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('config', 'settings'),
|
|
description='Show local config runtime state, effective config, config sources, or a config value.',
|
|
handler=_handle_config,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('lsp',),
|
|
description='Show local LSP runtime status or run document symbols, definition, references, hover, call hierarchy, and diagnostics queries.',
|
|
handler=_handle_lsp,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('remotes',),
|
|
description='List configured local remote profiles.',
|
|
handler=_handle_remotes,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('ssh',),
|
|
description='Activate a local SSH remote target/profile.',
|
|
handler=_handle_ssh,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('teleport',),
|
|
description='Activate a local teleport remote target/profile.',
|
|
handler=_handle_teleport,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('direct-connect',),
|
|
description='Activate a local direct-connect remote target/profile.',
|
|
handler=_handle_direct_connect,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('deep-link',),
|
|
description='Activate a local deep-link remote target/profile.',
|
|
handler=_handle_deep_link,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('disconnect', 'remote-disconnect'),
|
|
description='Disconnect the active local remote runtime target.',
|
|
handler=_handle_remote_disconnect,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('resources',),
|
|
description='List local MCP resources, optionally filtered by a query string.',
|
|
handler=_handle_resources,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('resource',),
|
|
description='Render a local MCP resource by URI.',
|
|
handler=_handle_resource,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('tasks', 'todo'),
|
|
description='Show the local runtime task list, optionally filtered by status.',
|
|
handler=_handle_tasks,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('workflows',),
|
|
description='List local workflows discovered from workflow manifests.',
|
|
handler=_handle_workflows,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('workflow',),
|
|
description='Show or run one local workflow by name.',
|
|
handler=_handle_workflow,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('triggers',),
|
|
description='List local remote triggers discovered from remote trigger manifests.',
|
|
handler=_handle_triggers,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('trigger',),
|
|
description='Show or run one local remote trigger by id.',
|
|
handler=_handle_trigger,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('teams',),
|
|
description='List the locally configured collaboration teams.',
|
|
handler=_handle_teams,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('team',),
|
|
description='Show one local collaboration team by name.',
|
|
handler=_handle_team,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('messages',),
|
|
description='Show recorded collaboration messages for all teams or one team.',
|
|
handler=_handle_messages,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('task-next', 'next-task'),
|
|
description='Show the next actionable tasks from the local runtime task list.',
|
|
handler=_handle_task_next,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('plan', 'planner'),
|
|
description='Show the current local runtime plan.',
|
|
handler=_handle_plan,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('task',),
|
|
description='Show a local runtime task by id.',
|
|
handler=_handle_task,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('prompt', 'system-prompt'),
|
|
description='Render the effective Python system prompt.',
|
|
handler=_handle_prompt,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('permissions',),
|
|
description='Show the active tool permission mode.',
|
|
handler=_handle_permissions,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('hooks', 'policy'),
|
|
description='Show discovered local hook and policy manifests.',
|
|
handler=_handle_hooks,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('trust',),
|
|
description='Show workspace trust mode, managed settings, and safe environment values.',
|
|
handler=_handle_trust,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('model',),
|
|
description='Show or update the active model for the current agent instance.',
|
|
handler=_handle_model,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('tools',),
|
|
description='List the registered tools and whether the current permissions allow them.',
|
|
handler=_handle_tools,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('memory',),
|
|
description='Show the currently loaded CLAUDE.md memory bundle and discovered files.',
|
|
handler=_handle_memory,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('status', 'session'),
|
|
description='Show a short runtime/session status summary.',
|
|
handler=_handle_status,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('clear',),
|
|
description='Clear ephemeral Python runtime state for this process.',
|
|
handler=_handle_clear,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('compact',),
|
|
description='Summarise and compact the conversation to free context space.',
|
|
handler=_handle_compact,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('cost',),
|
|
description='Show the total cost and duration of the current session.',
|
|
handler=_handle_cost,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('exit', 'quit'),
|
|
description='Exit the REPL.',
|
|
handler=_handle_exit,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('diff',),
|
|
description='View uncommitted changes (git diff) in the working directory.',
|
|
handler=_handle_diff,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('files',),
|
|
description='List files currently loaded in the session context.',
|
|
handler=_handle_files,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('copy',),
|
|
description='Copy the last assistant response to a temp file.',
|
|
handler=_handle_copy,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('export',),
|
|
description='Export the conversation to a text file.',
|
|
handler=_handle_export,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('stats',),
|
|
description='Show session usage statistics.',
|
|
handler=_handle_stats,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('tag',),
|
|
description='Add or remove a searchable tag on the current session.',
|
|
handler=_handle_tag,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('rename',),
|
|
description='Rename the current conversation.',
|
|
handler=_handle_rename,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('branch',),
|
|
description='Create a fork/branch of the current conversation.',
|
|
handler=_handle_branch,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('effort',),
|
|
description='Show or set the model effort level (low, medium, high, max, auto).',
|
|
handler=_handle_effort,
|
|
),
|
|
SlashCommandSpec(
|
|
names=('doctor',),
|
|
description='Diagnose and verify the claw-code installation and settings.',
|
|
handler=_handle_doctor,
|
|
),
|
|
)
|
|
|
|
|
|
def find_slash_command(command_name: str) -> SlashCommandSpec | None:
|
|
lowered = command_name.lower()
|
|
for spec in get_slash_command_specs():
|
|
if lowered in spec.names:
|
|
return spec
|
|
return None
|
|
|
|
|
|
def _handle_help(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
lines = ['# Slash Commands', '']
|
|
for spec in get_slash_command_specs():
|
|
primary = f'/{spec.names[0]}'
|
|
aliases = ', '.join(f'/{name}' for name in spec.names[1:])
|
|
label = f'{primary} ({aliases})' if aliases else primary
|
|
lines.append(f'- `{label}`: {spec.description}')
|
|
lines.extend(
|
|
[
|
|
'',
|
|
'These commands are handled locally before the model loop, similar to the npm runtime.',
|
|
]
|
|
)
|
|
return _local_result(input_text, '\n'.join(lines))
|
|
|
|
|
|
def _handle_context(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
prompt = args or None
|
|
return _local_result(input_text, agent.render_context_report(prompt))
|
|
|
|
|
|
def _handle_context_raw(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_context_snapshot_report())
|
|
|
|
|
|
def _handle_token_budget(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_token_budget_report())
|
|
|
|
|
|
def _handle_mcp(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
command = args.strip()
|
|
if not command:
|
|
return _local_result(input_text, agent.render_mcp_report())
|
|
if command == 'tools':
|
|
return _local_result(input_text, agent.render_mcp_tools_report())
|
|
if command.startswith('tools '):
|
|
query = command.split(' ', 1)[1].strip()
|
|
return _local_result(input_text, agent.render_mcp_tools_report(query or None))
|
|
if command.startswith('tool '):
|
|
tool_name = command.split(' ', 1)[1].strip()
|
|
if not tool_name:
|
|
return _local_result(input_text, 'Usage: /mcp tool <tool-name>')
|
|
return _local_result(input_text, agent.render_mcp_call_tool_report(tool_name))
|
|
return _local_result(input_text, agent.render_mcp_report(command))
|
|
|
|
|
|
def _handle_search(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
command = args.strip()
|
|
if not command:
|
|
return _local_result(input_text, agent.render_search_report())
|
|
if command == 'providers':
|
|
return _local_result(input_text, agent.render_search_providers_report())
|
|
if command.startswith('providers '):
|
|
query = command.split(' ', 1)[1].strip()
|
|
return _local_result(input_text, agent.render_search_providers_report(query or None))
|
|
if command.startswith('provider '):
|
|
provider = command.split(' ', 1)[1].strip()
|
|
if not provider:
|
|
return _local_result(input_text, 'Usage: /search provider <name>')
|
|
return _local_result(input_text, agent.render_search_report(provider=provider))
|
|
if command.startswith('use '):
|
|
provider = command.split(' ', 1)[1].strip()
|
|
if not provider:
|
|
return _local_result(input_text, 'Usage: /search use <name>')
|
|
return _local_result(input_text, agent.render_search_activate_report(provider))
|
|
return _local_result(input_text, agent.render_search_report(command))
|
|
|
|
|
|
def _handle_remote(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
target = args or None
|
|
return _local_result(input_text, agent.render_remote_report(target))
|
|
|
|
|
|
def _handle_worktree(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
command = args.strip()
|
|
if not command:
|
|
return _local_result(input_text, agent.render_worktree_report())
|
|
if command == 'history':
|
|
return _local_result(input_text, agent.render_worktree_history_report())
|
|
if command.startswith('enter'):
|
|
name = command.split(' ', 1)[1].strip() if ' ' in command else None
|
|
return _local_result(input_text, agent.render_worktree_enter_report(name or None))
|
|
if command.startswith('exit'):
|
|
parts = command.split()
|
|
action = parts[1] if len(parts) > 1 else 'keep'
|
|
discard_changes = any(part in {'discard', 'discard_changes=true'} for part in parts[2:])
|
|
return _local_result(
|
|
input_text,
|
|
agent.render_worktree_exit_report(
|
|
action=action,
|
|
discard_changes=discard_changes,
|
|
),
|
|
)
|
|
return _local_result(
|
|
input_text,
|
|
'Usage: /worktree [history|enter <name>|exit <keep|remove> [discard]]',
|
|
)
|
|
|
|
|
|
def _handle_account(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
command = args.strip()
|
|
if not command:
|
|
return _local_result(input_text, agent.render_account_report())
|
|
if command == 'profiles':
|
|
return _local_result(input_text, agent.render_account_profiles_report())
|
|
if command.startswith('profile '):
|
|
profile = command.split(' ', 1)[1].strip()
|
|
if not profile:
|
|
return _local_result(input_text, 'Usage: /account profile <name>')
|
|
return _local_result(input_text, agent.render_account_report(profile))
|
|
return _local_result(input_text, 'Usage: /account [profiles|profile <name>]')
|
|
|
|
|
|
def _handle_ask(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
command = args.strip()
|
|
if not command:
|
|
return _local_result(input_text, agent.render_ask_user_report())
|
|
if command == 'history':
|
|
return _local_result(input_text, agent.render_ask_user_history_report())
|
|
return _local_result(input_text, 'Usage: /ask [history]')
|
|
|
|
|
|
def _handle_login(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
target = args.strip()
|
|
if not target:
|
|
return _local_result(input_text, 'Usage: /login <profile-or-identity>')
|
|
return _local_result(input_text, agent.render_account_login_report(target))
|
|
|
|
|
|
def _handle_logout(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_account_logout_report())
|
|
|
|
|
|
def _handle_config(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
command = args.strip()
|
|
if not command:
|
|
return _local_result(input_text, agent.render_config_report())
|
|
if command == 'effective':
|
|
return _local_result(input_text, agent.render_config_effective_report())
|
|
if command.startswith('source '):
|
|
source = command.split(' ', 1)[1].strip()
|
|
if not source:
|
|
return _local_result(input_text, 'Usage: /config source <source-name>')
|
|
return _local_result(input_text, agent.render_config_source_report(source))
|
|
if command.startswith('get '):
|
|
key_path = command.split(' ', 1)[1].strip()
|
|
if not key_path:
|
|
return _local_result(input_text, 'Usage: /config get <key-path>')
|
|
return _local_result(input_text, agent.render_config_value_report(key_path))
|
|
return _local_result(
|
|
input_text,
|
|
'Usage: /config [effective|source <name>|get <key-path>]',
|
|
)
|
|
|
|
|
|
def _handle_lsp(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
command = args.strip()
|
|
if not command:
|
|
return _local_result(input_text, agent.render_lsp_report())
|
|
if command == 'diagnostics':
|
|
return _local_result(input_text, agent.render_lsp_diagnostics_report())
|
|
if command.startswith('diagnostics '):
|
|
file_path = command.split(' ', 1)[1].strip()
|
|
if not file_path:
|
|
return _local_result(input_text, 'Usage: /lsp diagnostics [file-path]')
|
|
return _local_result(input_text, agent.render_lsp_diagnostics_report(file_path))
|
|
if command.startswith('symbols '):
|
|
file_path = command.split(' ', 1)[1].strip()
|
|
if not file_path:
|
|
return _local_result(input_text, 'Usage: /lsp symbols <file-path>')
|
|
return _local_result(input_text, agent.render_lsp_document_symbols_report(file_path))
|
|
if command.startswith('workspace '):
|
|
query = command.split(' ', 1)[1].strip()
|
|
if not query:
|
|
return _local_result(input_text, 'Usage: /lsp workspace <query>')
|
|
return _local_result(input_text, agent.render_lsp_workspace_symbols_report(query))
|
|
parts = command.split()
|
|
if len(parts) == 4 and parts[0] in {
|
|
'definition',
|
|
'references',
|
|
'hover',
|
|
'hierarchy',
|
|
'incoming',
|
|
'outgoing',
|
|
}:
|
|
subcommand, file_path, line_text, character_text = parts
|
|
try:
|
|
line = int(line_text)
|
|
character = int(character_text)
|
|
except ValueError:
|
|
return _local_result(
|
|
input_text,
|
|
f'Usage: /lsp {subcommand} <file-path> <line> <character>',
|
|
)
|
|
if subcommand == 'definition':
|
|
return _local_result(
|
|
input_text,
|
|
agent.render_lsp_definition_report(file_path, line, character),
|
|
)
|
|
if subcommand == 'references':
|
|
return _local_result(
|
|
input_text,
|
|
agent.render_lsp_references_report(file_path, line, character),
|
|
)
|
|
if subcommand == 'hover':
|
|
return _local_result(
|
|
input_text,
|
|
agent.render_lsp_hover_report(file_path, line, character),
|
|
)
|
|
if subcommand == 'hierarchy':
|
|
return _local_result(
|
|
input_text,
|
|
agent.render_lsp_prepare_call_hierarchy_report(file_path, line, character),
|
|
)
|
|
if subcommand == 'incoming':
|
|
return _local_result(
|
|
input_text,
|
|
agent.render_lsp_incoming_calls_report(file_path, line, character),
|
|
)
|
|
if subcommand == 'outgoing':
|
|
return _local_result(
|
|
input_text,
|
|
agent.render_lsp_outgoing_calls_report(file_path, line, character),
|
|
)
|
|
return _local_result(
|
|
input_text,
|
|
'Usage: /lsp [symbols <file>|workspace <query>|definition <file> <line> <character>|references <file> <line> <character>|hover <file> <line> <character>|hierarchy <file> <line> <character>|incoming <file> <line> <character>|outgoing <file> <line> <character>|diagnostics [file]]',
|
|
)
|
|
|
|
|
|
def _handle_remotes(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
query = args or None
|
|
return _local_result(input_text, agent.render_remote_profiles_report(query))
|
|
|
|
|
|
def _handle_ssh(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
if not args:
|
|
return _local_result(input_text, 'Usage: /ssh <target-or-profile>')
|
|
return _local_result(input_text, agent.render_remote_mode_report(args, mode='ssh'))
|
|
|
|
|
|
def _handle_teleport(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
if not args:
|
|
return _local_result(input_text, 'Usage: /teleport <target-or-profile>')
|
|
return _local_result(input_text, agent.render_remote_mode_report(args, mode='teleport'))
|
|
|
|
|
|
def _handle_direct_connect(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
if not args:
|
|
return _local_result(input_text, 'Usage: /direct-connect <target-or-profile>')
|
|
return _local_result(input_text, agent.render_remote_mode_report(args, mode='direct-connect'))
|
|
|
|
|
|
def _handle_deep_link(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
if not args:
|
|
return _local_result(input_text, 'Usage: /deep-link <target-or-profile>')
|
|
return _local_result(input_text, agent.render_remote_mode_report(args, mode='deep-link'))
|
|
|
|
|
|
def _handle_remote_disconnect(
|
|
agent: 'LocalCodingAgent',
|
|
_args: str,
|
|
input_text: str,
|
|
) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_remote_disconnect_report())
|
|
|
|
|
|
def _handle_resources(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
query = args or None
|
|
return _local_result(input_text, agent.render_mcp_resources_report(query))
|
|
|
|
|
|
def _handle_resource(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
if not args:
|
|
return _local_result(input_text, 'Usage: /resource <mcp-resource-uri>')
|
|
return _local_result(input_text, agent.render_mcp_resource_report(args))
|
|
|
|
|
|
def _handle_tasks(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
status = args or None
|
|
return _local_result(input_text, agent.render_tasks_report(status))
|
|
|
|
|
|
def _handle_workflows(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
query = args or None
|
|
return _local_result(input_text, agent.render_workflows_report(query))
|
|
|
|
|
|
def _handle_workflow(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
command = args.strip()
|
|
if not command:
|
|
return _local_result(input_text, 'Usage: /workflow <name> | /workflow run <name>')
|
|
if command.startswith('run '):
|
|
workflow_name = command.split(' ', 1)[1].strip()
|
|
if not workflow_name:
|
|
return _local_result(input_text, 'Usage: /workflow run <name>')
|
|
return _local_result(input_text, agent.render_workflow_run_report(workflow_name))
|
|
return _local_result(input_text, agent.render_workflow_report(command))
|
|
|
|
|
|
def _handle_triggers(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
query = args or None
|
|
return _local_result(input_text, agent.render_remote_triggers_report(query))
|
|
|
|
|
|
def _handle_trigger(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
command = args.strip()
|
|
if not command:
|
|
return _local_result(input_text, 'Usage: /trigger <id> | /trigger run <id>')
|
|
if command.startswith('run '):
|
|
trigger_id = command.split(' ', 1)[1].strip()
|
|
if not trigger_id:
|
|
return _local_result(input_text, 'Usage: /trigger run <id>')
|
|
return _local_result(
|
|
input_text,
|
|
agent.render_remote_trigger_action_report('run', trigger_id=trigger_id),
|
|
)
|
|
return _local_result(input_text, agent.render_remote_trigger_report(command))
|
|
|
|
|
|
def _handle_teams(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
query = args or None
|
|
return _local_result(input_text, agent.render_teams_report(query))
|
|
|
|
|
|
def _handle_team(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
team_name = args.strip()
|
|
if not team_name:
|
|
return _local_result(input_text, 'Usage: /team <team-name>')
|
|
return _local_result(input_text, agent.render_team_report(team_name))
|
|
|
|
|
|
def _handle_messages(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
team_name = args.strip() or None
|
|
return _local_result(input_text, agent.render_team_messages_report(team_name))
|
|
|
|
|
|
def _handle_task_next(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_next_tasks_report())
|
|
|
|
|
|
def _handle_plan(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_plan_report())
|
|
|
|
|
|
def _handle_task(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
if not args:
|
|
return _local_result(input_text, 'Usage: /task <task-id>')
|
|
return _local_result(input_text, agent.render_task_report(args))
|
|
|
|
|
|
def _handle_prompt(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_system_prompt())
|
|
|
|
|
|
def _handle_permissions(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_permissions_report())
|
|
|
|
|
|
def _handle_hooks(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_hook_policy_report())
|
|
|
|
|
|
def _handle_trust(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_trust_report())
|
|
|
|
|
|
def _handle_model(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
if not args:
|
|
return _local_result(input_text, f'Current model: {agent.model_config.model}')
|
|
agent.set_model(args)
|
|
return _local_result(input_text, f'Set model to {agent.model_config.model}')
|
|
|
|
|
|
def _handle_tools(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_tools_report())
|
|
|
|
|
|
def _handle_memory(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_memory_report())
|
|
|
|
|
|
def _handle_status(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
return _local_result(input_text, agent.render_status_report())
|
|
|
|
|
|
def _handle_clear(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
agent.clear_runtime_state()
|
|
return _local_result(
|
|
input_text,
|
|
'Cleared ephemeral Python agent state for this process.',
|
|
)
|
|
|
|
|
|
def _handle_compact(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
from .compact import compact_conversation
|
|
|
|
custom_instructions = args.strip() if args.strip() else None
|
|
result = compact_conversation(agent, custom_instructions)
|
|
|
|
if result.error:
|
|
return _local_result(input_text, f'Compact failed: {result.error}')
|
|
|
|
lines = ['Conversation compacted.']
|
|
if result.pre_compact_token_count:
|
|
lines.append(
|
|
f' Tokens before: ~{result.pre_compact_token_count:,} '
|
|
f'→ after: ~{result.post_compact_token_count:,}'
|
|
)
|
|
return _local_result(input_text, '\n'.join(lines))
|
|
|
|
|
|
def _handle_cost(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
usage = agent.cumulative_usage
|
|
cost = agent.cumulative_cost_usd
|
|
|
|
def _fmt_cost(usd: float) -> str:
|
|
if usd < 0.01:
|
|
return f'${usd:.4f}'
|
|
return f'${usd:.2f}'
|
|
|
|
lines = [
|
|
f'Total cost: {_fmt_cost(cost)}',
|
|
f'Total input tokens: {usage.input_tokens:,}',
|
|
f'Total output tokens: {usage.output_tokens:,}',
|
|
]
|
|
if usage.cache_read_input_tokens:
|
|
lines.append(f'Cache read tokens: {usage.cache_read_input_tokens:,}')
|
|
if usage.cache_creation_input_tokens:
|
|
lines.append(f'Cache creation tokens: {usage.cache_creation_input_tokens:,}')
|
|
if usage.reasoning_tokens:
|
|
lines.append(f'Reasoning tokens: {usage.reasoning_tokens:,}')
|
|
lines.append(f'Total tokens: {usage.total_tokens:,}')
|
|
return _local_result(input_text, '\n'.join(lines))
|
|
|
|
|
|
def _handle_exit(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
import random
|
|
import sys
|
|
|
|
messages = ['Goodbye!', 'See ya!', 'Bye!', 'Catch you later!']
|
|
output = random.choice(messages)
|
|
# Build the result first so the transcript is recorded, then exit.
|
|
result = _local_result(input_text, output)
|
|
print(output)
|
|
sys.exit(0)
|
|
return result # unreachable, but satisfies the type checker
|
|
|
|
|
|
def _handle_diff(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
import subprocess
|
|
|
|
cwd = str(agent.runtime_config.cwd)
|
|
try:
|
|
proc = subprocess.run(
|
|
['git', 'diff'],
|
|
cwd=cwd,
|
|
capture_output=True,
|
|
text=True,
|
|
timeout=15,
|
|
)
|
|
diff_output = proc.stdout.strip()
|
|
if not diff_output:
|
|
# Also check staged changes
|
|
proc_staged = subprocess.run(
|
|
['git', 'diff', '--staged'],
|
|
cwd=cwd,
|
|
capture_output=True,
|
|
text=True,
|
|
timeout=15,
|
|
)
|
|
diff_output = proc_staged.stdout.strip()
|
|
if not diff_output:
|
|
return _local_result(input_text, 'No uncommitted changes.')
|
|
return _local_result(input_text, f'Staged changes:\n{diff_output}')
|
|
return _local_result(input_text, diff_output)
|
|
except FileNotFoundError:
|
|
return _local_result(input_text, 'git is not available.')
|
|
except subprocess.TimeoutExpired:
|
|
return _local_result(input_text, 'git diff timed out.')
|
|
except Exception as exc:
|
|
return _local_result(input_text, f'Error running git diff: {exc}')
|
|
|
|
|
|
def _handle_files(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
"""List files loaded in the session context (from readFileState)."""
|
|
session = agent.last_session
|
|
if session is None:
|
|
return _local_result(input_text, 'No active session.')
|
|
|
|
# Collect file paths mentioned in tool results
|
|
file_paths: list[str] = []
|
|
for msg in session.messages:
|
|
if msg.role == 'tool' and msg.name in ('Read', 'read_file', 'ReadFile'):
|
|
# Extract path from content or metadata
|
|
path = msg.metadata.get('path')
|
|
if isinstance(path, str):
|
|
file_paths.append(path)
|
|
elif msg.content and msg.content.startswith('/'):
|
|
# First line might be the path
|
|
first_line = msg.content.split('\n', 1)[0].strip()
|
|
if '/' in first_line and len(first_line) < 256:
|
|
file_paths.append(first_line)
|
|
|
|
# Also look at tool_calls in assistant messages
|
|
for msg in session.messages:
|
|
if msg.role == 'assistant' and msg.tool_calls:
|
|
for tc in msg.tool_calls:
|
|
func = tc.get('function', {}) if isinstance(tc, dict) else {}
|
|
if func.get('name') in ('Read', 'read_file', 'ReadFile', 'View'):
|
|
import json as _json
|
|
try:
|
|
args = _json.loads(func.get('arguments', '{}'))
|
|
path = args.get('file_path') or args.get('path')
|
|
if isinstance(path, str):
|
|
file_paths.append(path)
|
|
except (ValueError, TypeError):
|
|
pass
|
|
|
|
# Deduplicate preserving order
|
|
seen: set[str] = set()
|
|
unique_paths: list[str] = []
|
|
for p in file_paths:
|
|
if p not in seen:
|
|
seen.add(p)
|
|
unique_paths.append(p)
|
|
|
|
if not unique_paths:
|
|
return _local_result(input_text, 'No files loaded in context.')
|
|
|
|
cwd = str(agent.runtime_config.cwd)
|
|
relative_paths = []
|
|
for p in unique_paths:
|
|
if p.startswith(cwd):
|
|
relative_paths.append(p[len(cwd):].lstrip('/'))
|
|
else:
|
|
relative_paths.append(p)
|
|
|
|
lines = [f'Files in context ({len(relative_paths)}):']
|
|
for p in relative_paths:
|
|
lines.append(f' {p}')
|
|
return _local_result(input_text, '\n'.join(lines))
|
|
|
|
|
|
def _handle_copy(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
"""Copy the last assistant response to a temp file."""
|
|
import tempfile as _tempfile
|
|
|
|
session = agent.last_session
|
|
if session is None:
|
|
return _local_result(input_text, 'No active session.')
|
|
|
|
# Find the Nth most recent assistant message (default N=0 = latest)
|
|
n = 0
|
|
if args.strip().isdigit():
|
|
n = min(int(args.strip()), 20)
|
|
|
|
assistant_messages = [
|
|
msg for msg in session.messages
|
|
if msg.role == 'assistant' and msg.content.strip()
|
|
]
|
|
if not assistant_messages:
|
|
return _local_result(input_text, 'No assistant responses to copy.')
|
|
|
|
index = len(assistant_messages) - 1 - n
|
|
if index < 0:
|
|
return _local_result(
|
|
input_text,
|
|
f'Only {len(assistant_messages)} assistant responses available.',
|
|
)
|
|
|
|
content = assistant_messages[index].content
|
|
|
|
# Write to temp file
|
|
from pathlib import Path as _Path
|
|
tmp_dir = _Path(_tempfile.gettempdir()) / 'claw-code'
|
|
tmp_dir.mkdir(parents=True, exist_ok=True)
|
|
out_path = tmp_dir / 'response.md'
|
|
out_path.write_text(content, encoding='utf-8')
|
|
|
|
char_count = len(content)
|
|
line_count = content.count('\n') + 1
|
|
return _local_result(
|
|
input_text,
|
|
f'Copied {char_count:,} chars ({line_count} lines) to {out_path}',
|
|
)
|
|
|
|
|
|
def _handle_export(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
"""Export the conversation transcript to a text file."""
|
|
from pathlib import Path as _Path
|
|
import time as _time
|
|
|
|
session = agent.last_session
|
|
if session is None:
|
|
return _local_result(input_text, 'No active session to export.')
|
|
|
|
# Build plain-text transcript
|
|
lines: list[str] = []
|
|
for msg in session.messages:
|
|
label = msg.role.upper()
|
|
if msg.role == 'tool' and msg.name:
|
|
label = f'TOOL:{msg.name}'
|
|
lines.append(f'--- {label} ---')
|
|
lines.append(msg.content)
|
|
lines.append('')
|
|
text = '\n'.join(lines)
|
|
|
|
# Determine output path
|
|
filename = args.strip()
|
|
if not filename:
|
|
timestamp = _time.strftime('%Y%m%d_%H%M%S')
|
|
filename = f'conversation_{timestamp}.txt'
|
|
if not filename.endswith('.txt'):
|
|
filename += '.txt'
|
|
|
|
out_path = _Path(str(agent.runtime_config.cwd)) / filename
|
|
out_path.write_text(text, encoding='utf-8')
|
|
return _local_result(
|
|
input_text,
|
|
f'Exported {len(session.messages)} messages to {out_path}',
|
|
)
|
|
|
|
|
|
def _handle_stats(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
"""Show session usage statistics."""
|
|
usage = agent.cumulative_usage
|
|
cost = agent.cumulative_cost_usd
|
|
|
|
session = agent.last_session
|
|
msg_count = len(session.messages) if session else 0
|
|
user_msgs = sum(1 for m in (session.messages if session else []) if m.role == 'user')
|
|
assistant_msgs = sum(1 for m in (session.messages if session else []) if m.role == 'assistant')
|
|
tool_msgs = sum(1 for m in (session.messages if session else []) if m.role == 'tool')
|
|
|
|
lines = [
|
|
'## Session Statistics',
|
|
'',
|
|
f'Messages: {msg_count} total ({user_msgs} user, {assistant_msgs} assistant, {tool_msgs} tool)',
|
|
f'Input tokens: {usage.input_tokens:,}',
|
|
f'Output tokens: {usage.output_tokens:,}',
|
|
f'Total tokens: {usage.total_tokens:,}',
|
|
f'Cost: ${cost:.4f}',
|
|
f'Model: {agent.model_config.model}',
|
|
]
|
|
if agent.active_session_id:
|
|
lines.append(f'Session ID: {agent.active_session_id}')
|
|
return _local_result(input_text, '\n'.join(lines))
|
|
|
|
|
|
def _handle_tag(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
"""Add or remove a tag on the current session."""
|
|
tag = args.strip()
|
|
if not tag:
|
|
# Show current tags
|
|
tags = getattr(agent, '_session_tags', set())
|
|
if tags:
|
|
return _local_result(input_text, f'Session tags: {", ".join(sorted(tags))}')
|
|
return _local_result(input_text, 'No tags set. Usage: /tag <tag-name>')
|
|
|
|
# Toggle tag
|
|
if not hasattr(agent, '_session_tags'):
|
|
agent._session_tags = set()
|
|
|
|
if tag in agent._session_tags:
|
|
agent._session_tags.discard(tag)
|
|
return _local_result(input_text, f'Removed tag: {tag}')
|
|
agent._session_tags.add(tag)
|
|
return _local_result(input_text, f'Added tag: {tag}')
|
|
|
|
|
|
def _handle_rename(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
"""Rename the current conversation."""
|
|
name = args.strip()
|
|
if not name:
|
|
return _local_result(input_text, 'Usage: /rename <name>')
|
|
|
|
if not hasattr(agent, '_session_name'):
|
|
agent._session_name = None
|
|
agent._session_name = name
|
|
return _local_result(input_text, f'Session renamed to: {name}')
|
|
|
|
|
|
def _handle_branch(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
"""Create a fork/branch of the current conversation."""
|
|
import json as _json
|
|
from uuid import uuid4
|
|
|
|
session = agent.last_session
|
|
if session is None:
|
|
return _local_result(input_text, 'No active session to branch.')
|
|
|
|
branch_name = args.strip() or f'branch-{uuid4().hex[:8]}'
|
|
new_session_id = uuid4().hex
|
|
|
|
# Save a copy of the current transcript as a new session file
|
|
session_dir = agent.runtime_config.session_directory
|
|
session_dir.mkdir(parents=True, exist_ok=True)
|
|
session_path = session_dir / f'{new_session_id}.json'
|
|
|
|
transcript = [msg.to_transcript_entry() for msg in session.messages]
|
|
branch_data = {
|
|
'session_id': new_session_id,
|
|
'branch_name': branch_name,
|
|
'branched_from': agent.active_session_id,
|
|
'messages': transcript,
|
|
'model': agent.model_config.model,
|
|
}
|
|
|
|
try:
|
|
session_path.write_text(_json.dumps(branch_data, indent=2), encoding='utf-8')
|
|
return _local_result(
|
|
input_text,
|
|
f'Created branch "{branch_name}" (session: {new_session_id})\n'
|
|
f'Saved to: {session_path}',
|
|
)
|
|
except Exception as exc:
|
|
return _local_result(input_text, f'Error creating branch: {exc}')
|
|
|
|
|
|
def _handle_effort(agent: 'LocalCodingAgent', args: str, input_text: str) -> SlashCommandResult:
|
|
"""Show or set the model effort level."""
|
|
import os
|
|
|
|
valid_levels = ('low', 'medium', 'high', 'max', 'auto')
|
|
current = getattr(agent.runtime_config, 'effort_level', None)
|
|
env_override = os.environ.get('CLAUDE_CODE_EFFORT_LEVEL')
|
|
|
|
if not args.strip():
|
|
level = current or env_override or 'auto'
|
|
msg = f'Current effort level: {level}'
|
|
if env_override:
|
|
msg += f' (from CLAUDE_CODE_EFFORT_LEVEL env var)'
|
|
return _local_result(input_text, msg)
|
|
|
|
level = args.strip().lower()
|
|
if level not in valid_levels:
|
|
return _local_result(
|
|
input_text,
|
|
f'Invalid effort level: {level}\nValid levels: {", ".join(valid_levels)}',
|
|
)
|
|
|
|
if env_override:
|
|
return _local_result(
|
|
input_text,
|
|
f'Cannot change effort level — overridden by '
|
|
f'CLAUDE_CODE_EFFORT_LEVEL={env_override}',
|
|
)
|
|
|
|
# Store effort level on the runtime config
|
|
object.__setattr__(agent.runtime_config, 'effort_level', level)
|
|
return _local_result(input_text, f'Set effort level to: {level}')
|
|
|
|
|
|
def _handle_doctor(agent: 'LocalCodingAgent', _args: str, input_text: str) -> SlashCommandResult:
|
|
"""Diagnose and verify the claw-code installation."""
|
|
import os
|
|
import shutil
|
|
import sys
|
|
from pathlib import Path as _Path
|
|
|
|
checks: list[str] = []
|
|
|
|
# Python version
|
|
py_ver = f'{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}'
|
|
ok = sys.version_info >= (3, 10)
|
|
checks.append(f'{"✓" if ok else "✗"} Python version: {py_ver} (need ≥3.10)')
|
|
|
|
# Git available
|
|
git_ok = shutil.which('git') is not None
|
|
checks.append(f'{"✓" if git_ok else "✗"} git: {"found" if git_ok else "NOT FOUND"}')
|
|
|
|
# Model config
|
|
checks.append(f'✓ Model: {agent.model_config.model}')
|
|
checks.append(f'✓ Base URL: {agent.model_config.base_url}')
|
|
|
|
# Working directory
|
|
cwd = agent.runtime_config.cwd
|
|
checks.append(f'✓ Working directory: {cwd}')
|
|
checks.append(f'{"✓" if cwd.exists() else "✗"} Working directory exists: {cwd.exists()}')
|
|
|
|
# Session directory
|
|
sess_dir = agent.runtime_config.session_directory
|
|
checks.append(f'✓ Session directory: {sess_dir}')
|
|
checks.append(f'{"✓" if sess_dir.exists() else "○"} Session directory exists: {sess_dir.exists()}')
|
|
|
|
# API key
|
|
has_key = bool(agent.model_config.api_key)
|
|
checks.append(f'{"✓" if has_key else "✗"} API key: {"set" if has_key else "NOT SET"}')
|
|
|
|
# Tools
|
|
tool_count = len(agent.tool_registry) if agent.tool_registry else 0
|
|
checks.append(f'✓ Registered tools: {tool_count}')
|
|
|
|
# Memory files (CLAUDE.md)
|
|
claude_md = cwd / 'CLAUDE.md'
|
|
checks.append(
|
|
f'{"✓" if claude_md.exists() else "○"} CLAUDE.md: '
|
|
f'{"found" if claude_md.exists() else "not found (optional)"}'
|
|
)
|
|
|
|
output = '## Doctor Report\n\n' + '\n'.join(checks)
|
|
return _local_result(input_text, output)
|
|
|
|
|
|
def _local_result(input_text: str, output: str) -> SlashCommandResult:
|
|
transcript = (
|
|
{'role': 'user', 'content': input_text},
|
|
{'role': 'assistant', 'content': output},
|
|
)
|
|
return SlashCommandResult(
|
|
handled=True,
|
|
should_query=False,
|
|
output=output,
|
|
transcript=transcript,
|
|
)
|