opencode-orchestrator 1.0.3 → 1.0.5
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
CHANGED
|
@@ -18,7 +18,7 @@ npm install -g opencode-orchestrator
|
|
|
18
18
|
|
|
19
19
|
Then in OpenCode:
|
|
20
20
|
```bash
|
|
21
|
-
/
|
|
21
|
+
/extreme-mission "Implement a Diablo2 Online Game for Web"
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## 🏔️ Extreme Resilience & Performance
|
|
@@ -66,7 +66,7 @@ Built for "Infinite Missions," the OpenCode Orchestrator is engineered to handle
|
|
|
66
66
|
## 🏛️ Workflow Architecture
|
|
67
67
|
|
|
68
68
|
```
|
|
69
|
-
/
|
|
69
|
+
/extreme-mission "Build REST API"
|
|
70
70
|
│
|
|
71
71
|
╔═══════════════════════════════════╗
|
|
72
72
|
║ 🎯 COMMANDER — "Start the task" ║
|
package/dist/index.js
CHANGED
|
@@ -624,7 +624,7 @@ var PROMPTS = {
|
|
|
624
624
|
|
|
625
625
|
// src/shared/message/constants/slash-commands.ts
|
|
626
626
|
var COMMAND_NAMES = {
|
|
627
|
-
TASK: "
|
|
627
|
+
TASK: "extreme-mission",
|
|
628
628
|
PLAN: "plan",
|
|
629
629
|
STATUS: "status",
|
|
630
630
|
STOP: "stop",
|
|
@@ -15455,7 +15455,7 @@ $ARGUMENTS
|
|
|
15455
15455
|
</execution_rules>
|
|
15456
15456
|
</mission>`;
|
|
15457
15457
|
var COMMANDS = {
|
|
15458
|
-
"
|
|
15458
|
+
"extreme-mission": {
|
|
15459
15459
|
description: "MISSION MODE - Execute task autonomously until complete",
|
|
15460
15460
|
template: MISSION_MODE_TEMPLATE,
|
|
15461
15461
|
argumentHint: '"mission goal"'
|
|
@@ -15516,7 +15516,7 @@ THINK \u2192 PLAN \u2192 DELEGATE \u2192 EXECUTE \u2192 VERIFY \u2192 COMPLETE
|
|
|
15516
15516
|
|
|
15517
15517
|
## Usage
|
|
15518
15518
|
- Select **${AGENT_NAMES.COMMANDER}** and type your request
|
|
15519
|
-
- Or use \`/
|
|
15519
|
+
- Or use \`/extreme-mission "your mission"\` explicitly
|
|
15520
15520
|
- ${AGENT_NAMES.COMMANDER} automatically coordinates all agents`
|
|
15521
15521
|
}
|
|
15522
15522
|
};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Slash Commands (with slash prefix)
|
|
3
3
|
*/
|
|
4
4
|
export declare const SLASH_COMMANDS: {
|
|
5
|
-
readonly TASK: "/
|
|
5
|
+
readonly TASK: "/extreme-mission";
|
|
6
6
|
readonly PLAN: "/plan";
|
|
7
7
|
readonly STATUS: "/status";
|
|
8
8
|
readonly STOP: "/stop";
|
|
@@ -12,7 +12,7 @@ export declare const SLASH_COMMANDS: {
|
|
|
12
12
|
* Command Names (without slash prefix, for comparison after parsing)
|
|
13
13
|
*/
|
|
14
14
|
export declare const COMMAND_NAMES: {
|
|
15
|
-
readonly TASK: "
|
|
15
|
+
readonly TASK: "extreme-mission";
|
|
16
16
|
readonly PLAN: "plan";
|
|
17
17
|
readonly STATUS: "status";
|
|
18
18
|
readonly STOP: "stop";
|
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.5",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|