opencode-swarm 6.17.3 → 6.18.1
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/README.md +1 -1
- package/dist/background/queue.d.ts +1 -0
- package/dist/background/trigger.d.ts +1 -1
- package/dist/cli/index.js +4464 -3248
- package/dist/commands/index.d.ts +3 -0
- package/dist/commands/reset.d.ts +1 -0
- package/dist/commands/rollback.d.ts +5 -0
- package/dist/commands/simulate.d.ts +5 -0
- package/dist/commands/write_retro.d.ts +1 -0
- package/dist/hooks/co-change-suggester.d.ts +51 -0
- package/dist/hooks/dark-matter-detector.d.ts +38 -0
- package/dist/hooks/guardrails.d.ts +2 -1
- package/dist/hooks/knowledge-curator.d.ts +5 -0
- package/dist/hooks/steering-consumed.d.ts +30 -0
- package/dist/index.js +4101 -2866
- package/dist/session/snapshot-reader.d.ts +29 -0
- package/dist/session/snapshot-writer.d.ts +83 -0
- package/dist/tools/co-change-analyzer.d.ts +2 -0
- package/dist/tools/create-tool.d.ts +15 -0
- package/dist/tools/index.d.ts +4 -3
- package/dist/tools/phase-complete.d.ts +1 -1
- package/dist/tools/sast-scan.d.ts +8 -0
- package/dist/tools/save-plan.d.ts +1 -1
- package/dist/tools/write-retro.d.ts +53 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -187,7 +187,7 @@ For production use, mix providers to maximize quality across writing vs. reviewi
|
|
|
187
187
|
|---------|-------------|
|
|
188
188
|
| `/swarm status` | Where am I? Current phase, task progress |
|
|
189
189
|
| `/swarm plan` | Show the full project plan |
|
|
190
|
-
| `/swarm diagnose` | Health check,
|
|
190
|
+
| `/swarm diagnose` | Health check for swarm state, including config parsing, grammar files, checkpoint manifest, events stream integrity, and steering directive staleness |
|
|
191
191
|
| `/swarm evidence 2.1` | Show review/test results for a specific task |
|
|
192
192
|
| `/swarm history` | What's been completed so far |
|
|
193
193
|
| `/swarm reset --confirm` | Start over (clears all swarm state) |
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Provides a simple but powerful queue abstraction for background automation.
|
|
5
5
|
* Supports priorities, retry logic, and in-memory persistence only.
|
|
6
|
+
* NOTE: This queue does NOT persist across restarts — all items are lost when the process exits.
|
|
6
7
|
*/
|
|
7
8
|
/** Queue priority levels */
|
|
8
9
|
export type QueuePriority = 'critical' | 'high' | 'normal' | 'low';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Phase-Boundary Preflight Trigger
|
|
3
3
|
*
|
|
4
4
|
* Detects phase-boundary conditions and triggers preflight requests.
|
|
5
|
-
*
|
|
5
|
+
* Manages phase transitions and queues preflight checks via the automation event bus.
|
|
6
6
|
*/
|
|
7
7
|
import type { AutomationConfig } from '../config/schema';
|
|
8
8
|
import { type AutomationEventBus } from './event-bus';
|