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.
At a Glance
Section titled “At a Glance”- Category: Plugin Management
- Source: Built-in
- Required parameters: 4
- Total parameters: 6
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
run_index | number | Yes | 1-indexed run number. |
current_t12_ids | array of string | Yes | Finding ids at T1 or T2 for this run. |
prior_t12_ids | array of string | Yes | T1/T2 ids from the previous run (empty array on run 1). |
consecutive_stable | number | Yes | Running stability counter carried across calls. |
floor | number | No | Minimum runs before convergence may be declared (default 2). |
ceiling | number | No | Hard cap on runs (default 5). |
Example
Section titled “Example”{ "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 }}Related Tools
Section titled “Related Tools”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…