opencode-orchestrator 1.0.37 → 1.0.38

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.
Files changed (2) hide show
  1. package/README.md +55 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -67,6 +67,61 @@ OpenCode Orchestrator manages complex software tasks through **parallel multi-ag
67
67
  [MISSION SEALED]
68
68
  ```
69
69
 
70
+
71
+ ```mermaid
72
+ graph TD
73
+ %% Nodes
74
+ User(("User 👤"))
75
+ LLM(("Brain (LLM) 🧠"))
76
+ Tool(("Tool 🛠️"))
77
+
78
+ %% 1. Chat Processing
79
+ subgraph Chat_Processing [Chat Processing]
80
+ UserAct[UserActivity Hook]
81
+ MissionChat[MissionControl Hook - Start]
82
+ end
83
+
84
+ %% 2. Pre-Execution
85
+ subgraph Pre_Execution [Pre-Execution Guard]
86
+ RoleGuard[StrictRoleGuard]
87
+ end
88
+
89
+ %% 3. Post-Execution
90
+ subgraph Post_Execution [Post-Execution Processing]
91
+ Scanner[SecretScanner]
92
+ UI[AgentUI Hook]
93
+ Resource[ResourceControl - Track]
94
+ end
95
+
96
+ %% 4. Completion
97
+ subgraph Completion [Completion & Loop Control]
98
+ Sanity[SanityCheck]
99
+ MissionDone[MissionControl Hook - Loop]
100
+ ResourceComp[ResourceControl - Compact]
101
+ end
102
+
103
+ %% Flow Connections
104
+ User -->|1. Message| UserAct
105
+ UserAct --> MissionChat
106
+ MissionChat -->|2. Modified Prompt| LLM
107
+
108
+ LLM -->|3. Tool Call| RoleGuard
109
+ RoleGuard -->|4. Safe?| Tool
110
+ RoleGuard -.->|Blocked| LLM
111
+
112
+ Tool -->|5. Output| Scanner
113
+ Scanner --> UI
114
+ UI --> Resource
115
+ Resource -->|6. Result| LLM
116
+
117
+ LLM -->|7. Turn Done| Sanity
118
+ Sanity --> MissionDone
119
+
120
+ MissionDone -.->|No Seal: Auto-Continue| LLM
121
+ MissionDone -->|Yes Seal: Complete| ResourceComp
122
+ ResourceComp -->|9. Final Response| User
123
+ ```
124
+
70
125
  ---
71
126
 
72
127
  ## 🚀 Agents
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.37",
5
+ "version": "1.0.38",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {