import type { AnyMcpTool } from "../tool.js"; /** * Every MCP tool Cortex advertises. Add new tools here; the server will * pick them up automatically. * * Architectural rule (Pyre Business Plan §16, 2026-05-10): * Cortex is the knowledge source of truth, searchable by Pyre. That * is its entire job. Cortex returns structured retrieval (chunks, * entities, briefs, sources). Pyre composes language. No query-time * LLM calls happen on Cortex; the only LLM work is ingest-time * enrichment (brief, classify, structural). * * Knowledge-engine repositioning history: * - 2026-05-09 Phase 1C: removed personal-priority tools — `digest`, * `pending_action_items`, `summarize_recent`, `summarize_meeting`, * session-handoff×3, `add_person`, `get_user_identity`, * `update_user_identity`. Per-user identity + session continuity * belong in Pyre's Engram (per-user memory) layer. * - 2026-05-09 Phase 1D step 1: `project` is now optional on the four * ingest_* tools (defaults to a sentinel "default" project). * - 2026-05-09 Phase 1D step 2: removed the project-management MCP * tools — `add_project`, `list_projects`, `get_project_context`, * `get_taxonomy_gaps`. The project model is on its way out; no * external client should be programmatically managing the project * list any more. The CLI wizard at `cortex add projects` still * works for users who want manual taxonomy curation. * `get_project_context` lives on as an internal helper imported * by `kb_dossier`'s project entity-type path. * - 2026-05-26: restored `add_project` + `list_projects`. The ingest * tools validate `project` against the taxonomy and their error * text already pointed at both tools, but neither was exposed — * so per-repo dossier scoping was impossible over MCP (every * ingest fell back to "default"). Both are workspace-scoped and * write through the same registry the ingest path reads. * - 2026-05-10 Architecture-boundary cleanup: removed `research`, * `approve_research` (query-time LLM synthesis — moves to Pyre), * `fetch_pr`, `fetch_ticket` (user-auth fetch — moves to Pyre), * and the 12 `browser_*` tools (browser-extension relay — Pyre * talks to the extension directly now). * * See docs/MIGRATION-knowledge-engine.md. */ export declare const ALL_TOOLS: AnyMcpTool[]; //# sourceMappingURL=index.d.ts.map