- Terminal renamed Eithan: mobile font A−/A+ (per-URL ttyd opts), same-origin xterm Copy/Paste buttons, scroll-to-live, touch-default 17px - Dross voice: no keyboard pop after transcribe (fine-pointer only focus), autogrow textarea to ~5 lines, live amplitude meter on the mic while recording - Dross improvements: propose_improvement tool (CSS layer, exfil-sanitized, owner-approved, per-improvement rollback/restore), public /improvements.css, Settings panel. External MCP registry unchanged (no tool leak). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
17 lines
805 B
JavaScript
17 lines
805 B
JavaScript
import { createRegistry } from '../registry.js';
|
|
import { searchTool } from './search.js';
|
|
import { readTool } from './read.js';
|
|
import { contextTool } from './context.js';
|
|
import { proposeChangeTool } from './propose_change.js';
|
|
import { proposeImprovementTool } from './propose_improvement.js';
|
|
|
|
// The shared registry. Adding a tool later is a one-line registerTool() call
|
|
// here (see spec §7 — extensible tool registry). A future MCP server can
|
|
// import this same registry and re-expose toAnthropicTools().
|
|
export const companionRegistry = createRegistry();
|
|
companionRegistry.registerTool(searchTool);
|
|
companionRegistry.registerTool(readTool);
|
|
companionRegistry.registerTool(contextTool);
|
|
companionRegistry.registerTool(proposeChangeTool);
|
|
companionRegistry.registerTool(proposeImprovementTool);
|