SPB Git

spb/khaelor Public

KHAELOR — a terminal-native autonomous engineering agent powered by Anthropic.

TypeScript 82.9% HTML 14.9% CSS 1.1% JavaScript 0.7%
13.7 KB · 230 lines html
Raw Blame History
1<!doctype html>2<!--3KHAELOR4File: website/public/docs/tools.html5Description: The seven agent tools explained for users — capabilities, output, truncation, and background processes.6Author: Simon-Pierre Boucher7Contact: contact@spboucher.ai8-->9<html lang="en">10<head>11<meta charset="utf-8">12<meta name="viewport" content="width=device-width, initial-scale=1">13<title>Tools — KHAELOR</title>14<meta name="description" content="The seven tools KHAELOR's agent uses: read, write, edit, grep, glob, bash, and process — plus how output truncation and background processes behave.">15<link rel="stylesheet" href="/styles.css">16<script>17(function(){try{var t=localStorage.getItem("khaelor-theme");if(!t&&window.matchMedia&&window.matchMedia("(prefers-color-scheme: light)").matches)t="light";if(t==="light")document.documentElement.setAttribute("data-theme","light");}catch(e){}})();18</script>19<script defer src="/site.js"></script>20</head>21<body>2223<header class="site-header"><div class="inner">24  <a class="wordmark" href="/"><span class="glyph">&#10095;</span>KHAELOR</a>25  <nav>26    <a href="/docs/getting-started.html">Docs</a>27    <a href="/#install">Install</a>28    <button id="theme-toggle" type="button" aria-label="Toggle color theme">light</button>29  </nav>30</div></header>3132<main class="page"><div class="docs-layout">3334<aside class="sidebar">35  <div class="group"><div class="group-title">Start</div>36    <a href="/docs/getting-started.html">Getting started</a>37  </div>38  <div class="group"><div class="group-title">Using KHAELOR</div>39    <a href="/docs/usage.html">The TUI</a>40    <a href="/docs/commands.html">Commands &amp; keyboard</a>41    <a href="/docs/tools.html">Tools</a>42    <a href="/docs/sessions.html">Sessions</a>43  </div>44  <div class="group"><div class="group-title">Control</div>45    <a href="/docs/permissions.html">Permissions</a>46    <a href="/docs/configuration.html">Configuration</a>47  </div>48  <div class="group"><div class="group-title">Help</div>49    <a href="/docs/faq.html">FAQ &amp; troubleshooting</a>50  </div>51</aside>5253<article class="content">5455<h1>Tools</h1>56<p class="lead">KHAELOR gives the model exactly <strong>seven</strong> powerful primitives —57not dozens of micro-tools. Every tool call is permission-checked before it runs, rendered as a58compact one-liner in the conversation, and journaled in the session's event log.</p>5960<table>61  <tr><th>Tool</th><th>What it does</th><th>You see</th></tr>62  <tr><td><code>read</code></td><td class="wrap">Read a file (paged, line-numbered)</td><td class="wrap"><code>&#9656; Read src/kernel/agent.ts &middot; lines 1–2000 of 3417</code></td></tr>63  <tr><td><code>write</code></td><td class="wrap">Create or fully replace a file</td><td class="wrap"><code>&#9656; Write src/context/budget.ts &middot; new file &middot; 114 lines</code></td></tr>64  <tr><td><code>edit</code></td><td class="wrap">Surgical in-place replacement</td><td class="wrap"><code>&#9656; Edit src/context/engine.ts &middot; +31 −12</code></td></tr>65  <tr><td><code>grep</code></td><td class="wrap">Content search (ripgrep)</td><td class="wrap"><code>&#9656; Search "ContextEngine" &middot; 14 matches in 5 files</code></td></tr>66  <tr><td><code>glob</code></td><td class="wrap">Find files by name pattern</td><td class="wrap"><code>&#9656; Glob src/**/*.ts &middot; 23 files</code></td></tr>67  <tr><td><code>bash</code></td><td class="wrap">Run a short-lived shell command</td><td class="wrap"><code>&#9656; Run npm test &middot; exit 0 &middot; 3.2s</code></td></tr>68  <tr><td><code>process</code></td><td class="wrap">Manage background processes</td><td class="wrap"><code>&#9656; Process start npm run dev &middot; p3 running</code></td></tr>69</table>7071<p>There is deliberately no <code>git</code> tool — git flows through <code>bash</code> under72the same permission rules, where you can see and gate every command.</p>7374<h2 id="read"><code>read</code><a class="anchor" href="#read">#</a></h2>75<p>Reads files with line numbers, up to 2,000 lines per page; the output always states the76total and how to continue, so the agent pages through large files instead of dumping them.77Guard rails you benefit from:</p>78<ul>79  <li><strong>Binary detection</strong> — binary files are described (type, size), never dumped as bytes.</li>80  <li><strong>Size guard</strong> — files over 10&nbsp;MB are refused with guidance to search or page instead.</li>81  <li><strong>Near-miss suggestions</strong> — a typo'd path gets "Did you mean&hellip;?" candidates from the repository index.</li>82  <li><strong>Directories</strong> — reading a directory lists its entries instead of erroring.</li>83</ul>84<p>Every successful read is also recorded in the session's file registry — this is what powers85the safety rule that the agent must <em>read before it writes</em> (below).</p>8687<h2 id="write"><code>write</code><a class="anchor" href="#write">#</a></h2>88<p>Writes a complete file, creating parent directories as needed. Two protections guard your89work on existing files:</p>90<ul>91  <li><strong>Read-before-write</strong> — the agent cannot overwrite a file it has not read in92  this session. It is structurally impossible for it to blow away content it never saw.</li>93  <li><strong>External-modification detection</strong> — if the file changed on disk after the94  agent last read it (you edited it, or another process did), the write is refused and the95  agent must re-read and reapply. Your concurrent edits are never clobbered.</li>96</ul>97<p>Writes are atomic (temp file + fsync + rename), preserve line endings (CRLF), BOM, and file98mode bits. Every write produces a unified diff you can expand instantly with <kbd>d</kbd> or99review in <code>/diff</code>.</p>100101<h2 id="edit"><code>edit</code><a class="anchor" href="#edit">#</a></h2>102<p>The most important tool: exact string replacement inside a file. The agent supplies the text103to find and its replacement; KHAELOR requires the match to be <strong>unambiguous</strong>.104Under the hood, a nine-strategy matching cascade makes edits robust without making them105reckless:</p>106<ol>107  <li>Exact match</li>108  <li>Line-trimmed match (whitespace drift at line edges)</li>109  <li>Whitespace-normalized match</li>110  <li>Indentation-flexible match (block quoted at the wrong indent depth — the file's real indentation is preserved)</li>111  <li>Escape-normalized match (over-escaped <code>\n</code>, <code>\t</code>, quotes)</li>112  <li>Trimmed-boundary match</li>113  <li>Block-anchor fuzzy match (first/last lines as anchors, similarity-scored middle)</li>114  <li>Context-aware fuzzy match (last resort)</li>115  <li>Multi-occurrence replace-all (exact matches only — fuzzy mass-replace is never allowed)</li>116</ol>117<p>The guards matter as much as the strategies: an ambiguous match (multiple locations) fails118with the line numbers instead of silently picking one; a fuzzy match that would replace a119disproportionately large region is refused. Failed edits return precise repair guidance to the120model — the closest near-miss with the exact line and character difference — so the agent121fixes itself instead of thrashing. Same read-before-edit and external-modification protection122as <code>write</code>; same instant diff.</p>123124<h2 id="grep"><code>grep</code><a class="anchor" href="#grep">#</a></h2>125<p>Fast regex content search over the repository, powered by ripgrep (bundled — no system126dependency). Results are grouped by file with line numbers, ordered by most recently modified,127and hard-capped at 100 matching lines so the model's context never drowns in output.128Respects <code>.gitignore</code> and <code>.khaelorignore</code>. When results are truncated,129the full result set is spilled to a file the agent can search further.</p>130131<h2 id="glob"><code>glob</code><a class="anchor" href="#glob">#</a></h2>132<p>Filesystem discovery by name pattern — <code>**/*.ts</code>,133<code>src/**/config.*</code> — returning up to 100 paths ordered newest-first. Respects134ignore files and skips built-in noise (<code>node_modules/</code>, <code>.git/</code>,135<code>dist/</code>) unless the pattern explicitly targets it.</p>136137<h2 id="bash"><code>bash</code><a class="anchor" href="#bash">#</a></h2>138<p>Runs short-lived shell commands — builds, tests, git, package scripts — and returns139interleaved stdout/stderr with the exit code and duration:</p>140<pre class="term" data-no-copy><code> <span class="t-dim">$ npm test</span>141 &gt; proj@0.3.1 test142 &gt; vitest run143  <span class="t-ok">&#10003;</span> src/context/engine.test.ts (14 tests)144 <span class="t-dim">[exit code 0 &middot; 3.2s &middot; cwd /Users/x/dev/proj]</span></code></pre>145<ul>146  <li>Commands run in their own process group, non-interactively, from the project directory147  (or an explicit working directory) — never via hidden <code>cd</code> side effects.</li>148  <li>A failing exit code is a normal observation for the agent, not a crash — it reads the149  failure and fixes the cause.</li>150  <li>Permission evaluation happens on the parsed command <em>before</em> execution — see151  <a href="/docs/permissions.html">Permissions</a>.</li>152</ul>153154<h3 id="timeout">The timeout that never kills your command</h3>155<p>This is KHAELOR's answer to the classic agent failure of hanging forever on a dev server.156If a <code>bash</code> command is still running when its time budget expires (default 120&nbsp;s,157max 300&nbsp;s), it is <strong>not killed</strong> — it is adopted by the background process158manager, keeps running with its output continuously logged, and the agent immediately gets the159output so far plus a process id:</p>160<pre class="term" data-no-copy><code> Command still running after 120s — moved to background as process p4.161 Output so far:162 ...163 <span class="t-dim">Use process read p4 for new output, or process stop p4 to stop it.</span></code></pre>164<p>Nothing blocks forever; nothing is silently killed. (Pressing <kbd>Esc</kbd> yourself165<em>does</em> kill a foreground <code>bash</code> command — you asked for that — while166background processes survive.)</p>167168<h2 id="process"><code>process</code><a class="anchor" href="#process">#</a></h2>169<p>A real background process manager the agent can drive: <code>start</code>,170<code>list</code>, <code>read</code>, <code>write</code> (stdin), <code>stop</code>. It is what171lets KHAELOR start a dev server, keep editing, check the server's output, run tests, and check172the server again — the workflow blocking-shell agents simply cannot do.</p>173<pre class="term" data-no-copy><code> Started p3 (pid 41232): npm run dev174 <span class="t-dim">cwd /Users/x/dev/proj &middot; log ~/.khaelor/process-logs/s_ab12/p3.log</span>175 First output (waited up to 2s):176   VITE v5.4.1  ready in 431 ms177   &#10142;  Local: http://localhost:5173/</code></pre>178<ul>179  <li><strong>Instant-failure detection</strong> — <code>start</code> waits up to 2&nbsp;s for180  first output, so port-in-use and similar immediate crashes are caught inline without blocking181  healthy servers.</li>182  <li><strong>Nothing is lost</strong> — each process keeps an in-memory ring buffer <em>and</em>183  a complete log file on disk (<code>~/.khaelor/process-logs/&lt;session&gt;/&lt;id&gt;.log</code>).184  Reads return "new output since last read"; older output stays readable by offset or from the log.</li>185  <li><strong>Interactive processes</strong> — <code>write</code> sends stdin (REPLs, prompts),186  then automatically reads the response.</li>187  <li><strong>Clean stops</strong> — <code>stop</code> terminates the whole process group188  (SIGTERM, 3&nbsp;s grace, SIGKILL), so grandchild processes don't linger.</li>189  <li><strong>Lifecycle</strong> — processes survive <kbd>Esc</kbd> interruptions but end with190  the session (with notice). Exits are detected and shown even if nobody is reading.</li>191</ul>192<p>You can watch and control everything yourself in <a href="/docs/commands.html#cmd-processes"><code>/processes</code></a>;193the status bar shows a live count of running processes.</p>194195<h2 id="truncation">Output truncation and spill files<a class="anchor" href="#truncation">#</a></h2>196<p>Every tool that can produce large output truncates it <strong>middle-out</strong> — head and197tail kept, one explicit marker in between — and spills the complete output to disk:</p>198<pre class="term" data-no-copy><code> [... 1,842 lines omitted (58 KB). Full output:199  ~/.khaelor/tool-output/s_ab12/bash-toolu_9.txt — read or grep that file for the rest.]</code></pre>200<p>The agent gets the spill path and can <code>read</code> or <code>grep</code> it; you see a201<code>&middot; truncated</code> badge on the tool row and can expand from the same file. Spill202files are session-scoped, garbage-collected with the session, and capped at 512&nbsp;MB203globally (oldest sessions pruned first). A 40,000-line test log can never destroy your204conversation layout — what settles into the transcript is bounded.</p>205206<h2 id="inspecting">Inspecting tool calls<a class="anchor" href="#inspecting">#</a></h2>207<ul>208  <li>Live: <kbd>Ctrl+T</kbd> toggles a rolling 12-line tail of the currently-running tool.</li>209  <li>After: <kbd>d</kbd> prints the most recent edit's diff; <code>/diff</code> opens the full210  session diff viewer; each turn's tool calls can be expanded into full detail blocks on demand.</li>211  <li>Always: every tool call — inputs, results, approval decisions — is a durable event in the212  <a href="/docs/sessions.html#event-log">session event log</a>.</li>213</ul>214215<div class="pager">216  <div><span class="label">Previous</span><a href="/docs/commands.html">&larr; Commands &amp; keyboard</a></div>217  <div class="next"><span class="label">Next</span><a href="/docs/permissions.html">Permissions &rarr;</a></div>218</div>219220</article>221</div></main>222223<footer class="site-footer"><div class="inner">224  <span>KHAELOR — Simon-Pierre Boucher &middot; <a href="mailto:contact@spboucher.ai">contact@spboucher.ai</a></span>225  <span>Anthropic-powered &middot; terminal-native by design</span>226</div></footer>227228</body>229</html>230