Skip to content
Merged
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
32 changes: 28 additions & 4 deletions packages/loopover-contract/src/tools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,24 @@ import { predictGateTool } from "./predict-gate.js";
import { preflightPrTool } from "./preflight-pr.js";
import { localStatusStructuredTool } from "./local-status.js";
import { adminGetConfigTool } from "./admin-config.js";
import {
minerPingTool,
minerPortfolioDashboardTool,
minerManageStatusTool,
minerListClaimsTool,
minerAuditFeedTool,
minerGetRunStateTool,
minerListPlansTool,
minerGetPlanTool,
minerGovernorDecisionsTool,
minerStatusTool,
minerCalibrationReportTool,
} from "./miner.js";

/**
* Pilot batch (#9517). The remaining ~110 remote / 96 stdio / 11 miner tools migrate in #9518's
* category batches; this set was chosen to exercise every axis of the model at least once --
* remote and local-git locality, cloud/selfhost/both availability, and the token/session/
* maintainer/mcp-admin auth levels.
* Pilot batch (#9517) plus the full AMS miner server (#9536, all 11 tools -- the first server
* migrated to completion). The remaining ~110 remote / ~91 stdio tools migrate in #9518/#9537's
* category batches.
*/
export const TOOL_CONTRACTS: readonly ToolContract[] = [
getRepoContextTool,
Expand All @@ -24,6 +36,17 @@ export const TOOL_CONTRACTS: readonly ToolContract[] = [
preflightPrTool,
localStatusStructuredTool,
adminGetConfigTool,
minerPingTool,
minerPortfolioDashboardTool,
minerManageStatusTool,
minerListClaimsTool,
minerAuditFeedTool,
minerGetRunStateTool,
minerListPlansTool,
minerGetPlanTool,
minerGovernorDecisionsTool,
minerStatusTool,
minerCalibrationReportTool,
];

const CONTRACTS_BY_NAME: ReadonlyMap<string, ToolContract> = new Map(
Expand All @@ -49,3 +72,4 @@ export * from "./predict-gate.js";
export * from "./preflight-pr.js";
export * from "./local-status.js";
export * from "./admin-config.js";
export * from "./miner.js";
Loading
Loading