From 4fd61c5df2b4c7861b458a9ab37c5fdb50cc9b6d Mon Sep 17 00:00:00 2001 From: Bill Date: Mon, 9 Feb 2026 17:25:43 -0700 Subject: [PATCH] Add LLM tooling feature request --- FEATURE_REQUESTS.md | 16 ++++++++++++++++ PROGRESS.md | 1 + 2 files changed, 17 insertions(+) diff --git a/FEATURE_REQUESTS.md b/FEATURE_REQUESTS.md index 45afd5a..a457462 100644 --- a/FEATURE_REQUESTS.md +++ b/FEATURE_REQUESTS.md @@ -57,3 +57,19 @@ ## Notes - Treat these as separate features to schedule independently. - Likely Sprint 6/7, after core library-aware flow is stable. + +## LLM Tooling & MCP Bridge + +**Goal:** Make the agent API easy for LLMs to use and optionally expose it via MCP. + +**Concept:** +- Document JSON-RPC API with schemas and examples. +- Generate synthetic interaction traces for fine-tuning / tool-use evaluation. +- Add an MCP server wrapper that exposes current agent methods as MCP tools/resources. + +**Candidate Deliverables:** +- `docs/AGENT_API.md` with request/response schemas +- Example flows: read AST ? mutate ? verify +- MCP bridge module (optional): maps JSON-RPC to MCP tools + +--- diff --git a/PROGRESS.md b/PROGRESS.md index e993529..90d4290 100644 --- a/PROGRESS.md +++ b/PROGRESS.md @@ -482,3 +482,4 @@ Sprint 5 in progress. Step 135 (library-aware completion) done. Next: Step 136 ( | 2026-02-09 | Codex | Step 134: PrimitivesRegistry aggregating builtins, imports, and in-scope symbols. 6/6 tests pass. | | 2026-02-09 | Codex | Step 135: Library-aware completion ordering with auto-import hints for non-primitive symbols. 5/5 tests pass. | | 2026-02-09 | Codex | Added FEATURE_REQUESTS.md to track security vulnerability awareness and semantic library annotations for future sprints. | +| 2026-02-09 | Codex | Added LLM tooling + MCP bridge feature request to FEATURE_REQUESTS.md. |