oh-my-opencode-slim 2.0.4 → 2.1.0
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.ja-JP.md +61 -21
- package/README.ko-KR.md +59 -19
- package/README.md +73 -20
- package/README.zh-CN.md +62 -24
- package/dist/agents/council.d.ts +1 -1
- package/dist/agents/index.d.ts +7 -2
- package/dist/agents/orchestrator.d.ts +1 -1
- package/dist/agents/permissions.d.ts +10 -0
- package/dist/cli/custom-skills-registry.d.ts +18 -0
- package/dist/cli/custom-skills.d.ts +3 -19
- package/dist/cli/index.js +1093 -186
- package/dist/cli/providers.d.ts +5 -9
- package/dist/cli/skills.d.ts +3 -3
- package/dist/companion/manager.d.ts +7 -0
- package/dist/config/constants.d.ts +3 -2
- package/dist/config/loader.d.ts +5 -2
- package/dist/config/schema.d.ts +7 -0
- package/dist/council/council-manager.d.ts +1 -1
- package/dist/hooks/auto-update-checker/skill-sync.d.ts +59 -1
- package/dist/hooks/filter-available-skills/index.d.ts +1 -2
- package/dist/hooks/foreground-fallback/index.d.ts +5 -1
- package/dist/hooks/image-hook.d.ts +1 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/loop-command/index.d.ts +13 -0
- package/dist/hooks/phase-reminder/index.d.ts +1 -2
- package/dist/hooks/task-session-manager/index.d.ts +1 -2
- package/dist/hooks/task-session-manager/pending-call-tracker.d.ts +13 -0
- package/dist/hooks/task-session-manager/task-context-tracker.d.ts +14 -0
- package/dist/hooks/types.d.ts +3 -1
- package/dist/index.js +3491 -876
- package/dist/interview/dashboard-manager.d.ts +21 -0
- package/dist/interview/dashboard.d.ts +5 -0
- package/dist/interview/document.d.ts +4 -1
- package/dist/interview/manager.d.ts +0 -14
- package/dist/interview/server.d.ts +2 -0
- package/dist/interview/service.d.ts +9 -0
- package/dist/interview/session-server.d.ts +21 -0
- package/dist/interview/types.d.ts +16 -1
- package/dist/loop/loop-session.d.ts +64 -0
- package/dist/multiplexer/factory.d.ts +5 -5
- package/dist/multiplexer/herdr/index.d.ts +31 -0
- package/dist/multiplexer/index.d.ts +1 -0
- package/dist/multiplexer/session-manager.d.ts +3 -0
- package/dist/multiplexer/types.d.ts +4 -4
- package/dist/tools/acp-run.d.ts +1 -1
- package/dist/tui-state.d.ts +3 -0
- package/dist/tui.d.ts +4 -1
- package/dist/tui.js +142 -55
- package/dist/utils/background-job-board.d.ts +20 -0
- package/dist/utils/env.d.ts +3 -0
- package/dist/utils/session.d.ts +1 -1
- package/oh-my-opencode-slim.schema.json +24 -4
- package/package.json +1 -1
- package/src/skills/clonedeps/SKILL.md +2 -2
- package/src/skills/clonedeps/codemap.md +23 -32
- package/src/skills/codemap/SKILL.md +2 -2
- package/src/skills/codemap.md +63 -36
- package/src/skills/loop-engineering/SKILL.md +30 -0
- package/src/skills/reflect/SKILL.md +133 -0
- package/src/skills/release-smoke-test/SKILL.md +159 -0
- package/src/skills/simplify/SKILL.md +6 -6
package/README.ja-JP.md
CHANGED
|
@@ -32,6 +32,20 @@ oh-my-opencode-slim は OpenCode 向けのエージェントオーケストレ
|
|
|
32
32
|
|
|
33
33
|
各エージェントについて知りたい場合は **[Meet the Pantheon](#meet-the-pantheon)** を参照してください。機能の全体像は下記の **[Features & Workflows](#features-and-workflows)** をご覧ください。
|
|
34
34
|
|
|
35
|
+
### LazySkills でエージェントスキルを管理
|
|
36
|
+
|
|
37
|
+
<p align="center">
|
|
38
|
+
<a href="https://github.com/alvinunreal/lazyskills">
|
|
39
|
+
<img src="img/lazyskills-wide.svg" alt="LazySkills" width="720">
|
|
40
|
+
</a>
|
|
41
|
+
</p>
|
|
42
|
+
|
|
43
|
+
**[LazySkills](https://github.com/alvinunreal/lazyskills)** は、エージェントスキルを管理するためのターミナル UI です。インストール済みのスキル、各スキルを使用できるエージェント、可視性が壊れている理由、次に安全に実行できる操作を 1 か所で確認できます。
|
|
44
|
+
|
|
45
|
+
<p align="center">
|
|
46
|
+
<a href="https://github.com/alvinunreal/lazyskills"><b>LazySkills を見る →</b></a>
|
|
47
|
+
</p>
|
|
48
|
+
|
|
35
49
|
### ユーザーの声
|
|
36
50
|
|
|
37
51
|
> “タスク管理は 5/10 から簡単に 8〜9/10 まで上がりました。
|
|
@@ -74,10 +88,37 @@ Install and configure oh-my-opencode-slim: https://raw.githubusercontent.com/alv
|
|
|
74
88
|
bunx oh-my-opencode-slim@latest install
|
|
75
89
|
```
|
|
76
90
|
|
|
91
|
+
### Master ブランチから実行
|
|
92
|
+
|
|
93
|
+
最新コードを使いたい場合、バグ修正を試したい場合、またはローカルで
|
|
94
|
+
開発・コントリビュートしたい場合はこちらを使ってください:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
git clone https://github.com/alvinunreal/oh-my-opencode-slim.git ~/repos/oh-my-opencode-slim
|
|
98
|
+
cd ~/repos/oh-my-opencode-slim
|
|
99
|
+
bun install
|
|
100
|
+
bun run build
|
|
101
|
+
bun dist/cli/index.js install
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
インストーラーはローカルリポジトリのパスを
|
|
105
|
+
`~/.config/opencode/opencode.json` の `plugin` 配列に追加するため、
|
|
106
|
+
OpenCode はそのフォルダーからプラグインを読み込みます。後で更新するには:
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
cd ~/repos/oh-my-opencode-slim
|
|
110
|
+
git pull
|
|
111
|
+
bun install
|
|
112
|
+
bun run build
|
|
113
|
+
```
|
|
114
|
+
|
|
77
115
|
### はじめに
|
|
78
116
|
|
|
79
117
|
インストーラーは OpenAI と OpenCode Go の両方のプリセットを生成し、デフォルトでは OpenAI が有効になります。
|
|
80
118
|
|
|
119
|
+
> [!TIP]
|
|
120
|
+
> モデルやエージェントは、自分のワークフローに合わせて自由に調整してください。デフォルトプリセットは出発点にすぎません。このプラグインは、深い柔軟性とカスタマイズ性を提供するために設計されています。
|
|
121
|
+
|
|
81
122
|
インストール時に OpenCode Go を有効にするには、`bunx oh-my-opencode-slim@latest install --preset=opencode-go` を実行するか、インストール後に `~/.config/opencode/oh-my-opencode-slim.json` のデフォルトプリセット名を変更してください。
|
|
82
123
|
|
|
83
124
|
次に:
|
|
@@ -100,7 +141,7 @@ bunx oh-my-opencode-slim@latest install
|
|
|
100
141
|
> バックグラウンドオーケストレーションの仕組みを理解しておくことを**推奨**します。**[Orchestrator のプロンプト](https://github.com/alvinunreal/oh-my-opencode-slim/blob/master/src/agents/orchestrator.ts#L28)** には、スケジューラーのルール、専門エージェントへのルーティングロジック、作業をバックグラウンドエージェントへ割り当てるしきい値が記述されています。`@agentName <task>` のようにサブエージェントを呼び出すことで、いつでも手動で委譲できます。
|
|
101
142
|
|
|
102
143
|
> [!TIP]
|
|
103
|
-
> バックグラウンドエージェントが現在のデフォルトワークフローになっているため、**[Multiplexer Integration](docs/multiplexer-integration.md)** を有効化して設定することを**強く推奨**します。各エージェントが専用の Tmux または
|
|
144
|
+
> バックグラウンドエージェントが現在のデフォルトワークフローになっているため、**[Multiplexer Integration](docs/multiplexer-integration.md)** を有効化して設定することを**強く推奨**します。各エージェントが専用の Tmux、Zellij または Herdr ペインで自動的に開かれるため、Orchestrator がセッションを調整し続けている間も、専門エージェントの作業をリアルタイムで追えます。
|
|
104
145
|
|
|
105
146
|
デフォルトで生成される設定には `openai` と `opencode-go` の両方のプリセットが含まれます。
|
|
106
147
|
|
|
@@ -118,12 +159,11 @@ bunx oh-my-opencode-slim@latest install
|
|
|
118
159
|
"fixer": { "model": "openai/gpt-5.5", "variant": "low", "skills": [], "mcps": [] }
|
|
119
160
|
},
|
|
120
161
|
"opencode-go": {
|
|
121
|
-
"orchestrator": { "model": "opencode-go/glm-5.
|
|
122
|
-
"oracle": { "model": "opencode-go/
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"designer": { "model": "opencode-go/kimi-k2.6", "variant": "medium", "skills": [], "mcps": [] },
|
|
162
|
+
"orchestrator": { "model": "opencode-go/glm-5.2", "skills": [ "*" ], "mcps": [ "*", "!context7" ] },
|
|
163
|
+
"oracle": { "model": "opencode-go/qwen3.7-max", "variant": "max", "skills": ["simplify"], "mcps": [] },
|
|
164
|
+
"librarian": { "model": "opencode-go/deepseek-v4-flash", "skills": [], "mcps": [ "websearch", "context7", "gh_grep" ] },
|
|
165
|
+
"explorer": { "model": "opencode-go/deepseek-v4-flash", "skills": [], "mcps": [] },
|
|
166
|
+
"designer": { "model": "opencode-go/kimi-k2.7-code", "variant": "medium", "skills": [], "mcps": [] },
|
|
127
167
|
"fixer": { "model": "opencode-go/deepseek-v4-flash", "variant": "high", "skills": [], "mcps": [] }
|
|
128
168
|
}
|
|
129
169
|
}
|
|
@@ -161,12 +201,12 @@ ping all agents
|
|
|
161
201
|
|
|
162
202
|
V2 は oh-my-opencode-slim を、スケジューラー中心のマルチエージェントワークフローシステムへと進化させます。Orchestrator は計画、委譲、結果の整合、検証に集中し、専門エージェントはそれぞれの lane で作業を行います。
|
|
163
203
|
|
|
164
|
-
- **[バックグラウンドエージェント](#バックグラウンドエージェント)**
|
|
165
|
-
- **[Companion](#companion)**
|
|
166
|
-
- **[Deepwork](#deepwork)**
|
|
167
|
-
- **[Reflect](#reflect)**
|
|
168
|
-
- **[Worktrees](#worktrees)**
|
|
169
|
-
- **[oh-my-opencode-slim Skill](#oh-my-opencode-slim-skill)**
|
|
204
|
+
- **[バックグラウンドエージェント](#バックグラウンドエージェント)** - Orchestrator は専門家をバックグラウンドタスクとしてディスパッチし、タスク/セッション ID を追跡し、完了イベントを待ってから結果を整合します。
|
|
205
|
+
- **[Companion](#companion)** - 任意のフローティングデスクトップウィンドウが、並列実行中のバックグラウンド専門家を含め、現在アクティブなエージェントを表示します。
|
|
206
|
+
- **[Deepwork](#deepwork)** - 大規模、多ファイル、高リスク、または段階的なコーディング作業向けの構造化ワークフローです。永続的な計画ファイルと Oracle レビューゲートを使用します。
|
|
207
|
+
- **[Reflect](#reflect)** - 繰り返される作業パターンを振り返り、再利用可能な skill、エージェント、コマンド、設定ルール、プロンプトルール、プロジェクト playbook を提案します。
|
|
208
|
+
- **[Worktrees](#worktrees)** - 複雑、高リスク、または並列タスク向けに、安全プロトコル付きの隔離されたコーディング lane として Git worktree を管理します。
|
|
209
|
+
- **[oh-my-opencode-slim Skill](#oh-my-opencode-slim-skill)** - モデル、プロンプト、カスタムエージェント、MCP アクセス、プリセット、プラグイン動作を安全に調整するための同梱設定 skill です。
|
|
170
210
|
|
|
171
211
|
#### バックグラウンドエージェント
|
|
172
212
|
|
|
@@ -183,7 +223,7 @@ V2 では、バックグラウンド専門家が基本の考え方になりま
|
|
|
183
223
|
<p><i>左下のビジュアル Companion。</i></p>
|
|
184
224
|
</div>
|
|
185
225
|
|
|
186
|
-
対話式インストールでは、インストーラーが Companion を有効にするか尋ね、デフォルトは `
|
|
226
|
+
対話式インストールでは、インストーラーが Companion を有効にするか尋ね、デフォルトは `no` です。自動化では明示的に有効化できます。
|
|
187
227
|
|
|
188
228
|
```bash
|
|
189
229
|
bunx oh-my-opencode-slim@latest install --companion=yes
|
|
@@ -401,7 +441,7 @@ Worktrees は、Git worktree を `.slim/worktrees/<slug>/` 配下の安全で隔
|
|
|
401
441
|
</tr>
|
|
402
442
|
<tr>
|
|
403
443
|
<td colspan="2">
|
|
404
|
-
<b>Default Setup:</b> <code>Config-driven</code>
|
|
444
|
+
<b>Default Setup:</b> <code>Config-driven</code> - 評議員(councillors)は <code>council.presets</code> から、Council エージェント自身のモデルは通常の <code>council</code> エージェント設定から決定されます
|
|
405
445
|
</td>
|
|
406
446
|
</tr>
|
|
407
447
|
<tr>
|
|
@@ -468,7 +508,7 @@ Worktrees は、Git worktree を `.slim/worktrees/<slug>/` 配下の安全で隔
|
|
|
468
508
|
<br><sub><i>美は不可欠なもの。</i></sub>
|
|
469
509
|
</td>
|
|
470
510
|
<td width="70%" valign="top">
|
|
471
|
-
Designer
|
|
511
|
+
Designer は、美が重要であることを忘れがちな世界において、それを守り続ける不死の守護者です。これまでに無数のインターフェースが現れては消えるのを見届け、どれが人々の記憶に残り、どれが忘れ去られたかを知っています。すべてのピクセルに目的を、すべてのアニメーションに物語を、すべてのインタラクションに喜びを宿す--その神聖な責務を担います。美は選択肢ではなく、不可欠なものです。
|
|
472
512
|
</td>
|
|
473
513
|
</tr>
|
|
474
514
|
<tr>
|
|
@@ -509,7 +549,7 @@ Worktrees は、Git worktree を `.slim/worktrees/<slug>/` 配下の安全で隔
|
|
|
509
549
|
<br><sub><i>構想と現実を結ぶ最後の一歩。</i></sub>
|
|
510
550
|
</td>
|
|
511
551
|
<td width="70%" valign="top">
|
|
512
|
-
Fixer
|
|
552
|
+
Fixer は、かつてデジタル世界の礎を築き上げた建造者の系譜の最後のひとりです。計画と議論の時代が始まってもなお、彼らだけは残りました--実際に作る者として。思考をモノへと変え、仕様を実装へと転換する古の知恵を継承しています。Fixer は、構想と現実の間にある最後の一歩です。
|
|
513
553
|
</td>
|
|
514
554
|
</tr>
|
|
515
555
|
<tr>
|
|
@@ -556,11 +596,11 @@ Worktrees は、Git worktree を `.slim/worktrees/<slug>/` 配下の安全で隔
|
|
|
556
596
|
</td>
|
|
557
597
|
<td width="70%" valign="top">
|
|
558
598
|
|
|
559
|
-
**読み取り専用のビジュアル解析**
|
|
599
|
+
**読み取り専用のビジュアル解析** - 画像、スクリーンショット、PDF、図解を解釈します。ファイルの生バイトをメインのコンテキストウィンドウに読み込ませることなく、構造化された観察結果をオーケストレーターに返します。
|
|
560
600
|
|
|
561
601
|
- 画像、スクリーンショット、図解 → `read` ツール(ネイティブな画像サポート)
|
|
562
602
|
- PDF やバイナリドキュメント → `read` ツール(テキスト+構造抽出)
|
|
563
|
-
- **デフォルトでは無効**
|
|
603
|
+
- **デフォルトでは無効** - `"disabled_agents": []` を設定し、ビジョン対応モデルを構成することで有効化できます。`--preset=opencode-go` でインストールすると `opencode-go/kimi-k2.6` で有効になります
|
|
564
604
|
|
|
565
605
|
</td>
|
|
566
606
|
</tr>
|
|
@@ -571,7 +611,7 @@ Worktrees は、Git worktree を `.slim/worktrees/<slug>/` 配下の安全で隔
|
|
|
571
611
|
</tr>
|
|
572
612
|
<tr>
|
|
573
613
|
<td colspan="2">
|
|
574
|
-
<b>Default Model:</b> <code>openai/gpt-5.4-mini</code>
|
|
614
|
+
<b>Default Model:</b> <code>openai/gpt-5.4-mini</code> - <i>有効化するにはビジョン対応モデルを設定してください</i>
|
|
575
615
|
</td>
|
|
576
616
|
</tr>
|
|
577
617
|
<tr>
|
|
@@ -596,7 +636,7 @@ Worktrees は、Git worktree を `.slim/worktrees/<slug>/` 配下の安全で隔
|
|
|
596
636
|
| **[Council](docs/council.md)** | 複数のモデルを並列実行し、`@council` で 1 つの回答に統合します |
|
|
597
637
|
| **[Custom Agents](docs/configuration.md#custom-agents)** | カスタムプロンプト、モデル、MCP アクセス、Orchestrator の委譲ルールを備えた独自の専門エージェントを定義します |
|
|
598
638
|
| **[ACP Agents](docs/acp-agents.md)** | Claude Code ACP や Gemini ACP などの外部 ACP 互換エージェントを委譲可能なサブエージェントとして接続します |
|
|
599
|
-
| **[Multiplexer Integration](docs/multiplexer-integration.md)** | エージェントの動作を Tmux や
|
|
639
|
+
| **[Multiplexer Integration](docs/multiplexer-integration.md)** | エージェントの動作を Tmux、Zellij や Herdr のペインでライブ表示します |
|
|
600
640
|
| **[Codemap](docs/codemap.md)** | 階層的なコードマップを生成し、大規模コードベースを迅速に理解します |
|
|
601
641
|
| **[Clonedeps](docs/clonedeps.md)** | 選択した依存関係のソースを ignore 済みのローカルワークスペースにクローンし、調査できるようにします |
|
|
602
642
|
| **[Worktrees](docs/worktrees.md)** | `.slim/worktrees/` lane を使い、隔離された並列または高リスクなコーディング作業を行います |
|
package/README.ko-KR.md
CHANGED
|
@@ -32,6 +32,20 @@ oh-my-opencode-slim은 OpenCode용 에이전트 오케스트레이션 플러그
|
|
|
32
32
|
|
|
33
33
|
에이전트 자체를 살펴보려면 **[판테온 만나보기](#meet-the-pantheon)** 를 참고하세요. 전체 기능 세트는 아래의 **[기능 & 워크플로우](#features-and-workflows)** 에서 확인할 수 있습니다.
|
|
34
34
|
|
|
35
|
+
### LazySkills로 에이전트 스킬 관리하기
|
|
36
|
+
|
|
37
|
+
<p align="center">
|
|
38
|
+
<a href="https://github.com/alvinunreal/lazyskills">
|
|
39
|
+
<img src="img/lazyskills-wide.svg" alt="LazySkills" width="720">
|
|
40
|
+
</a>
|
|
41
|
+
</p>
|
|
42
|
+
|
|
43
|
+
**[LazySkills](https://github.com/alvinunreal/lazyskills)** 는 에이전트 스킬을 관리하기 위한 터미널 UI입니다. 설치된 스킬, 각 스킬을 사용할 수 있는 에이전트, 가시성이 깨질 수 있는 이유, 다음에 안전하게 실행할 수 있는 작업을 한곳에서 확인할 수 있습니다.
|
|
44
|
+
|
|
45
|
+
<p align="center">
|
|
46
|
+
<a href="https://github.com/alvinunreal/lazyskills"><b>LazySkills 살펴보기 →</b></a>
|
|
47
|
+
</p>
|
|
48
|
+
|
|
35
49
|
### 사용자들의 말
|
|
36
50
|
|
|
37
51
|
> “작업 관리가 쉽게 5/10에서 8-9/10으로 올라갔습니다.
|
|
@@ -72,10 +86,37 @@ Install and configure oh-my-opencode-slim: https://raw.githubusercontent.com/alv
|
|
|
72
86
|
bunx oh-my-opencode-slim@latest install
|
|
73
87
|
```
|
|
74
88
|
|
|
89
|
+
### Master 브랜치에서 실행하기
|
|
90
|
+
|
|
91
|
+
최신 코드를 사용하거나, 버그를 고치거나, 로컬에서 개발하고 기여하려면 이
|
|
92
|
+
방식을 사용하세요:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
git clone https://github.com/alvinunreal/oh-my-opencode-slim.git ~/repos/oh-my-opencode-slim
|
|
96
|
+
cd ~/repos/oh-my-opencode-slim
|
|
97
|
+
bun install
|
|
98
|
+
bun run build
|
|
99
|
+
bun dist/cli/index.js install
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
인스톨러는 로컬 저장소 경로를 `~/.config/opencode/opencode.json`의
|
|
103
|
+
`plugin` 배열에 추가하므로, OpenCode는 해당 폴더에서 플러그인을 로드합니다.
|
|
104
|
+
나중에 업데이트하려면:
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
cd ~/repos/oh-my-opencode-slim
|
|
108
|
+
git pull
|
|
109
|
+
bun install
|
|
110
|
+
bun run build
|
|
111
|
+
```
|
|
112
|
+
|
|
75
113
|
### 시작하기
|
|
76
114
|
|
|
77
115
|
인스톨러는 OpenAI와 OpenCode Go 프리셋을 모두 생성하며, 기본적으로 OpenAI가 활성화됩니다.
|
|
78
116
|
|
|
117
|
+
> [!TIP]
|
|
118
|
+
> 모델과 에이전트는 자신의 워크플로에 맞게 자유롭게 조정하세요. 기본 프리셋은 시작점일 뿐이며, 이 플러그인은 깊은 유연성과 커스터마이징을 제공하도록 설계되었습니다.
|
|
119
|
+
|
|
79
120
|
설치 중 OpenCode Go를 활성화하려면 `bunx oh-my-opencode-slim@latest install --preset=opencode-go`를 실행하거나, 설치 후 `~/.config/opencode/oh-my-opencode-slim.json`에서 기본 프리셋 이름을 변경하세요.
|
|
80
121
|
|
|
81
122
|
그 다음:
|
|
@@ -98,7 +139,7 @@ bunx oh-my-opencode-slim@latest install
|
|
|
98
139
|
> 자동 위임이 어떻게 동작하는지 이해하는 것을 **권장**합니다. **[Orchestrator 프롬프트](https://github.com/alvinunreal/oh-my-opencode-slim/blob/master/src/agents/orchestrator.ts#L28)** 에는 위임 규칙, 전문 에이전트 라우팅 로직, 메인 에이전트가 언제 서브에이전트로 작업을 넘겨야 하는지에 대한 임계값이 포함되어 있습니다. 수동으로 위임하려면 `@agentName <task>`로 서브에이전트를 호출하면 됩니다.
|
|
99
140
|
|
|
100
141
|
> [!TIP]
|
|
101
|
-
> 이제 백그라운드 에이전트가 기본 워크플로이므로 **[Multiplexer Integration](docs/multiplexer-integration.md)** 을 활성화하고 설정하는 것을 **강력히 권장**합니다. 각 에이전트를 전용 Tmux 또는
|
|
142
|
+
> 이제 백그라운드 에이전트가 기본 워크플로이므로 **[Multiplexer Integration](docs/multiplexer-integration.md)** 을 활성화하고 설정하는 것을 **강력히 권장**합니다. 각 에이전트를 전용 Tmux, Zellij, 또는 Herdr 창에서 자동으로 열어 주기 때문에, Orchestrator가 세션을 계속 조율하는 동안 전문 에이전트들의 작업을 실시간으로 따라볼 수 있습니다.
|
|
102
143
|
|
|
103
144
|
기본 생성 설정에는 `openai`와 `opencode-go` 프리셋이 모두 포함되어 있습니다.
|
|
104
145
|
|
|
@@ -116,12 +157,11 @@ bunx oh-my-opencode-slim@latest install
|
|
|
116
157
|
"fixer": { "model": "openai/gpt-5.5", "variant": "low", "skills": [], "mcps": [] }
|
|
117
158
|
},
|
|
118
159
|
"opencode-go": {
|
|
119
|
-
"orchestrator": { "model": "opencode-go/glm-5.
|
|
120
|
-
"oracle": { "model": "opencode-go/
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"designer": { "model": "opencode-go/kimi-k2.6", "variant": "medium", "skills": [], "mcps": [] },
|
|
160
|
+
"orchestrator": { "model": "opencode-go/glm-5.2", "skills": [ "*" ], "mcps": [ "*", "!context7" ] },
|
|
161
|
+
"oracle": { "model": "opencode-go/qwen3.7-max", "variant": "max", "skills": ["simplify"], "mcps": [] },
|
|
162
|
+
"librarian": { "model": "opencode-go/deepseek-v4-flash", "skills": [], "mcps": [ "websearch", "context7", "gh_grep" ] },
|
|
163
|
+
"explorer": { "model": "opencode-go/deepseek-v4-flash", "skills": [], "mcps": [] },
|
|
164
|
+
"designer": { "model": "opencode-go/kimi-k2.7-code", "variant": "medium", "skills": [], "mcps": [] },
|
|
125
165
|
"fixer": { "model": "opencode-go/deepseek-v4-flash", "variant": "high", "skills": [], "mcps": [] }
|
|
126
166
|
}
|
|
127
167
|
}
|
|
@@ -159,12 +199,12 @@ ping all agents
|
|
|
159
199
|
|
|
160
200
|
V2는 oh-my-opencode-slim을 스케줄러 중심의 멀티 에이전트 워크플로 시스템으로 바꿉니다. Orchestrator는 계획, 위임, 결과 조정, 검증에 집중하고, 전문가들은 각자의 lane에서 작업합니다.
|
|
161
201
|
|
|
162
|
-
- **[백그라운드 에이전트](#백그라운드-에이전트)**
|
|
163
|
-
- **[Companion](#companion)**
|
|
164
|
-
- **[Deepwork](#deepwork)**
|
|
165
|
-
- **[Reflect](#reflect)**
|
|
166
|
-
- **[Worktrees](#worktrees)**
|
|
167
|
-
- **[oh-my-opencode-slim Skill](#oh-my-opencode-slim-skill)**
|
|
202
|
+
- **[백그라운드 에이전트](#백그라운드-에이전트)** - Orchestrator가 전문가를 백그라운드 작업으로 디스패치하고, 작업/세션 ID를 추적하며, 완료 이벤트를 기다린 뒤 결과를 조정합니다.
|
|
203
|
+
- **[Companion](#companion)** - 선택 사항인 플로팅 데스크톱 창이 병렬 백그라운드 전문가를 포함해 현재 활성 에이전트를 보여줍니다.
|
|
204
|
+
- **[Deepwork](#deepwork)** - 대규모, 다중 파일, 위험도가 높거나 단계적인 코딩 작업을 위한 구조화된 워크플로입니다. 지속적인 계획 파일과 Oracle 리뷰 게이트를 사용합니다.
|
|
205
|
+
- **[Reflect](#reflect)** - 반복되는 작업 패턴을 돌아보고 재사용 가능한 skill, 에이전트, 명령, 설정 규칙, 프롬프트 규칙, 프로젝트 playbook을 제안합니다.
|
|
206
|
+
- **[Worktrees](#worktrees)** - 복잡하거나 위험하거나 병렬로 진행되는 작업을 위해 Git worktree를 안전 프로토콜이 있는 격리된 코딩 lane으로 관리합니다.
|
|
207
|
+
- **[oh-my-opencode-slim Skill](#oh-my-opencode-slim-skill)** - 모델, 프롬프트, 커스텀 에이전트, MCP 접근, 프리셋, 플러그인 동작을 안전하게 조정하는 번들 설정 skill입니다.
|
|
168
208
|
|
|
169
209
|
#### 백그라운드 에이전트
|
|
170
210
|
|
|
@@ -181,7 +221,7 @@ V2에서는 백그라운드 전문가가 기본 동작 모델입니다. Orchestr
|
|
|
181
221
|
<p><i>왼쪽 아래의 시각적 companion.</i></p>
|
|
182
222
|
</div>
|
|
183
223
|
|
|
184
|
-
대화형 설치 중 인스톨러는 Companion 활성화 여부를 묻고 기본값은 `
|
|
224
|
+
대화형 설치 중 인스톨러는 Companion 활성화 여부를 묻고 기본값은 `no`입니다. 자동화에서는 명시적으로 활성화할 수 있습니다.
|
|
185
225
|
|
|
186
226
|
```bash
|
|
187
227
|
bunx oh-my-opencode-slim@latest install --companion=yes
|
|
@@ -399,7 +439,7 @@ Worktrees는 Git worktree를 `.slim/worktrees/<slug>/` 아래의 안전하고
|
|
|
399
439
|
</tr>
|
|
400
440
|
<tr>
|
|
401
441
|
<td colspan="2">
|
|
402
|
-
<b>기본 설정:</b> <code>Config-driven</code>
|
|
442
|
+
<b>기본 설정:</b> <code>Config-driven</code> - Council 구성원은 <code>council.presets</code>에서 가져오고, Council 에이전트 모델은 일반 <code>council</code> 에이전트 설정에서 가져옵니다
|
|
403
443
|
</td>
|
|
404
444
|
</tr>
|
|
405
445
|
<tr>
|
|
@@ -554,11 +594,11 @@ Worktrees는 Git worktree를 `.slim/worktrees/<slug>/` 아래의 안전하고
|
|
|
554
594
|
</td>
|
|
555
595
|
<td width="70%" valign="top">
|
|
556
596
|
|
|
557
|
-
**읽기 전용 시각 분석**
|
|
597
|
+
**읽기 전용 시각 분석** - 이미지, 스크린샷, PDF, 다이어그램을 해석합니다. 원시 파일 바이트를 메인 컨텍스트 윈도우에 로드하지 않고, 구조화된 관찰 결과를 오케스트레이터에 반환합니다.
|
|
558
598
|
|
|
559
599
|
- 이미지, 스크린샷, 다이어그램 -> `read` 도구 (네이티브 이미지 지원)
|
|
560
600
|
- PDF 및 바이너리 문서 -> `read` 도구 (텍스트 + 구조 추출)
|
|
561
|
-
- **기본 비활성화**
|
|
601
|
+
- **기본 비활성화** - `"disabled_agents": []`로 설정하고 비전 지원 모델을 구성하여 활성화; `--preset=opencode-go`로 설치하면 `opencode-go/kimi-k2.6`으로 자동 활성화됩니다
|
|
562
602
|
|
|
563
603
|
</td>
|
|
564
604
|
</tr>
|
|
@@ -569,7 +609,7 @@ Worktrees는 Git worktree를 `.slim/worktrees/<slug>/` 아래의 안전하고
|
|
|
569
609
|
</tr>
|
|
570
610
|
<tr>
|
|
571
611
|
<td colspan="2">
|
|
572
|
-
<b>기본 모델:</b> <code>openai/gpt-5.4-mini</code>
|
|
612
|
+
<b>기본 모델:</b> <code>openai/gpt-5.4-mini</code> - <i>비전 지원 모델을 구성하여 활성화</i>
|
|
573
613
|
</td>
|
|
574
614
|
</tr>
|
|
575
615
|
<tr>
|
|
@@ -594,7 +634,7 @@ Worktrees는 Git worktree를 `.slim/worktrees/<slug>/` 아래의 안전하고
|
|
|
594
634
|
| **[Council](docs/council.md)** | `@council`로 여러 모델을 병렬 실행하고 하나의 답변으로 종합 |
|
|
595
635
|
| **[Custom Agents](docs/configuration.md#custom-agents)** | 커스텀 프롬프트, 모델, MCP 접근, Orchestrator 위임 규칙으로 커스텀 전문 에이전트 정의 |
|
|
596
636
|
| **[ACP Agents](docs/acp-agents.md)** | Claude Code ACP 또는 Gemini ACP 같은 외부 ACP 호환 에이전트를 위임 가능한 서브에이전트로 연결 |
|
|
597
|
-
| **[Multiplexer Integration](docs/multiplexer-integration.md)** | Tmux 또는
|
|
637
|
+
| **[Multiplexer Integration](docs/multiplexer-integration.md)** | Tmux, Zellij, 또는 Herdr 페인에서 에이전트 작업을 실시간으로 확인 |
|
|
598
638
|
| **[Codemap](docs/codemap.md)** | 계층형 코드맵을 생성하여 대규모 코드베이스를 빠르게 파악 |
|
|
599
639
|
| **[Clonedeps](docs/clonedeps.md)** | 선택한 의존성 소스를 무시된 로컬 워크스페이스에 복제하여 검사 |
|
|
600
640
|
| **[Worktrees](docs/worktrees.md)** | `.slim/worktrees/` lane을 사용해 격리된 병렬 또는 고위험 코딩 작업 수행 |
|
package/README.md
CHANGED
|
@@ -30,6 +30,20 @@ The main idea is simple: instead of forcing one model to do everything, the plug
|
|
|
30
30
|
|
|
31
31
|
To explore the agents themselves, see **[Meet the Pantheon](#meet-the-pantheon)**. For the full feature set, see **[Features & Workflows](#features-and-workflows)** below.
|
|
32
32
|
|
|
33
|
+
### Manage Agent Skills with LazySkills
|
|
34
|
+
|
|
35
|
+
<p align="center">
|
|
36
|
+
<a href="https://github.com/alvinunreal/lazyskills">
|
|
37
|
+
<img src="img/lazyskills-wide.svg" alt="LazySkills" width="720">
|
|
38
|
+
</a>
|
|
39
|
+
</p>
|
|
40
|
+
|
|
41
|
+
**[LazySkills](https://github.com/alvinunreal/lazyskills)** is a terminal UI for managing agent skills. It gives you one place to see what is installed, which agents can use each skill, why visibility may be broken, and what actions are safe to run next.
|
|
42
|
+
|
|
43
|
+
<p align="center">
|
|
44
|
+
<a href="https://github.com/alvinunreal/lazyskills"><b>Explore LazySkills →</b></a>
|
|
45
|
+
</p>
|
|
46
|
+
|
|
33
47
|
### What Users Say
|
|
34
48
|
|
|
35
49
|
> “Task management went from 5/10 to 8-9/10 easily. The Orchestrator sends
|
|
@@ -69,10 +83,38 @@ Install and configure oh-my-opencode-slim: https://raw.githubusercontent.com/alv
|
|
|
69
83
|
bunx oh-my-opencode-slim@latest install
|
|
70
84
|
```
|
|
71
85
|
|
|
86
|
+
### Run from Master
|
|
87
|
+
|
|
88
|
+
Use this if you want the latest code, easier bug fixes, or a local setup for
|
|
89
|
+
development and contributions:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
git clone https://github.com/alvinunreal/oh-my-opencode-slim.git ~/repos/oh-my-opencode-slim
|
|
93
|
+
cd ~/repos/oh-my-opencode-slim
|
|
94
|
+
bun install
|
|
95
|
+
bun run build
|
|
96
|
+
bun dist/cli/index.js install
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
The installer adds the local repo path to the `plugin` array in
|
|
100
|
+
`~/.config/opencode/opencode.json`, so OpenCode loads the plugin from that
|
|
101
|
+
folder. To update later:
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
cd ~/repos/oh-my-opencode-slim
|
|
105
|
+
git pull
|
|
106
|
+
bun install
|
|
107
|
+
bun run build
|
|
108
|
+
```
|
|
109
|
+
|
|
72
110
|
### Getting Started
|
|
73
111
|
|
|
74
112
|
The installer generates both OpenAI and OpenCode Go presets, with OpenAI active by default.
|
|
75
113
|
|
|
114
|
+
> [!TIP]
|
|
115
|
+
> Tune the models and agents for your own workflow. The defaults are only a
|
|
116
|
+
> starting point; the plugin is designed for deep flexibility and customization.
|
|
117
|
+
|
|
76
118
|
To make OpenCode Go active during install, run `bunx oh-my-opencode-slim@latest install --preset=opencode-go` or change the default preset name in `~/.config/opencode/oh-my-opencode-slim.json` after installation.
|
|
77
119
|
|
|
78
120
|
Then:
|
|
@@ -95,7 +137,7 @@ Then:
|
|
|
95
137
|
> It's **recommended** to understand how background orchestration works. The **[Orchestrator prompt](https://github.com/alvinunreal/oh-my-opencode-slim/blob/master/src/agents/orchestrator.ts#L28)** contains the scheduler rules, specialist routing logic, and thresholds for when work should be assigned to background agents. You can always delegate manually by calling a subagent via: `@agentName <task>`
|
|
96
138
|
|
|
97
139
|
> [!TIP]
|
|
98
|
-
> Because background agents are now the default workflow, it is **highly recommended** to enable and configure **[Multiplexer Integration](docs/multiplexer-integration.md)**. It automatically opens each agent in a dedicated Tmux or
|
|
140
|
+
> Because background agents are now the default workflow, it is **highly recommended** to enable and configure **[Multiplexer Integration](docs/multiplexer-integration.md)**. It automatically opens each agent in a dedicated Tmux, Zellij, or Herdr pane, so you can watch specialists work live while the Orchestrator continues coordinating the session.
|
|
99
141
|
|
|
100
142
|
The default generated configuration includes both `openai` and `opencode-go` presets.
|
|
101
143
|
|
|
@@ -113,12 +155,11 @@ The default generated configuration includes both `openai` and `opencode-go` pre
|
|
|
113
155
|
"fixer": { "model": "openai/gpt-5.5", "variant": "low", "skills": [], "mcps": [] }
|
|
114
156
|
},
|
|
115
157
|
"opencode-go": {
|
|
116
|
-
"orchestrator": { "model": "opencode-go/glm-5.
|
|
117
|
-
"oracle": { "model": "opencode-go/
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"designer": { "model": "opencode-go/kimi-k2.6", "variant": "medium", "skills": [], "mcps": [] },
|
|
158
|
+
"orchestrator": { "model": "opencode-go/glm-5.2", "skills": [ "*" ], "mcps": [ "*", "!context7" ] },
|
|
159
|
+
"oracle": { "model": "opencode-go/qwen3.7-max", "variant": "max", "skills": ["simplify"], "mcps": [] },
|
|
160
|
+
"librarian": { "model": "opencode-go/deepseek-v4-flash", "skills": [], "mcps": [ "websearch", "context7", "gh_grep" ] },
|
|
161
|
+
"explorer": { "model": "opencode-go/deepseek-v4-flash", "skills": [], "mcps": [] },
|
|
162
|
+
"designer": { "model": "opencode-go/kimi-k2.7-code", "variant": "medium", "skills": [], "mcps": [] },
|
|
122
163
|
"fixer": { "model": "opencode-go/deepseek-v4-flash", "variant": "high", "skills": [], "mcps": [] }
|
|
123
164
|
}
|
|
124
165
|
}
|
|
@@ -158,18 +199,18 @@ V2 turns oh-my-opencode-slim into a scheduler-first multi-agent workflow system.
|
|
|
158
199
|
The Orchestrator stays focused on planning, delegation, reconciliation, and
|
|
159
200
|
verification while specialists do the work in their own lanes.
|
|
160
201
|
|
|
161
|
-
- **[Background agents](#background-agents)**
|
|
202
|
+
- **[Background agents](#background-agents)** - the Orchestrator now dispatches
|
|
162
203
|
specialists as background tasks, tracks task/session IDs, waits for completion
|
|
163
204
|
events, and reconciles results before continuing.
|
|
164
|
-
- **[Companion](#companion)**
|
|
205
|
+
- **[Companion](#companion)** - an optional floating desktop window shows which
|
|
165
206
|
agents are currently active, including parallel background specialists.
|
|
166
|
-
- **[Deepwork](#deepwork)**
|
|
207
|
+
- **[Deepwork](#deepwork)** - a structured workflow for large, multi-file, risky,
|
|
167
208
|
or phased coding work using persistent plan files and Oracle review gates.
|
|
168
|
-
- **[Reflect](#reflect)**
|
|
209
|
+
- **[Reflect](#reflect)** - reviews repeated work patterns and suggests reusable skills,
|
|
169
210
|
agents, commands, config rules, prompt rules, or project playbooks.
|
|
170
|
-
- **[Worktrees](#worktrees)**
|
|
211
|
+
- **[Worktrees](#worktrees)** - manages Git worktrees as isolated coding lanes
|
|
171
212
|
with safety protocols for complex, risky, or parallel tasks.
|
|
172
|
-
- **[oh-my-opencode-slim skill](#oh-my-opencode-slim-skill)**
|
|
213
|
+
- **[oh-my-opencode-slim skill](#oh-my-opencode-slim-skill)** - a bundled
|
|
173
214
|
configuration skill that helps tune models, prompts, custom agents, MCP access,
|
|
174
215
|
presets, and plugin behavior safely.
|
|
175
216
|
|
|
@@ -194,7 +235,7 @@ background work is easier to follow at a glance.
|
|
|
194
235
|
</div>
|
|
195
236
|
|
|
196
237
|
During interactive install, the installer asks whether to enable Companion and
|
|
197
|
-
defaults to `
|
|
238
|
+
defaults to `no`. For automation, enable it explicitly with:
|
|
198
239
|
|
|
199
240
|
```bash
|
|
200
241
|
bunx oh-my-opencode-slim@latest install --companion=yes
|
|
@@ -425,7 +466,7 @@ rules.
|
|
|
425
466
|
</tr>
|
|
426
467
|
<tr>
|
|
427
468
|
<td colspan="2">
|
|
428
|
-
<b>Default Setup:</b> <code>Config-driven</code>
|
|
469
|
+
<b>Default Setup:</b> <code>Config-driven</code> - councillors come from <code>council.presets</code> and the Council agent model comes from your normal <code>council</code> agent config
|
|
429
470
|
</td>
|
|
430
471
|
</tr>
|
|
431
472
|
<tr>
|
|
@@ -580,11 +621,11 @@ rules.
|
|
|
580
621
|
</td>
|
|
581
622
|
<td width="70%" valign="top">
|
|
582
623
|
|
|
583
|
-
**Read-only visual analysis**
|
|
624
|
+
**Read-only visual analysis** - interprets images, screenshots, PDFs, and diagrams. Returns structured observations to the orchestrator without loading raw file bytes into the main context window.
|
|
584
625
|
|
|
585
626
|
- Images, screenshots, diagrams → `read` tool (native image support)
|
|
586
627
|
- PDFs and binary documents → `read` tool (text + structure extraction)
|
|
587
|
-
- **Disabled by default**
|
|
628
|
+
- **Disabled by default** - enable with `"disabled_agents": []` and configure a vision-capable model; installing with `--preset=opencode-go` enables it with `opencode-go/kimi-k2.6`
|
|
588
629
|
|
|
589
630
|
</td>
|
|
590
631
|
</tr>
|
|
@@ -595,7 +636,7 @@ rules.
|
|
|
595
636
|
</tr>
|
|
596
637
|
<tr>
|
|
597
638
|
<td colspan="2">
|
|
598
|
-
<b>Default Model:</b> <code>openai/gpt-5.4-mini</code>
|
|
639
|
+
<b>Default Model:</b> <code>openai/gpt-5.4-mini</code> - <i>configure a vision-capable model to enable</i>
|
|
599
640
|
</td>
|
|
600
641
|
</tr>
|
|
601
642
|
<tr>
|
|
@@ -620,7 +661,7 @@ Use this section as a map: start with installation, then jump to features, confi
|
|
|
620
661
|
| **[Council](docs/council.md)** | Run multiple models in parallel and synthesize a single answer with `@council` |
|
|
621
662
|
| **[Custom Agents](docs/configuration.md#custom-agents)** | Define your own specialists with custom prompts, models, MCP access, and Orchestrator delegation rules |
|
|
622
663
|
| **[ACP Agents](docs/acp-agents.md)** | Connect external ACP-compatible agents such as Claude Code ACP or Gemini ACP as delegatable subagents |
|
|
623
|
-
| **[Multiplexer Integration](docs/multiplexer-integration.md)** | Watch agents work live in Tmux or
|
|
664
|
+
| **[Multiplexer Integration](docs/multiplexer-integration.md)** | Watch agents work live in Tmux, Zellij, or Herdr panes |
|
|
624
665
|
| **[Codemap](docs/codemap.md)** | Generate hierarchical codemaps to understand large codebases faster |
|
|
625
666
|
| **[Clonedeps](docs/clonedeps.md)** | Clone selected dependency source into an ignored local workspace for inspection |
|
|
626
667
|
| **[Worktrees](docs/worktrees.md)** | Use `.slim/worktrees/` lanes for isolated parallel or risky coding work |
|
|
@@ -634,6 +675,7 @@ Use this section as a map: start with installation, then jump to features, confi
|
|
|
634
675
|
|-----|----------------|
|
|
635
676
|
| **[Installation Guide](docs/installation.md)** | Install the plugin, use CLI flags, reset config, and troubleshoot setup |
|
|
636
677
|
| **[Configuration](docs/configuration.md)** | Config file locations, JSONC support, prompt overrides, and full option reference |
|
|
678
|
+
| **[Project Customization](docs/project-local-customization.md)** | Repository-specific custom agents, prompt overrides, per-agent skills, and precedence |
|
|
637
679
|
| **[Background Orchestration](docs/background-orchestration.md)** | Scheduler-first orchestrator model built around native background subagents |
|
|
638
680
|
| **[Maintainer Guide](docs/maintainers.md)** | Issue triage rules, label meanings, support routing, and repo maintenance workflow |
|
|
639
681
|
| **[Skills](docs/skills.md)** | Bundled skills such as `simplify`, `codemap`, `clonedeps`, `deepwork`, `reflect`, `worktrees`, and `oh-my-opencode-slim` |
|
|
@@ -657,7 +699,7 @@ Use this section as a map: start with installation, then jump to features, confi
|
|
|
657
699
|
<p><sub>Every merged contribution leaves a mark on the realm.</sub></p>
|
|
658
700
|
|
|
659
701
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
660
|
-
[](#contributors-)
|
|
661
703
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
662
704
|
</div>
|
|
663
705
|
|
|
@@ -752,6 +794,17 @@ Use this section as a map: start with installation, then jump to features, confi
|
|
|
752
794
|
<td align="center" valign="top" width="16.66%"><a href="https://github.com/bobbyunknown"><img src="https://avatars.githubusercontent.com/u/62272380?v=4?s=100" width="100px;" alt="Insomnia"/><br /><sub><b>Insomnia</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=bobbyunknown" title="Code">💻</a></td>
|
|
753
795
|
<td align="center" valign="top" width="16.66%"><a href="https://github.com/andrescastane"><img src="https://avatars.githubusercontent.com/u/13487870?v=4?s=100" width="100px;" alt="Andres Castañeda"/><br /><sub><b>Andres Castañeda</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=andrescastane" title="Code">💻</a></td>
|
|
754
796
|
<td align="center" valign="top" width="16.66%"><a href="https://zaradacht.com/"><img src="https://avatars.githubusercontent.com/u/24251016?v=4?s=100" width="100px;" alt="Zaradacht Taifour (Zack)"/><br /><sub><b>Zaradacht Taifour (Zack)</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=Zaradacht" title="Code">💻</a></td>
|
|
797
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/fslse"><img src="https://avatars.githubusercontent.com/u/90545544?v=4?s=100" width="100px;" alt="fslse"/><br /><sub><b>fslse</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=fslse" title="Code">💻</a></td>
|
|
798
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/linze0721"><img src="https://avatars.githubusercontent.com/u/178997622?v=4?s=100" width="100px;" alt="萧瑟"/><br /><sub><b>萧瑟</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=linze0721" title="Code">💻</a></td>
|
|
799
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/SisyphusZheng"><img src="https://avatars.githubusercontent.com/u/146103794?v=4?s=100" width="100px;" alt="Zhi"/><br /><sub><b>Zhi</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=SisyphusZheng" title="Code">💻</a></td>
|
|
800
|
+
</tr>
|
|
801
|
+
<tr>
|
|
802
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/824156793"><img src="https://avatars.githubusercontent.com/u/19755784?v=4?s=100" width="100px;" alt="lilili"/><br /><sub><b>lilili</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=824156793" title="Code">💻</a></td>
|
|
803
|
+
<td align="center" valign="top" width="16.66%"><a href="http://mikehenke.com/"><img src="https://avatars.githubusercontent.com/u/119844?v=4?s=100" width="100px;" alt="Mike Henke"/><br /><sub><b>Mike Henke</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=mhenke" title="Code">💻</a></td>
|
|
804
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/imVinayPandya"><img src="https://avatars.githubusercontent.com/u/5011197?v=4?s=100" width="100px;" alt="Vinay Pandya"/><br /><sub><b>Vinay Pandya</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=imVinayPandya" title="Code">💻</a></td>
|
|
805
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/s-shank"><img src="https://avatars.githubusercontent.com/u/241541918?v=4?s=100" width="100px;" alt="Shank"/><br /><sub><b>Shank</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=s-shank" title="Code">💻</a></td>
|
|
806
|
+
<td align="center" valign="top" width="16.66%"><a href="https://rgutzen.github.io/"><img src="https://avatars.githubusercontent.com/u/16289604?v=4?s=100" width="100px;" alt="Robin Gutzen"/><br /><sub><b>Robin Gutzen</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=rgutzen" title="Code">💻</a></td>
|
|
807
|
+
<td align="center" valign="top" width="16.66%"><a href="https://github.com/dragon-Elec"><img src="https://avatars.githubusercontent.com/u/197374270?v=4?s=100" width="100px;" alt="Yash"/><br /><sub><b>Yash</b></sub></a><br /><a href="https://github.com/alvinunreal/oh-my-opencode-slim/commits?author=dragon-Elec" title="Code">💻</a></td>
|
|
755
808
|
</tr>
|
|
756
809
|
</tbody>
|
|
757
810
|
</table>
|