Skip to content
K

mm_verify_convergence_step

Pure single-step convergence calculation. Given the current and prior T1/T2 id sets (as string arrays) plus the running consecutive_stable counter, returns the updated counter, the added/removed/unchanged diff, and the decision (continue | converged | did_not_converge). Mirrors Rust convergence_step — defaults floor=2, ceiling=5 per spec.

  • Category: Plugin Management
  • Source: Built-in
  • Required parameters: 4
  • Total parameters: 6
ParameterTypeRequiredDescription
run_indexnumberYes1-indexed run number.
current_t12_idsarray of stringYesFinding ids at T1 or T2 for this run.
prior_t12_idsarray of stringYesT1/T2 ids from the previous run (empty array on run 1).
consecutive_stablenumberYesRunning stability counter carried across calls.
floornumberNoMinimum runs before convergence may be declared (default 2).
ceilingnumberNoHard cap on runs (default 5).
{
"tool": "mm_verify_convergence_step",
"arguments": {
"run_index": 1,
"current_t12_ids": [
"my-example"
],
"prior_t12_ids": [
"my-example"
],
"consecutive_stable": 1,
"floor": 1,
"ceiling": 1
}
}
  • mm_list_plugins - List all loaded plugins with their id, name, version, category, tier, and too…
  • mm_get_plugin_info - Get detailed information about a specific plugin including its tools, version…
  • mm_push_team_checkin - Push a team check-in to the cloud. Scans local specs and features, captures c…
  • mm_fetch_team_checkins - Fetch all team members’ check-ins from the cloud. Returns display names, bran…
  • mm_claim_spec - Claim a spec from a teammate. Records the claim in the cloud (first-claim-win…