You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(miner): expose the persisted plan store via read-only MCP tools
Add gittensory_miner_list_plans and gittensory_miner_get_plan to the gittensory-miner MCP
server (scaffold #5153): list_plans wraps plan-store.js's listPlans (optional status filter);
get_plan wraps loadPlan by planId, returning the full record or an explicit { planId, found:false }
for an unknown id. Both are strictly read-only (never savePlan) and are documented as the
store-backed AMS plan store, distinct from ORB's stateless gittensory_plan_status. The opener is
injectable for tests.
Closes#5161
Copy file name to clipboardExpand all lines: packages/gittensory-miner/README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,9 @@ It exposes these read-only tools:
143
143
144
144
-`gittensory_miner_get_run_state` (#5160) — read-only per-repo run-state (`idle` / `discovering` / `planning` / `preparing`) via `getRunState` / `listRunStates`. Pass `repoFullName` for one repo (a null state means none recorded yet), or omit it to list all. The read-only analog of ORB's `gittensory_get_automation_state`; adds no state-set mutation.
145
145
146
-
Further AMS-state-reading tools (status/doctor diagnostics, governor ledger, plan store) land as follow-up PRs on top of this server.
146
+
-`gittensory_miner_list_plans` / `gittensory_miner_get_plan` (#5161) — read-only access to the persisted plan store (`planId`, plan DAG, status, `updatedAt`) via `listPlans` / `loadPlan`; `list_plans` takes an optional `status` filter, `get_plan` takes a `planId` and returns an explicit `{ planId, found: false }` for an unknown id. These read the store-backed AMS plan store — distinct from ORB's stateless `gittensory_plan_status` tool.
147
+
148
+
Further AMS-state-reading tools (status/doctor diagnostics, governor ledger) land as follow-up PRs on top of this server.
0 commit comments