opencode-orchestrator 0.9.23 → 0.9.24
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 +63 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,6 +18,69 @@
|
|
|
18
18
|
|
|
19
19
|
---
|
|
20
20
|
|
|
21
|
+
## 🧠 Core Philosophy
|
|
22
|
+
|
|
23
|
+
> **Explore → Adapt → Act**
|
|
24
|
+
> *Never assume. Always verify. Then execute.*
|
|
25
|
+
|
|
26
|
+
### The Problem with AI Agents
|
|
27
|
+
|
|
28
|
+
Most AI agents fail because they:
|
|
29
|
+
- **Assume** instead of checking
|
|
30
|
+
- **Guess** instead of researching
|
|
31
|
+
- Follow **rigid rules** instead of adapting
|
|
32
|
+
- Trust **memory** instead of verifying
|
|
33
|
+
|
|
34
|
+
### Our Solution: Adaptive Intelligence
|
|
35
|
+
|
|
36
|
+
Every agent in this system follows a simple principle:
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
40
|
+
│ │
|
|
41
|
+
│ 🔍 EXPLORE → 🔄 ADAPT → ⚡ ACT │
|
|
42
|
+
│ │
|
|
43
|
+
│ Discover Adjust to Execute with │
|
|
44
|
+
│ the reality what you find confidence │
|
|
45
|
+
│ │
|
|
46
|
+
└─────────────────────────────────────────────────────────────┘
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Agent Philosophies
|
|
50
|
+
|
|
51
|
+
| Agent | Philosophy | What It Means |
|
|
52
|
+
|:-----:|:-----------|:--------------|
|
|
53
|
+
| 🎯 **Commander** | Explore → Adapt → Act | Discover project structure first, then delegate intelligently |
|
|
54
|
+
| 📋 **Planner** | Research → Plan → Document | Never guess syntax. Find official docs, verify, then plan |
|
|
55
|
+
| 🔨 **Worker** | Observe → Learn → Implement | Study existing code patterns, then write code that fits |
|
|
56
|
+
| ✅ **Reviewer** | Understand → Verify → Approve | Know the project's standards, run actual tests, approve with evidence |
|
|
57
|
+
|
|
58
|
+
### Guiding Principles
|
|
59
|
+
|
|
60
|
+
1. **🔍 Never Assume, Always Discover**
|
|
61
|
+
- Read `context.md` before every action
|
|
62
|
+
- Detect the tech stack, don't assume it
|
|
63
|
+
- Find the build/test commands, don't guess them
|
|
64
|
+
|
|
65
|
+
2. **📚 Evidence Over Memory**
|
|
66
|
+
- Cite official documentation for every claim
|
|
67
|
+
- Run actual commands for verification
|
|
68
|
+
- Mark complete only with proof
|
|
69
|
+
|
|
70
|
+
3. **🔄 Adapt to the Project**
|
|
71
|
+
- Match existing code patterns
|
|
72
|
+
- Follow discovered conventions
|
|
73
|
+
- Respect the project's way of doing things
|
|
74
|
+
|
|
75
|
+
4. **🤝 Separation of Concerns**
|
|
76
|
+
- Commander orchestrates, never implements
|
|
77
|
+
- Worker builds, never verifies
|
|
78
|
+
- Reviewer approves, never codes
|
|
79
|
+
- Each agent does one thing excellently
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
|
|
21
84
|
## ⚡ Quick Start
|
|
22
85
|
|
|
23
86
|
```bash
|
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": "0.9.
|
|
5
|
+
"version": "0.9.24",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|