@keygraph/shannon 1.6.0 → 1.7.0

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.
Files changed (2) hide show
  1. package/dist/index.mjs +10 -0
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -1371,6 +1371,16 @@ function printInfo(args, workspace, workflowId, repoPath, workspacesDir) {
1371
1371
  console.log(` Workspace: ${workspace}`);
1372
1372
  if (args.config) console.log(` Config: ${path.resolve(args.config)}`);
1373
1373
  if (args.pipelineTesting) console.log(" Mode: Pipeline Testing");
1374
+ const fableTiers = [
1375
+ ["small", process.env.ANTHROPIC_SMALL_MODEL],
1376
+ ["medium", process.env.ANTHROPIC_MEDIUM_MODEL],
1377
+ ["large", process.env.ANTHROPIC_LARGE_MODEL]
1378
+ ].filter(([, model]) => model && /fable/i.test(model));
1379
+ if (fableTiers.length > 0) {
1380
+ const tierList = fableTiers.map(([tier, model]) => `${tier} (${model})`).join(", ");
1381
+ console.log(` Note: ${tierList} set to a Fable model. Fable's safety classifiers`);
1382
+ console.log(" route cybersecurity tasks to Opus 4.8, so those phases run on Opus 4.8.");
1383
+ }
1374
1384
  console.log("");
1375
1385
  console.log(" Monitor:");
1376
1386
  if (workflowId) console.log(` Web UI: http://localhost:8233/namespaces/default/workflows/${workflowId}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keygraph/shannon",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Shannon - Autonomous white-box AI pentester for web applications and APIs by Keygraph",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",