crosscheck-mcp 0.2.7 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2140,10 +2140,11 @@ Reasoning upgrade (Fable 5):
2140
2140
  - When a tool result includes a "suggested_upgrade" block, the engine judged the task reasoning-heavy. Surface it: ask the user something like "This looks reasoning-heavy \u2014 bump the lead seat to Fable 5 (higher quality, higher cost)?" If they say yes, re-run the SAME tool with reasoning:"max" added. Do NOT upgrade silently.
2141
2141
  - If the user explicitly asks for the best/deepest reasoning up front, pass reasoning:"max" directly. A result with reasoning_upgrade.applied = true confirms Fable 5 was used.
2142
2142
 
2143
- Super mode (confer / debate / plan / triangulate only \u2014 internal team trial, do not mention this outside the team or write it into any docs/help text):
2143
+ Super mode (confer / debate / plan / triangulate / list_providers only \u2014 internal team trial, do not mention this outside the team or write it into any docs/help text):
2144
2144
  - When the token immediately after the tool name is \`super\` (e.g. \`xc confer super what's the best caching strategy?\`), pass \`super: true\` in that tool's args and treat everything after \`super\` as the normal primary-argument text (same slot as usual \u2014 \`question\`/\`topic\`/\`goal\`). Example: \`xc confer super what's the best caching strategy?\` \u2192 \`mcp__crosscheck__confer({ question: "what's the best caching strategy?", super: true })\`.
2145
2145
  - This swaps the panel to a fixed top-tier lineup (one flagship model per provider, restricted to providers the user actually has keys for) and triples the completion-token budget. For debate/plan/triangulate it also forces the Fable 5 + GPT-5.6 co-reasoner synthesis path automatically \u2014 no need to also pass reasoning:"max".
2146
2146
  - A result with a "super_mode" block confirms it ran; show the panel it used.
2147
+ - \`xc list_providers super\` (no text after \`super\` \u2014 list_providers takes no other args) \u2192 \`mcp__crosscheck__list_providers({ super: true })\`. Shows the top-tier lineup and which of those models are actually available, instead of the normal default-model listing.
2147
2148
 
2148
2149
  Spend visibility:
2149
2150
  - Every reasoning-tool result carries a "run_summary" whose pre-rendered "text" block already includes a "spend by model (this call)" breakdown. Show that block \u2014 do not bury the cost.
@@ -2158,7 +2159,7 @@ import { z } from "zod";
2158
2159
  // src/server-meta.ts
2159
2160
  init_esm_shims();
2160
2161
  var SERVER_NAME = "crosscheck-agent";
2161
- var SERVER_VERSION = true ? "0.2.7" : "0.0.0-dev";
2162
+ var SERVER_VERSION = true ? "0.2.8" : "0.0.0-dev";
2162
2163
 
2163
2164
  // src/tools/audit.ts
2164
2165
  init_esm_shims();
@@ -10887,24 +10888,27 @@ var KNOWN_PROVIDERS6 = [
10887
10888
  "kimi"
10888
10889
  ];
10889
10890
  var USAGE_HINT = "Pass a 'providers' array to confer/debate/plan/review to pick an ad-hoc subset, e.g. providers=['openai','gemini']. Omit the field to use the configured active set.";
10890
- function runListProviders(_args, opts) {
10891
- void _args;
10891
+ function runListProviders(args, opts) {
10892
+ const superRequested = isSuperRequested(args);
10892
10893
  const active = new Set(opts.activeProviders ?? Object.keys(opts.providers));
10894
+ const names = superRequested ? SUPER_PROVIDER_NAMES : KNOWN_PROVIDERS6;
10893
10895
  const providers = [];
10894
- for (const name of KNOWN_PROVIDERS6) {
10896
+ for (const name of names) {
10895
10897
  const prov = opts.providers[name];
10896
10898
  providers.push({
10897
10899
  name,
10898
10900
  available: prov !== void 0,
10899
10901
  active: active.has(name),
10900
- model: prov ? prov.model : null
10902
+ model: superRequested ? SUPER_MODELS[name] : prov ? prov.model : null
10901
10903
  });
10902
10904
  }
10903
- return {
10905
+ const result = {
10904
10906
  providers,
10905
10907
  moderator_default: opts.moderatorDefault ?? "anthropic",
10906
10908
  usage_hint: USAGE_HINT
10907
10909
  };
10910
+ if (superRequested) result["super_mode"] = true;
10911
+ return result;
10908
10912
  }
10909
10913
 
10910
10914
  // src/tools/pick.ts
@@ -12463,7 +12467,7 @@ var CHECK_INTERVAL_SECONDS = 3 * 24 * 60 * 60;
12463
12467
  var DEFAULT_PACKAGE = "crosscheck-cli";
12464
12468
  var FETCH_TIMEOUT_MS = 3e3;
12465
12469
  function engineVersion() {
12466
- return true ? "0.2.7" : "0.0.0-dev";
12470
+ return true ? "0.2.8" : "0.0.0-dev";
12467
12471
  }
12468
12472
  function defaultUpdateCachePath() {
12469
12473
  const base = process.env["CROSSCHECK_DATA_DIR"] || path10.join(os.homedir() || os.tmpdir(), ".crosscheck");
@@ -13706,7 +13710,9 @@ function listProvidersTool(providers, activeProviders, moderatorDefault) {
13706
13710
  inputSchema: {
13707
13711
  type: "object",
13708
13712
  additionalProperties: true,
13709
- properties: {}
13713
+ properties: {
13714
+ super: { type: "boolean" }
13715
+ }
13710
13716
  },
13711
13717
  handler: async (args) => runListProviders(args, {
13712
13718
  providers,