17 Commits
Author SHA1 Message Date
kimandClaude Sonnet 5 13e6540cdf chore: allow esbuild@0.28.1 install script, note dep constraints
tsx 4.23.13 pulls its own esbuild 0.28.1; allowScripts only listed
0.27.2 (tsup/vite), so npm warned about the blocked postinstall. Also
records the marked<16 / typescript-7 / wrap-ansi-10 constraints in the
memo so a future upgrade pass doesn't have to rediscover them.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-10 15:31:50 +09:00
kimandClaude Sonnet 5 870c30164b chore: upgrade typescript 5.9 -> 7 (native compiler)
tsc --noEmit passes with zero errors and runs noticeably faster. The
project only uses the tsc CLI for typechecking (no programmatic
typescript API imports); tsup/esbuild drives the build and is
unaffected. The native port pulls per-platform @typescript/typescript-*
binaries as optional deps, like esbuild already does.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-10 15:27:44 +09:00
kimandClaude Sonnet 5 997f2c523e chore: upgrade vitest 4 -> 5
Dev-only. Config (globals/environment/include) and the vi.* API surface
used by the suite are unchanged; all 45 files / 366 tests pass. Node 24
satisfies vitest 5's engine range.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-10 15:24:48 +09:00
kimandClaude Sonnet 5 a24bc16513 chore: bump wrap-ansi to 10, plus safe minor dependency updates
- wrap-ansi 7 -> 10: matches the copy Ink already installs (shared
  string-width v8 width math) and ships its own types, so the ambient
  src/wrap-ansi.d.ts shim is gone.
- openai 7.5 -> 7.13, react/@types/react 19.2 -> 19.3, zod 4.4 -> 4.6,
  @types/node 26.2 -> 26.5, tsx + vscode-* patch bumps.

marked stays at 15 (marked-terminal@7.3 peer-caps it at <16). typescript
and vitest majors left for separate, tested upgrades.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-10 15:17:13 +09:00
kimandClaude Sonnet 5 c36b45e9d5 fix: hard-wrap history output to terminal width
Lines wider than the terminal (wide markdown tables, long code lines) were
soft-wrapped by the terminal but counted as one row by Ink's <Static> redraw,
desyncing its cursor math and stranding duplicate copies of the status bar and
input box in scrollback on every re-render.

renderMarkdown now wraps its output to the caller's width via wrap-ansi, and
every <Static> item (plus the live streaming line) is held within a
width-bounded Box so nothing the terminal would soft-wrap reaches Ink.

Also sets cli-table3 header color to yellow (red-on-blue themes made table
headers unreadable).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-10 14:34:47 +09:00
kim 09cd992aa6 feat: normal screen architecture, burn rate by model time, dependency upgrades
Major changes:

- Replace alternate screen buffer + app-side mouse tracking/virtual scroll
  with normal screen buffer + Ink <Static> for permanent scrollback.
  Terminal's native scroll/selection/copy just works — no mouseInput.ts needed.
- Fix burn rate (🔥) to use model response time (modelTimeMs) instead of
  session elapsed time, so it reflects actual generation throughput.
- Upgrade dependencies: openai 6→7, commander 13→15, execa 9→10, vitest 3→4,
  node types 22→26, tsup target node20→node22.
- Update upgrade memo with current architecture, all completed upgrades,
  and working tree status.
2026-08-24 12:44:08 +09:00
kim cb950891d5 feat: LSP code intelligence + parallel sub-agent mutation gate
Code intelligence (LSP):
- src/codeintel/lspManager.ts: lazy per-language LSP server lifecycle
  (tsserver/pyright/gopls/clangd/rust-analyzer), didOpen/didChange sync,
  definition/references/diagnostics, notifyFileChanged, shutdownAll.
  Fix stream typing (StreamMessageReader/Writer) + MarkupContent→string.
- src/tools/codeIntel.ts: definition/references/diagnostics read-only tools.
- tools/index.ts: register the three LSP tools.
- agent/loop.ts: wire notifyFileChanged into the FileChanged hook path
  (fire-and-forget, best-effort) so live servers stay in sync with disk.
- ui/ink/index.tsx: shutdownAll on exit so spawned servers aren't orphaned.

Parallel sub-agent orchestration:
- agent/session.ts: session.mutationGate promise chain serializes every
  mutating tool call across the session (incl. parallel sub-agents that
  share the parent session) so they can't race on the single permission
  slot or interleave filesystem writes. Read-only tools stay concurrent.
- agent/loop.ts: runUnderMutationGate wraps mutating tool execution;
  sub-agents inherit the parent's gate.
- tools/agentTool.ts: `tasks` array runs N sub-agents in parallel; one
  failure surfaces as that task's error, not a rejected batch.
- tools/types.ts: SubAgentResult type.

Other:
- cli.ts + mcp/client.ts: read version from package.json instead of
  hardcoding "0.3.1".
- agent/parallelAgents.test.ts: parallel batch + mutation-gate tests.
- Remove scratch guardtest2.mjs.

