sicario-red-team 0.4.2 → 0.4.3

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.
package/bin/sicario.js CHANGED
@@ -28,7 +28,7 @@ const program = new Command();
28
28
  program
29
29
  .name('sicario')
30
30
  .description('Autonomous Agentic Red-Teaming Swarm Protocol')
31
- .version('0.4.2');
31
+ .version('0.4.3');
32
32
 
33
33
  // Use a more robust way to import the command logic relative to this file
34
34
  const hitCommandPath = pathToFileURL(path.join(__dirname, '../src-cli/commands/hit.js')).href;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sicario-red-team",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Autonomous Agentic Red-Teaming Swarm Protocol",
5
5
  "type": "module",
6
6
  "files": [
@@ -211,7 +211,7 @@ export async function hitCommand(target, options) {
211
211
  // 6. Mission Dossier
212
212
  const summaryLines = [
213
213
  `${theme.dim('Target')} ${theme.bold(finalTarget)}`,
214
- `${theme.dim('Nodes Recalled')} ${theme.bold(options.swarm ? '6 (Scout, Ghost, Accountant, Admin, Chaos, Architect)' : '3 (Scout, Ghost, Breacher)')}`,
214
+ `${theme.dim('Nodes Recalled')} ${theme.bold(options.swarm ? '7 (Scout, Ghost, Accountant, Admin, Chaos, Architect, Critic)' : '3 (Scout, Ghost, Breacher)')}`,
215
215
  `${theme.dim('Breaches Found')} ${verifiedBreachReports.length > 0 ? pc.red(pc.bold(verifiedBreachReports.length)) : theme.bold('0')}`,
216
216
  `${theme.dim('Status')} ${theme.success('MISSION SUCCESSFUL')}`
217
217
  ];