blitzstrike 1.0.10 → 1.0.11

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.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -23534,14 +23534,14 @@ function jsonMcpServersWrite(p) {
23534
23534
  };
23535
23535
  }
23536
23536
  function opencodeWrite(p) {
23537
- return (command, args) => {
23537
+ return (_command, _args) => {
23538
23538
  const dir = dirname(p);
23539
23539
  if (!existsSync6(dir))
23540
23540
  mkdirSync2(dir, { recursive: true });
23541
23541
  const existing = readJson(p) ?? {};
23542
23542
  existing.mcp = {
23543
23543
  ...existing.mcp ?? {},
23544
- blitzstrike: { type: "local", command: [command, ...args], enabled: true }
23544
+ blitzstrike: { type: "local", command: ["npx", "-y", "blitzstrike", "serve", "--mcp"], enabled: true }
23545
23545
  };
23546
23546
  writeFileSync(p, JSON.stringify(existing, null, 2));
23547
23547
  copyOpenCodeAgents();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blitzstrike",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Blitz Strike — a universal MCP security-audit toolbelt. BLITZ sweeps the attack surface, EAGLE-EYE traces source-to-sink, STRIKE verifies live. 57 attack chains, 130-tool catalog, intelligence data layer. One server, every agent.",
5
5
  "type": "module",
6
6
  "bin": {