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.
@@ -2161,10 +2161,11 @@ Reasoning upgrade (Fable 5):
2161
2161
  - 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.
2162
2162
  - 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.
2163
2163
 
2164
- 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):
2164
+ 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):
2165
2165
  - 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 })\`.
2166
2166
  - 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".
2167
2167
  - A result with a "super_mode" block confirms it ran; show the panel it used.
2168
+ - \`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.
2168
2169
 
2169
2170
  Spend visibility:
2170
2171
  - 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.
@@ -2179,7 +2180,7 @@ var import_zod = require("zod");
2179
2180
  // src/server-meta.ts
2180
2181
  init_cjs_shims();
2181
2182
  var SERVER_NAME = "crosscheck-agent";
2182
- var SERVER_VERSION = true ? "0.2.7" : "0.0.0-dev";
2183
+ var SERVER_VERSION = true ? "0.2.8" : "0.0.0-dev";
2183
2184
 
2184
2185
  // src/tools/audit.ts
2185
2186
  init_cjs_shims();
@@ -10891,24 +10892,27 @@ var KNOWN_PROVIDERS6 = [
10891
10892
  "kimi"
10892
10893
  ];
10893
10894
  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.";
10894
- function runListProviders(_args, opts) {
10895
- void _args;
10895
+ function runListProviders(args, opts) {
10896
+ const superRequested = isSuperRequested(args);
10896
10897
  const active = new Set(opts.activeProviders ?? Object.keys(opts.providers));
10898
+ const names = superRequested ? SUPER_PROVIDER_NAMES : KNOWN_PROVIDERS6;
10897
10899
  const providers = [];
10898
- for (const name of KNOWN_PROVIDERS6) {
10900
+ for (const name of names) {
10899
10901
  const prov = opts.providers[name];
10900
10902
  providers.push({
10901
10903
  name,
10902
10904
  available: prov !== void 0,
10903
10905
  active: active.has(name),
10904
- model: prov ? prov.model : null
10906
+ model: superRequested ? SUPER_MODELS[name] : prov ? prov.model : null
10905
10907
  });
10906
10908
  }
10907
- return {
10909
+ const result = {
10908
10910
  providers,
10909
10911
  moderator_default: opts.moderatorDefault ?? "anthropic",
10910
10912
  usage_hint: USAGE_HINT
10911
10913
  };
10914
+ if (superRequested) result["super_mode"] = true;
10915
+ return result;
10912
10916
  }
10913
10917
 
10914
10918
  // src/tools/pick.ts
@@ -12467,7 +12471,7 @@ var CHECK_INTERVAL_SECONDS = 3 * 24 * 60 * 60;
12467
12471
  var DEFAULT_PACKAGE = "crosscheck-cli";
12468
12472
  var FETCH_TIMEOUT_MS = 3e3;
12469
12473
  function engineVersion() {
12470
- return true ? "0.2.7" : "0.0.0-dev";
12474
+ return true ? "0.2.8" : "0.0.0-dev";
12471
12475
  }
12472
12476
  function defaultUpdateCachePath() {
12473
12477
  const base = process.env["CROSSCHECK_DATA_DIR"] || import_node_path13.default.join(import_node_os2.default.homedir() || import_node_os2.default.tmpdir(), ".crosscheck");
@@ -13710,7 +13714,9 @@ function listProvidersTool(providers, activeProviders, moderatorDefault) {
13710
13714
  inputSchema: {
13711
13715
  type: "object",
13712
13716
  additionalProperties: true,
13713
- properties: {}
13717
+ properties: {
13718
+ super: { type: "boolean" }
13719
+ }
13714
13720
  },
13715
13721
  handler: async (args) => runListProviders(args, {
13716
13722
  providers,