opencode-swarm 6.17.1 → 6.17.2
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/index.d.ts +5 -1
- package/dist/cli/index.js +37108 -19
- package/dist/commands/index.d.ts +1 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/commands/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export { handleConfigCommand } from './config';
|
|
|
8
8
|
export { handleDarkMatterCommand } from './dark-matter';
|
|
9
9
|
export { handleDiagnoseCommand } from './diagnose';
|
|
10
10
|
export { handleDoctorCommand } from './doctor';
|
|
11
|
-
export { handleEvidenceCommand } from './evidence';
|
|
11
|
+
export { handleEvidenceCommand, handleEvidenceSummaryCommand, } from './evidence';
|
|
12
12
|
export { handleExportCommand } from './export';
|
|
13
13
|
export { handleHistoryCommand } from './history';
|
|
14
14
|
export { handleKnowledgeMigrateCommand, handleKnowledgeQuarantineCommand, handleKnowledgeRestoreCommand, } from './knowledge';
|
package/dist/index.js
CHANGED
|
@@ -38923,6 +38923,7 @@ Available commands via /swarm: status, plan, agents, history, config, config doc
|
|
|
38923
38923
|
evidence, evidence summary, archive, diagnose, preflight, sync-plan, benchmark, export,
|
|
38924
38924
|
reset, retrieve, clarify, analyze, specify, dark-matter, knowledge quarantine, knowledge restore, knowledge migrate.
|
|
38925
38925
|
Type /swarm (no arguments) for full help.
|
|
38926
|
+
Outside OpenCode, invoke any plugin command via: \`bunx opencode-swarm run <command> [args]\` (e.g. \`bunx opencode-swarm run knowledge migrate\`). Do not use \`bun -e\` or look for \`src/commands/\` \u2014 those paths are internal to the plugin source and do not exist in user project directories.
|
|
38926
38927
|
|
|
38927
38928
|
SMEs advise only. Reviewer and critic review only. None of them write code.
|
|
38928
38929
|
|
|
@@ -44616,7 +44617,8 @@ var HELP_TEXT = [
|
|
|
44616
44617
|
"- `/swarm specify [description]` \u2014 Generate or import a feature specification",
|
|
44617
44618
|
"- `/swarm dark-matter` \u2014 Detect hidden file couplings via co-change NPMI analysis",
|
|
44618
44619
|
"- `/swarm knowledge quarantine <id> [reason]` \u2014 Move a knowledge entry to quarantine",
|
|
44619
|
-
"- `/swarm knowledge restore <id>` \u2014 Restore a quarantined knowledge entry"
|
|
44620
|
+
"- `/swarm knowledge restore <id>` \u2014 Restore a quarantined knowledge entry",
|
|
44621
|
+
"- `/swarm knowledge migrate` \u2014 Migrate knowledge entries to the current format"
|
|
44620
44622
|
].join(`
|
|
44621
44623
|
`);
|
|
44622
44624
|
function createSwarmCommandHandler(directory, agents) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "6.17.
|
|
3
|
+
"version": "6.17.2",
|
|
4
4
|
"description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|