opencode-swarm 7.90.1 → 7.91.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.
- package/dist/cli/{guardrail-explain-w29j6dmx.js → guardrail-explain-0ephhnjq.js} +2 -2
- package/dist/cli/{index-4gm78w6c.js → index-e9tp9p2w.js} +5 -5
- package/dist/cli/{index-c5d6tgbs.js → index-gpkbg9p4.js} +2 -2
- package/dist/cli/{index-j49ge0mg.js → index-wtyysb1n.js} +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/index.js +5948 -7991
- package/dist/lang/registry.d.ts +1 -1
- package/dist/lang/symbol-graph.d.ts +43 -0
- package/dist/tools/repo-graph/builder.d.ts +30 -1
- package/dist/tools/repo-graph/query.d.ts +5 -1
- package/dist/tools/repo-graph/types.d.ts +70 -1
- package/dist/tools/repo-graph.d.ts +2 -2
- package/package.json +2 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
handleGuardrailExplain
|
|
4
|
-
} from "./index-
|
|
5
|
-
import"./index-
|
|
4
|
+
} from "./index-wtyysb1n.js";
|
|
5
|
+
import"./index-e9tp9p2w.js";
|
|
6
6
|
import"./index-6tnmt41c.js";
|
|
7
7
|
import"./index-bm4f0nme.js";
|
|
8
8
|
import"./index-5hrexm02.js";
|
|
@@ -906,7 +906,7 @@ var init_executor = __esm(() => {
|
|
|
906
906
|
// package.json
|
|
907
907
|
var package_default = {
|
|
908
908
|
name: "opencode-swarm",
|
|
909
|
-
version: "7.
|
|
909
|
+
version: "7.91.0",
|
|
910
910
|
description: "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
911
911
|
main: "dist/index.js",
|
|
912
912
|
types: "dist/index.d.ts",
|
|
@@ -977,7 +977,7 @@ var package_default = {
|
|
|
977
977
|
],
|
|
978
978
|
scripts: {
|
|
979
979
|
clean: `bun -e "require('fs').rmSync('dist',{recursive:true,force:true})"`,
|
|
980
|
-
build: "bun run clean && bun run scripts/copy-grammars.ts && bun build src/index.ts --outdir dist --target node --format esm && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm --external bash-parser --splitting && bun run scripts/copy-grammars.ts --to-dist && tsc --emitDeclarationOnly",
|
|
980
|
+
build: "bun run clean && bun run scripts/copy-grammars.ts && bun build src/index.ts --outdir dist --target node --format esm --external web-tree-sitter && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm --external bash-parser --splitting && bun run scripts/copy-grammars.ts --to-dist && tsc --emitDeclarationOnly",
|
|
981
981
|
typecheck: "tsc --noEmit",
|
|
982
982
|
test: "bun test",
|
|
983
983
|
lint: "biome lint .",
|
|
@@ -30387,7 +30387,7 @@ function buildDetailedHelp(commandName, entry) {
|
|
|
30387
30387
|
async function handleHelpCommand(ctx) {
|
|
30388
30388
|
const targetCommand = ctx.args.join(" ");
|
|
30389
30389
|
if (!targetCommand) {
|
|
30390
|
-
const { buildHelpText } = await import("./index-
|
|
30390
|
+
const { buildHelpText } = await import("./index-gpkbg9p4.js");
|
|
30391
30391
|
return buildHelpText();
|
|
30392
30392
|
}
|
|
30393
30393
|
const tokens = targetCommand.split(/\s+/);
|
|
@@ -30396,7 +30396,7 @@ async function handleHelpCommand(ctx) {
|
|
|
30396
30396
|
return _internals45.buildDetailedHelp(resolved.key, resolved.entry);
|
|
30397
30397
|
}
|
|
30398
30398
|
const similar = _internals45.findSimilarCommands(targetCommand);
|
|
30399
|
-
const { buildHelpText: fullHelp } = await import("./index-
|
|
30399
|
+
const { buildHelpText: fullHelp } = await import("./index-gpkbg9p4.js");
|
|
30400
30400
|
if (similar.length > 0) {
|
|
30401
30401
|
return `Command '/swarm ${targetCommand}' not found.
|
|
30402
30402
|
|
|
@@ -30529,7 +30529,7 @@ var COMMAND_REGISTRY = {
|
|
|
30529
30529
|
},
|
|
30530
30530
|
"guardrail explain": {
|
|
30531
30531
|
handler: async (ctx) => {
|
|
30532
|
-
const { handleGuardrailExplain } = await import("./guardrail-explain-
|
|
30532
|
+
const { handleGuardrailExplain } = await import("./guardrail-explain-0ephhnjq.js");
|
|
30533
30533
|
return handleGuardrailExplain(ctx.directory, ctx.args);
|
|
30534
30534
|
},
|
|
30535
30535
|
description: "Dry-run: show what the guardrails would do to a command or write target (executes nothing)",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
handleGuardrailExplain
|
|
4
|
-
} from "./index-
|
|
4
|
+
} from "./index-wtyysb1n.js";
|
|
5
5
|
import {
|
|
6
6
|
handleGuardrailLog
|
|
7
7
|
} from "./index-gg589mfw.js";
|
|
@@ -78,7 +78,7 @@ import {
|
|
|
78
78
|
handleWriteRetroCommand,
|
|
79
79
|
normalizeSwarmCommandInput,
|
|
80
80
|
resolveCommand
|
|
81
|
-
} from "./index-
|
|
81
|
+
} from "./index-e9tp9p2w.js";
|
|
82
82
|
import"./index-6tnmt41c.js";
|
|
83
83
|
import"./index-bm4f0nme.js";
|
|
84
84
|
import"./index-5hrexm02.js";
|
package/dist/cli/index.js
CHANGED