Verified: typecheck clean, build 245.85 KB, 219 tests pass.
2026-08-21 13:22:34 +09:00
kim 6fe98887d5 v0.6.0: complete all 12 local-model upgrades + raise maxIterations to 100
Upgrade candidates (all 12 done):
- #1 parallel read-only tool execution (runToolBatch, 4 loop sites)
- #2 configurable retry policy (maxRetries + exponential backoff via SDK)
- #3 script-aware token estimation (CJK/symbol/structure-aware heuristic)
- #4 head+tail output capping (truncate.ts), auto-applies to bash/git/etc
- #5 partial-history compaction (preserve recent tail, summarize older prefix)
- #6 dynamic max_tokens (resolveMaxTokens)
- #7 richer tool descriptions with "use when" guidance
- #8 MCP reconnect retry + /mcp reconnect command + session toolset refresh
- #9 context-window cache TTL (cachedAt timestamp, default 7 days)
- #10 edit_file similar-match suggestion on old_string miss (bounded Levenshtein)
- #11 git_status output head+tail (resolved via #4)
- #12 auto-accept now approves all mutating tools; auto-edit stays edit-only

Other:
- DEFAULT_MAX_ITERATIONS 50 -> 100 (local models issue one tool call per step)
- MaxIterationsError message guides resume + config override
- plus prior known-issues work (grep -e/--, session id sanitization, MCP content
  types, 12 hook events, plugin collisions, skill references, git ops expansion,
  configurable autoCompactThreshold, bashGuard, pathGuard, FilePanel, replay)
2026-08-20 16:52:03 +09:00
kimandClaude Sonnet 5 6677ac1e9e v0.5.2: full-screen alt-screen mode with a scrollable, bottom-pinned layout
- Switch to the terminal's alternate screen buffer once a session starts,
  clearing and homing the cursor so content starts flush at (0,0)
- Replace <Static> scrollback with a fixed-height viewport (overflowY hidden)
  that top-aligns short conversations and auto-scrolls to the latest message
  once content exceeds the screen, keeping the input pinned to the bottom
- Rewrite ChatInput's cursor handling: track cursor offset directly instead of
  relying on ink-text-input, and report the real terminal cursor position via
  useCursor + a Yoga-tree walk (absolutePosition.ts) so CJK IME composition
  windows anchor at the actual caret instead of the terminal's fallback corner
- Print a "resume this conversation" hint after leaving the alt screen on exit

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-13 18:16:51 +09:00
kimandClaude Sonnet 5 ba0a7e44d1 v0.5.1: print a resume hint on exit
Every exit path (Ctrl+C, /exit, SIGTERM/SIGHUP) now prints "Resume this
conversation later with: locode --resume <id>" once Ink has released the
terminal, so the session id isn't lost the moment the process ends.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-13 16:11:07 +09:00
kim 0bc9480c1d v0.5.0: reduce system prompt token usage by ~35-40%
- Compress systemPrompt.ts guidelines (7 → 5 rules, remove redundancy)
- Shorten tool descriptions: read_file, agent, git_status, git_commit, todo_write, edit_file, web_search, web_fetch
- Shorten parameter descriptions in readFile, agentTool, git, editFile, todoWrite
- Simplify fallbackPrompt.ts (remove example, shorten instructions)
- All 123 tests pass
2026-07-13 16:05:00 +09:00
kim eb03d0bd14 feat: todo lists, permission modes, project instructions, and agent robustness
- Add todo_write tool with live checklist rendering in the UI
- Add permission modes (default/plan/auto-edit/auto-accept) cycled via Shift+Tab or /perm
- Load CLAUDE.md/AGENTS.md as project instructions into the system prompt
- Forward sub-agent tool calls/results to parent UI panel
- Auto-compact context mid-turn and keep model moving with a synthetic user turn
- Prune older image_url parts to cap vision token cost
- Idle-abort guard for stalled streaming backends
- Improve background bash jobs, kill whole process trees on timeout/exit
- Expand hooks: command/http hooks, blocking, JSON outputSchema
- MCP: JSON schema → Zod conversion, parallel connection, duplicate server detection
- Add tests for loop, confirmFn, projectInstructions, readFile, bash, todoWrite, contextWindowCache
2026-07-13 15:47:48 +09:00
kimandClaude Sonnet 5 f01898a9c3 Bump to 0.3.1: fix backend hangs, UI layout, and dead-code type error
A day of dogfooding locode on itself surfaced several real bugs, most centered on
the backend request lifecycle silently hanging with no error surfaced to the user:

- bash/hooks: execa's shell:true defaulted to cmd.exe on Windows, which lacks
  Unix tools (cat, sed, grep, ...) and fails a whole pipe with an unhelpful exit
  255 if any stage isn't found. Added src/utils/shell.ts to resolve real Git Bash
  when available.
- agent/loop: the backend client's own `timeout` only bounds time-to-first-byte —
  once a streaming response starts, a backend that goes silent mid-stream (or one
  that sends periodic content-less "heartbeat" chunks to keep the connection alive
  through a proxy) hung the request forever with zero output. Added an idle-abort
  guard that pokes only on chunks carrying real progress (usage/text/tool-calls/
  finish_reason), covering the main stream, the non-streaming malformed-JSON
  retry, and compactSession.
