@pensar/apex 0.0.36-canary.0 → 0.0.37-canary.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.
@@ -84615,7 +84615,7 @@ async function installApex(sandbox, branch) {
84615
84615
  const prefix = branch ? `[${branch}] ` : "";
84616
84616
  console.log(`${prefix}\uD83D\uDCE6 Installing Apex globally via bun...`);
84617
84617
  try {
84618
- const installResult = await sandbox.process.executeCommand('export BUN_INSTALL="$HOME/.bun" && export PATH="$BUN_INSTALL/bin:$PATH" && bun install -g @pensar/apex');
84618
+ const installResult = await sandbox.process.executeCommand('export BUN_INSTALL="$HOME/.bun" && export PATH="$BUN_INSTALL/bin:$PATH" && bun install -g @pensar/apex@canary');
84619
84619
  if (installResult.exitCode !== 0) {
84620
84620
  throw new Error(`Bun install failed with exit code ${installResult.exitCode}`);
84621
84621
  }
@@ -121194,6 +121194,12 @@ var OPENROUTER_MODELS = [
121194
121194
  provider: "openrouter",
121195
121195
  contextLength: 64000
121196
121196
  },
121197
+ {
121198
+ id: "mistralai/mistral-large-2512",
121199
+ name: "Mistral Large 3 2512",
121200
+ provider: "openrouter",
121201
+ contextLength: 262144
121202
+ },
121197
121203
  {
121198
121204
  id: "moonshotai/kimi-k2-thinking",
121199
121205
  name: "Kimi K2 Thinking",
package/build/index.js CHANGED
@@ -27321,6 +27321,12 @@ var OPENROUTER_MODELS = [
27321
27321
  provider: "openrouter",
27322
27322
  contextLength: 64000
27323
27323
  },
27324
+ {
27325
+ id: "mistralai/mistral-large-2512",
27326
+ name: "Mistral Large 3 2512",
27327
+ provider: "openrouter",
27328
+ contextLength: 262144
27329
+ },
27324
27330
  {
27325
27331
  id: "moonshotai/kimi-k2-thinking",
27326
27332
  name: "Kimi K2 Thinking",
package/build/pentest.js CHANGED
@@ -39513,6 +39513,12 @@ var OPENROUTER_MODELS = [
39513
39513
  provider: "openrouter",
39514
39514
  contextLength: 64000
39515
39515
  },
39516
+ {
39517
+ id: "mistralai/mistral-large-2512",
39518
+ name: "Mistral Large 3 2512",
39519
+ provider: "openrouter",
39520
+ contextLength: 262144
39521
+ },
39516
39522
  {
39517
39523
  id: "moonshotai/kimi-k2-thinking",
39518
39524
  name: "Kimi K2 Thinking",
@@ -39513,6 +39513,12 @@ var OPENROUTER_MODELS = [
39513
39513
  provider: "openrouter",
39514
39514
  contextLength: 64000
39515
39515
  },
39516
+ {
39517
+ id: "mistralai/mistral-large-2512",
39518
+ name: "Mistral Large 3 2512",
39519
+ provider: "openrouter",
39520
+ contextLength: 262144
39521
+ },
39516
39522
  {
39517
39523
  id: "moonshotai/kimi-k2-thinking",
39518
39524
  name: "Kimi K2 Thinking",
package/build/swarm.js CHANGED
@@ -39513,6 +39513,12 @@ var OPENROUTER_MODELS = [
39513
39513
  provider: "openrouter",
39514
39514
  contextLength: 64000
39515
39515
  },
39516
+ {
39517
+ id: "mistralai/mistral-large-2512",
39518
+ name: "Mistral Large 3 2512",
39519
+ provider: "openrouter",
39520
+ contextLength: 262144
39521
+ },
39516
39522
  {
39517
39523
  id: "moonshotai/kimi-k2-thinking",
39518
39524
  name: "Kimi K2 Thinking",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pensar/apex",
3
- "version": "0.0.36-canary.0",
3
+ "version": "0.0.37-canary.0",
4
4
  "description": "AI-powered penetration testing CLI tool with terminal UI",
5
5
  "module": "src/tui/index.tsx",
6
6
  "main": "build/index.js",