Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions packages/amico-run/src/amico.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
//
// B1 SCOPE: `run` / `resolve` / `sandbox` delegate VERBATIM to the existing amico-run launch
// path (src/launch.ts): `amico <verb> <args>` is exactly `amico-run <equivalent-args>`, so
// there is no behavior fork and the amico-run test suite still covers the real bodies. Of
// the spine verbs, `catalog` is REAL (B2 — repertoire query/ingest; see catalog_verb.ts);
// `vault`/`device`/`note` and `mcp-serve` remain STUB seams (see verbs.ts, mcp_serve.ts) —
// routing works today; their real bodies land in later spine slices.
// there is no behavior fork and the amico-run test suite still covers the real bodies. ALL
// FOUR spine verbs now have real bodies: `catalog` (B2 — catalog_verb.ts) and, as of B3,
// `vault` (vault_verb.ts), `device` (device_verb.ts), `note` (note_verb.ts). Only `mcp-serve`
// remains a STUB seam (see mcp_serve.ts) — its verb↔tool mapping works (`--list`); the real
// MCP stdio transport lands in a later slice (kept SDK-free by S31).
import { launch } from "./launch.js";
import { SPINE_VERBS } from "./verbs.js";
import { serve } from "./mcp_serve.js";
Expand Down
Loading
Loading