- agent/loop: a single tool-call-heavy turn (e.g. reading dozens of files) had no
  auto-compaction safety net at all — shouldAutoCompact was only ever checked
  between turns, never during one, so a long turn could blow past the context
  window with no mid-turn correction. Now checked every iteration; re-anchors
  mutationCommitLength afterward since compaction replaces session.messages
  wholesale.
- agent/loop: hitting the iteration cap surfaced as an opaque "Request failed"
  even when every prior tool call (including file edits) had actually succeeded.
  Added MaxIterationsError, rendered as a calm "paused, send another message to
  continue" notice instead, and raised the default cap 25 -> 50.
- agent/loop: removed a dead-code branch (fallback-malformed retry handling
  placed inside a native-mode-only code path, so session.mode === "fallback"
  could never be true there) that TypeScript correctly flagged as a type error.
- ui/App: text_done fires with an empty fullText for pure tool-call turns (no
  preceding prose); the assistant-message push had no guard, rendering a blank
  line every time. Now skipped when fullText is empty.
- ui/App+index: alternate-screen-buffer mode and StatusBar-above-ChatInput
  layout, fixing the reported "prompt starts below the dashboard, jumps up on
  space" glitch. Added input history (up/down recall).
- utils/writeFileAtomic: random temp-file suffix instead of a fixed `<file>.tmp`,
  so concurrent writes to the same directory can't collide.

Also fixes two hardcoded version strings (cli.ts --version, mcp/client.ts's
self-reported MCP identity) that were left stale at 0.2.0 through the 0.3.0
bump, and a stale maxIterations default noted in the README.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-08 18:06:52 +09:00
kimandClaude Sonnet 5 4652ecb87b Add bash_kill, background job eviction, and configurable request timeout
Bump to 0.3.0.

- bash_kill tool lets the model terminate a still-running backgrounded
  job (Ctrl+B); all running jobs are killed on process exit so they
  don't outlive locode as orphans.
- Finished background jobs are now evicted from the registry after a
  10-minute TTL instead of accumulating for the life of the session.
- The chat completion request timeout is now configurable
  (requestTimeoutMs / LOCODE_REQUEST_TIMEOUT_MS, default 180000) so
  backends that queue requests behind a concurrency limit (e.g.
  Ollama's OLLAMA_NUM_PARALLEL) under multi-session load aren't forced
  into a hard failure at a fixed 3 minutes.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-08 12:48:32 +09:00
kimandClaude Sonnet 5 4e6c0bb216 Bump to 0.2.0 and make max tool-call iterations configurable
The 8-iteration-per-turn cap was hardcoded from before this session's feature work and
too tight for genuine multi-file tasks, causing "Max tool-call iterations reached" on
legitimately multi-step work. Raised the default to 25 and made it configurable via
`locode config set maxIterations <n>` / $LOCODE_MAX_ITERATIONS, mirroring the existing
contextWindow config pattern.

Also bumps the version to 0.2.0 (package.json, --version, and the MCP client's
self-reported identity) to reflect the substantial feature additions since 0.1.0.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-06 18:08:49 +09:00
kimandClaude Sonnet 5 3f1527375c Add web search/fetch, sub-agents, MCP support, git tools, session persistence, and context compaction
Substantially expands locode's tool loop toward feature parity with Claude Code:

- web_search / web_fetch: DuckDuckGo-backed search and URL fetching (HTML stripped to text)
- git_status / git_commit: structured git tools with real diff/status/commit-list previews
  before any mutating operation is confirmed
- agent tool: sub-agents run an isolated, headless tool loop sharing the parent's permissions;
  bounded by an explicit depth guard (no nested sub-agents) and a 120s hard timeout, independent
  of the toolset already excluding `agent` for sub-agent sessions
- MCP client support (stdio + streamable HTTP transports) via the official SDK: locode connects
  to servers configured in `.mcp.json` or via `locode mcp add`, and exposes their tools alongside
  the built-in ones, namespaced as `mcp__<server>__<tool>`
- Session persistence: conversations auto-save after every turn; `--continue`/`--resume`,
  `locode sessions list/rm`, and an interactive resume picker
- Context compaction: tracks real token usage via `stream_options.include_usage` (falling back to
  a char-based estimate), auto-detects the model's context window (Ollama/LM Studio native APIs,
  cached, else a configurable default), and auto-summarizes the conversation at 85% usage or on
  demand via /compact
- Status bar and welcome banner: added a context-usage indicator and fixed several dim-by-default
  colors that were hard to read

Session/loop architecture changed to support all of this: Session now carries its own toolset
(tools + registry + OpenAI schemas) built from local + MCP tools, so runTurn no longer depends on
a fixed global tool list — the same mechanism that lets sub-agents inherit MCP tools while
excluding `agent` itself.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-06 17:53:27 +09:00
kim 68f2242984 first commit 2026-07-06 12:41:15 +09:00