opencode-orchestrator 1.0.11 → 1.0.12
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/index.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -88,7 +88,7 @@ MSVP ensures continuous integration integrity by decoupling verification from th
|
|
|
88
88
|
* **Global Barrier-Sync Protocol**: Implements a synchronized verification gate. The system enforces a blocking "Barrier" that requires consistency across all distributed units before transitioning to the final Master Review (E2E Integration) and Mission Sealing.
|
|
89
89
|
|
|
90
90
|
```
|
|
91
|
-
/swarm "Build
|
|
91
|
+
/swarm "Build Diablo Game"
|
|
92
92
|
│
|
|
93
93
|
╔═══════════════════════════════════════╗
|
|
94
94
|
║ 🎯 COMMANDER — Orchestrator ║
|
package/dist/index.js
CHANGED
|
@@ -20549,7 +20549,7 @@ ${claudeRules}`;
|
|
|
20549
20549
|
function detectSlashCommand(text) {
|
|
20550
20550
|
const match = text.trim().match(/^\/([a-zA-Z0-9_-]+)(?:\s+(.*))?$/);
|
|
20551
20551
|
if (!match) return null;
|
|
20552
|
-
return { command: match[1], args: match[2] || "" };
|
|
20552
|
+
return { command: match[1].toLowerCase(), args: match[2] || "" };
|
|
20553
20553
|
}
|
|
20554
20554
|
|
|
20555
20555
|
// src/utils/formatting/timestamp.ts
|
|
@@ -20587,7 +20587,7 @@ function createChatMessageHandler(ctx) {
|
|
|
20587
20587
|
if (sessionID) {
|
|
20588
20588
|
handleUserMessage(sessionID);
|
|
20589
20589
|
}
|
|
20590
|
-
if (agentName === AGENT_NAMES.COMMANDER) {
|
|
20590
|
+
if (agentName === AGENT_NAMES.COMMANDER.toLowerCase()) {
|
|
20591
20591
|
if (!sessions.has(sessionID)) {
|
|
20592
20592
|
const now = Date.now();
|
|
20593
20593
|
sessions.set(sessionID, {
|
|
@@ -20621,7 +20621,7 @@ function createChatMessageHandler(ctx) {
|
|
|
20621
20621
|
}
|
|
20622
20622
|
if (parsed) {
|
|
20623
20623
|
const command = COMMANDS[parsed.command];
|
|
20624
|
-
if (command && agentName !== AGENT_NAMES.COMMANDER) {
|
|
20624
|
+
if (command && agentName !== AGENT_NAMES.COMMANDER.toLowerCase()) {
|
|
20625
20625
|
parts[textPartIndex].text = command.template.replace(
|
|
20626
20626
|
/\$ARGUMENTS/g,
|
|
20627
20627
|
parsed.args || PROMPTS.CONTINUE
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "opencode-orchestrator",
|
|
3
3
|
"displayName": "OpenCode Orchestrator",
|
|
4
4
|
"description": "Distributed Cognitive Architecture for OpenCode. Turns simple prompts into specialized multi-agent workflows (Planner, Coder, Reviewer).",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.12",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|