Spaces:
Build error
Build error
File size: 8,645 Bytes
c14b9ac 297230c c14b9ac 297230c c14b9ac 297230c c14b9ac 297230c c14b9ac 297230c c14b9ac 62d80bc c14b9ac 297230c 62d80bc c14b9ac 62d80bc c14b9ac 297230c 62d80bc 297230c c14b9ac 62d80bc 297230c 62d80bc 297230c c14b9ac 62d80bc c14b9ac 62d80bc 297230c c14b9ac 297230c c14b9ac 297230c c14b9ac 297230c 37c815b c14b9ac 297230c c14b9ac 37c815b c14b9ac 297230c 37c815b 297230c 62d80bc 297230c 62d80bc 297230c 62d80bc 297230c 62d80bc 297230c 62d80bc 297230c 37c815b 297230c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | """CLI commands for Headroom Learn — offline failure learning."""
from __future__ import annotations
from pathlib import Path
from typing import TYPE_CHECKING
import click
if TYPE_CHECKING:
from ..learn.scanner import ConversationScanner
from ..learn.writer import ContextWriter
from .main import main
_AGENT_HELP = """Which coding agent to analyze. Auto-detects by default.
\b
Supported agents:
claude Claude Code (~/.claude/)
codex OpenAI Codex CLI (~/.codex/)
gemini Google Gemini CLI (~/.gemini/)
auto Auto-detect (check all, default)
"""
def _get_scanner_writer(agent: str) -> tuple[ConversationScanner, ContextWriter]:
"""Get the appropriate scanner and writer for an agent type."""
from ..learn.scanner import ClaudeCodeScanner, CodexScanner
from ..learn.writer import ClaudeCodeWriter, CodexWriter
scanners = {
"claude": (ClaudeCodeScanner, ClaudeCodeWriter),
"codex": (CodexScanner, CodexWriter),
# Gemini scanner not yet implemented (protobuf sessions)
# Cursor scanner not yet implemented (SQLite blobs)
}
if agent in scanners:
scanner_cls, writer_cls = scanners[agent]
return scanner_cls(), writer_cls()
raise click.BadParameter(f"Unknown agent: {agent}. Supported: claude, codex")
def _auto_detect_agents() -> list[tuple[str, ConversationScanner, ContextWriter]]:
"""Auto-detect which agents have data on this machine."""
from ..learn.scanner import ClaudeCodeScanner, CodexScanner
from ..learn.writer import ClaudeCodeWriter, CodexWriter
agents: list[tuple[str, ConversationScanner, ContextWriter]] = []
# Claude Code
claude_dir = Path.home() / ".claude" / "projects"
if claude_dir.exists() and any(claude_dir.iterdir()):
agents.append(("claude", ClaudeCodeScanner(), ClaudeCodeWriter()))
# Codex
codex_dir = Path.home() / ".codex" / "sessions"
if codex_dir.exists() and any(codex_dir.glob("*.json")):
agents.append(("codex", CodexScanner(), CodexWriter()))
return agents
@main.command()
@click.option(
"--project",
type=click.Path(exists=True, path_type=Path),
default=None,
help="Project directory to analyze. Defaults to current directory.",
)
@click.option(
"--all",
"analyze_all",
is_flag=True,
default=False,
help="Analyze all discovered projects.",
)
@click.option(
"--apply",
is_flag=True,
default=False,
help="Write recommendations to context/memory files (default: dry-run).",
)
@click.option(
"--agent",
type=click.Choice(["auto", "claude", "codex", "gemini"], case_sensitive=False),
default="auto",
help=_AGENT_HELP,
)
@click.option(
"--model",
type=str,
default=None,
help="LLM model for analysis (e.g., claude-sonnet-4-6, gpt-4o, gemini/gemini-2.0-flash). "
"Auto-detected from API keys if not specified.",
)
def learn(
project: Path | None,
analyze_all: bool,
apply: bool,
agent: str,
model: str | None,
) -> None:
"""Learn from past tool call failures to prevent future ones.
Analyzes conversation history using an LLM to find failure patterns
(wrong paths, missing modules, stubborn retries) and generates context
that prevents them from recurring.
Supports multiple coding agents: Claude Code, Codex, Gemini CLI.
Uses LiteLLM for provider-agnostic LLM access (100+ models).
\b
Examples:
headroom learn # Auto-detect agent & model
headroom learn --apply # Write recommendations
headroom learn --model gpt-4o # Use GPT-4o for analysis
headroom learn --all # Analyze all projects
headroom learn --agent codex --all # Analyze all Codex sessions
"""
from ..learn.analyzer import SessionAnalyzer, _detect_default_model
# Resolve model early to fail fast with a clear message
try:
resolved_model = model or _detect_default_model()
except RuntimeError as e:
click.echo(f"Error: {e}")
raise SystemExit(1) from None
analyzer = SessionAnalyzer(model=resolved_model)
# Determine which agents to scan
if agent == "auto":
agent_configs = _auto_detect_agents()
if not agent_configs:
click.echo("No coding agent data found. Checked: ~/.claude/, ~/.codex/")
return
click.echo(f"Detected agents: {', '.join(name for name, _, _ in agent_configs)}")
else:
scanner, writer = _get_scanner_writer(agent)
agent_configs = [(agent, scanner, writer)]
total_projects = 0
total_failures = 0
total_recommendations = 0
matched_projects = 0
available_projects: list[tuple[str, Path]] = []
for agent_name, scanner, writer in agent_configs:
all_projects = scanner.discover_projects()
if not all_projects:
continue
available_projects.extend((agent_name, p.project_path) for p in all_projects)
# Filter to target project(s)
if analyze_all:
targets = all_projects
elif project:
resolved = project.resolve()
targets = [p for p in all_projects if p.project_path == resolved]
if not targets:
continue
else:
cwd = Path.cwd().resolve()
targets = [p for p in all_projects if p.project_path == cwd]
if not targets:
for parent in cwd.parents:
targets = [p for p in all_projects if p.project_path == parent]
if targets:
break
if not targets and len(agent_configs) == 1:
click.echo(f"No {agent_name} project data found for {cwd}")
click.echo("Try: headroom learn --all or headroom learn --project <path>")
click.echo(f"\nAvailable {agent_name} projects:")
for p in all_projects[:10]:
click.echo(f" {p.name:30s} {p.project_path}")
return
for proj in targets:
matched_projects += 1
click.echo(f"\n{'=' * 60}")
click.echo(f"[{agent_name}] {proj.name}")
click.echo(f"Path: {proj.project_path}")
click.echo(f"{'=' * 60}")
sessions = scanner.scan_project(proj)
if not sessions:
click.echo(" No conversation data found.")
continue
click.echo(f" Analyzing with {resolved_model}...")
result_data = analyzer.analyze(proj, sessions)
total_projects += 1
total_failures += result_data.total_failures
click.echo(
f"\n Sessions: {result_data.total_sessions} | "
f"Calls: {result_data.total_calls} | "
f"Failures: {result_data.total_failures} ({result_data.failure_rate:.1%})"
)
if result_data.failure_rate == 0 and not result_data.recommendations:
click.echo(" No failures or patterns found.")
continue
recommendations = result_data.recommendations
if not recommendations:
click.echo(" No actionable patterns found.")
continue
total_recommendations += len(recommendations)
click.echo(f" Recommendations: {len(recommendations)}")
result = writer.write(recommendations, proj, dry_run=not apply)
for file_path, content in result.content_by_file.items():
click.echo(f"\n {'[WOULD WRITE]' if result.dry_run else '[WROTE]'} {file_path}")
click.echo(f" {'─' * 50}")
for line in content.split("\n"):
if line.startswith("<!-- headroom"):
continue
click.echo(f" {line}")
click.echo(f" {'─' * 50}")
if result.dry_run:
click.echo("\n Dry run — use --apply to write.")
if project and matched_projects == 0:
click.echo(f"No project data found for {project.resolve()}")
if available_projects:
click.echo("\nAvailable discovered projects:")
for agent_name, project_path in available_projects[:10]:
click.echo(f" [{agent_name}] {project_path}")
return
# Summary
if total_projects > 1:
click.echo(f"\n{'=' * 60}")
click.echo(
f"Total: {total_projects} projects, {total_failures} failures, "
f"{total_recommendations} recommendations"
)
|