oh-my-opencode 2.5.1 → 2.5.3
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/LICENSE.md +82 -0
- package/README.ja.md +79 -40
- package/README.ko.md +78 -39
- package/README.md +79 -40
- package/README.zh-cn.md +79 -40
- package/dist/agents/build-prompt.d.ts +31 -0
- package/dist/agents/document-writer.d.ts +1 -0
- package/dist/agents/explore.d.ts +1 -0
- package/dist/agents/frontend-ui-ux-engineer.d.ts +1 -0
- package/dist/agents/librarian.d.ts +1 -0
- package/dist/agents/multimodal-looker.d.ts +1 -0
- package/dist/agents/types.d.ts +3 -1
- package/dist/cli/config-manager.d.ts +0 -1
- package/dist/cli/index.js +1664 -3
- package/dist/cli/run/completion.d.ts +2 -0
- package/dist/cli/run/completion.test.d.ts +1 -0
- package/dist/cli/run/events.d.ts +7 -0
- package/dist/cli/run/events.test.d.ts +1 -0
- package/dist/cli/run/index.d.ts +2 -0
- package/dist/cli/run/runner.d.ts +2 -0
- package/dist/cli/run/types.d.ts +45 -0
- package/dist/config/schema.d.ts +126 -2
- package/dist/hooks/claude-code-hooks/config-loader.d.ts +1 -0
- package/dist/hooks/claude-code-hooks/index.d.ts +5 -0
- package/dist/hooks/claude-code-hooks/pre-compact.d.ts +16 -0
- package/dist/hooks/claude-code-hooks/types.d.ts +17 -1
- package/dist/hooks/non-interactive-env/detector.d.ts +1 -0
- package/dist/hooks/non-interactive-env/index.d.ts +1 -0
- package/dist/hooks/session-notification.test.d.ts +1 -0
- package/dist/hooks/todo-continuation-enforcer.d.ts +5 -1
- package/dist/index.js +1143 -339
- package/dist/shared/data-path.d.ts +15 -0
- package/dist/shared/index.d.ts +1 -0
- package/dist/tools/index.d.ts +52 -0
- package/dist/tools/session-manager/constants.d.ts +11 -0
- package/dist/tools/session-manager/index.d.ts +3 -0
- package/dist/tools/session-manager/storage.d.ts +8 -0
- package/dist/tools/session-manager/storage.test.d.ts +1 -0
- package/dist/tools/session-manager/tools.d.ts +52 -0
- package/dist/tools/session-manager/tools.test.d.ts +1 -0
- package/dist/tools/session-manager/types.d.ts +71 -0
- package/dist/tools/session-manager/utils.d.ts +11 -0
- package/dist/tools/session-manager/utils.test.d.ts +1 -0
- package/package.json +3 -2
- package/LICENSE +0 -21
package/LICENSE.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# License
|
|
2
|
+
|
|
3
|
+
Portions of this software are licensed as follows:
|
|
4
|
+
|
|
5
|
+
- All third party components incorporated into the oh-my-opencode Software are licensed under the original license
|
|
6
|
+
provided by the owner of the applicable component.
|
|
7
|
+
- Content outside of the above mentioned files or restrictions is available under the "Sustainable Use
|
|
8
|
+
License" as defined below.
|
|
9
|
+
|
|
10
|
+
## Sustainable Use License
|
|
11
|
+
|
|
12
|
+
Version 1.0
|
|
13
|
+
|
|
14
|
+
### Acceptance
|
|
15
|
+
|
|
16
|
+
By using the software, you agree to all of the terms and conditions below.
|
|
17
|
+
|
|
18
|
+
### Copyright License
|
|
19
|
+
|
|
20
|
+
The licensor grants you a non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license
|
|
21
|
+
to use, copy, distribute, make available, and prepare derivative works of the software, in each case subject
|
|
22
|
+
to the limitations below.
|
|
23
|
+
|
|
24
|
+
### Limitations
|
|
25
|
+
|
|
26
|
+
You may use or modify the software only for your own internal business purposes or for non-commercial or
|
|
27
|
+
personal use. You may distribute the software or provide it to others only if you do so free of charge for
|
|
28
|
+
non-commercial purposes. You may not alter, remove, or obscure any licensing, copyright, or other notices of
|
|
29
|
+
the licensor in the software. Any use of the licensor's trademarks is subject to applicable law.
|
|
30
|
+
|
|
31
|
+
### Patents
|
|
32
|
+
|
|
33
|
+
The licensor grants you a license, under any patent claims the licensor can license, or becomes able to
|
|
34
|
+
license, to make, have made, use, sell, offer for sale, import and have imported the software, in each case
|
|
35
|
+
subject to the limitations and conditions in this license. This license does not cover any patent claims that
|
|
36
|
+
you cause to be infringed by modifications or additions to the software. If you or your company make any
|
|
37
|
+
written claim that the software infringes or contributes to infringement of any patent, your patent license
|
|
38
|
+
for the software granted under these terms ends immediately. If your company makes such a claim, your patent
|
|
39
|
+
license ends immediately for work on behalf of your company.
|
|
40
|
+
|
|
41
|
+
### Notices
|
|
42
|
+
|
|
43
|
+
You must ensure that anyone who gets a copy of any part of the software from you also gets a copy of these
|
|
44
|
+
terms. If you modify the software, you must include in any modified copies of the software a prominent notice
|
|
45
|
+
stating that you have modified the software.
|
|
46
|
+
|
|
47
|
+
### No Other Rights
|
|
48
|
+
|
|
49
|
+
These terms do not imply any licenses other than those expressly granted in these terms.
|
|
50
|
+
|
|
51
|
+
### Termination
|
|
52
|
+
|
|
53
|
+
If you use the software in violation of these terms, such use is not licensed, and your license will
|
|
54
|
+
automatically terminate. If the licensor provides you with a notice of your violation, and you cease all
|
|
55
|
+
violation of this license no later than 30 days after you receive that notice, your license will be reinstated
|
|
56
|
+
retroactively. However, if you violate these terms after such reinstatement, any additional violation of these
|
|
57
|
+
terms will cause your license to terminate automatically and permanently.
|
|
58
|
+
|
|
59
|
+
### No Liability
|
|
60
|
+
|
|
61
|
+
As far as the law allows, the software comes as is, without any warranty or condition, and the licensor will
|
|
62
|
+
not be liable to you for any damages arising out of these terms or the use or nature of the software, under
|
|
63
|
+
any kind of legal claim.
|
|
64
|
+
|
|
65
|
+
### Definitions
|
|
66
|
+
|
|
67
|
+
The "licensor" is the entity offering these terms.
|
|
68
|
+
|
|
69
|
+
The "software" is the software the licensor makes available under these terms, including any portion of it.
|
|
70
|
+
|
|
71
|
+
"You" refers to the individual or entity agreeing to these terms.
|
|
72
|
+
|
|
73
|
+
"Your company" is any legal entity, sole proprietorship, or other kind of organization that you work for, plus
|
|
74
|
+
all organizations that have control over, are under the control of, or are under common control with that
|
|
75
|
+
organization. Control means ownership of substantially all the assets of an entity, or the power to direct its
|
|
76
|
+
management and policies by vote, contract, or otherwise. Control can be direct or indirect.
|
|
77
|
+
|
|
78
|
+
"Your license" is the license granted to you for the software under these terms.
|
|
79
|
+
|
|
80
|
+
"Use" means anything you do with the software requiring your license.
|
|
81
|
+
|
|
82
|
+
"Trademark" means trademarks, service marks, and similar rights.
|
package/README.ja.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
> [!NOTE]
|
|
2
|
+
>
|
|
3
|
+
> *「私はエージェントが生成したコードと人間が書いたコードを区別できない、しかしはるかに多くのことを達成できる世界を作り、ソフトウェア革命を起こすことを目指しています。私はこの旅に個人的な時間、情熱、そして資金を注ぎ込んできましたし、これからもそうし続けます。」*
|
|
4
|
+
>
|
|
5
|
+
> 一緒に歩みましょう!
|
|
6
|
+
>
|
|
7
|
+
> | [<img alt="Discord link" src="https://img.shields.io/discord/1452487457085063218?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square" width="156px" />](https://discord.gg/PWpXmbhF) | [Discordコミュニティ](https://discord.gg/PWpXmbhF)に参加して、コントリビューターや`oh-my-opencode`仲間とつながりましょう。 |
|
|
8
|
+
> | :-----| :----- |
|
|
9
|
+
> | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | `oh-my-opencode`に関するニュースは私のXアカウントで投稿していましたが、無実の罪で凍結されたため、<br />[@justsisyphus](https://x.com/justsisyphus)が代わりに更新を投稿しています。 |
|
|
10
|
+
> | [<img alt="Sponsor" src="https://img.shields.io/badge/Sponsor-❤-ff69b4?style=flat-square&logo=github-sponsors&labelColor=black" width="156px" />](https://github.com/sponsors/code-yeongyu) | [スポンサーになって](https://github.com/sponsors/code-yeongyu) `oh-my-opencode` の開発を応援してください。皆さまのご支援がこのプロジェクトを成長させます。 |
|
|
2
11
|
|
|
3
12
|
<!-- <CENTERED SECTION FOR GITHUB DISPLAY> -->
|
|
4
13
|
|
|
@@ -23,7 +32,7 @@
|
|
|
23
32
|
[](https://github.com/code-yeongyu/oh-my-opencode/network/members)
|
|
24
33
|
[](https://github.com/code-yeongyu/oh-my-opencode/stargazers)
|
|
25
34
|
[](https://github.com/code-yeongyu/oh-my-opencode/issues)
|
|
26
|
-
[](https://github.com/code-yeongyu/oh-my-opencode/blob/master/LICENSE.md)
|
|
27
36
|
|
|
28
37
|
[English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
|
|
29
38
|
|
|
@@ -31,6 +40,24 @@
|
|
|
31
40
|
|
|
32
41
|
<!-- </CENTERED SECTION FOR GITHUB DISPLAY> -->
|
|
33
42
|
|
|
43
|
+
## ユーザーレビュー
|
|
44
|
+
|
|
45
|
+
> "人間が3ヶ月かかる仕事をClaude Codeが7日でやるなら、Sisyphusは1時間でやります。タスクが完了するまでただ動き続ける。It is a discipline agent." — B, Quant Researcher
|
|
46
|
+
|
|
47
|
+
> "Oh My Opencodeを使って、たった1日で8000個のeslint警告を解消しました" — [Jacob Ferrari](https://x.com/jacobferrari_/status/2003258761952289061)
|
|
48
|
+
|
|
49
|
+
> "これをコアに取り入れて彼を採用すべきです。マジで。本当に、本当に、本当に良いです" — Henning Kilset
|
|
50
|
+
|
|
51
|
+
> "@yeon_gyu_kimを説得できるなら雇うべきです。彼はopencodeに革命を起こしました" — [mysticaltech](https://x.com/mysticaltech/status/2001858758608376079)
|
|
52
|
+
|
|
53
|
+
> "やばい、これマジで本物だ @androolloyd oh my opencode 最高すぎる" — [z80.eth](https://x.com/0xz80/status/2001815226505924791)
|
|
54
|
+
|
|
55
|
+
> "oh-my-opencodeを使ってください、もう戻れませんよ" — [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
|
|
56
|
+
|
|
57
|
+
> "Oh My Opencodeは頂点に立っています、敵はいません" — [RyanOnThePath](https://x.com/RyanOnThePath/status/2001438321252118548)
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
34
61
|
## 目次
|
|
35
62
|
|
|
36
63
|
- [Oh My OpenCode](#oh-my-opencode)
|
|
@@ -687,24 +714,50 @@ Oh My OpenCode は以下の場所からフックを読み込んで実行しま
|
|
|
687
714
|
|
|
688
715
|
### Sisyphus Agent
|
|
689
716
|
|
|
690
|
-
有効時(デフォルト)、Sisyphus
|
|
717
|
+
有効時(デフォルト)、Sisyphus はオプションの特殊エージェントを備えた強力なオーケストレーターを提供します:
|
|
691
718
|
|
|
692
719
|
- **Sisyphus**: プライマリオーケストレーターエージェント (Claude Opus 4.5)
|
|
693
|
-
- **
|
|
694
|
-
- **
|
|
695
|
-
- **plan**: サブエージェントに降格
|
|
720
|
+
- **Builder-Sisyphus**: OhMyOpenCode 強化版のビルドエージェント(デフォルトで無効)
|
|
721
|
+
- **Planner-Sisyphus**: OhMyOpenCode 強化版のプランエージェント(デフォルトで有効)
|
|
696
722
|
|
|
697
|
-
|
|
723
|
+
**設定オプション:**
|
|
698
724
|
|
|
699
725
|
```json
|
|
700
726
|
{
|
|
701
|
-
"
|
|
727
|
+
"sisyphus_agent": {
|
|
728
|
+
"disabled": false,
|
|
729
|
+
"builder_enabled": false,
|
|
730
|
+
"planner_enabled": true,
|
|
731
|
+
"replace_build": true,
|
|
732
|
+
"replace_plan": true
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
```
|
|
736
|
+
|
|
737
|
+
**例:Builder-Sisyphus を有効化し、デフォルトのビルドモードも維持する:**
|
|
738
|
+
|
|
739
|
+
```json
|
|
740
|
+
{
|
|
741
|
+
"sisyphus_agent": {
|
|
742
|
+
"builder_enabled": true,
|
|
743
|
+
"replace_build": false
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
```
|
|
747
|
+
|
|
748
|
+
これにより、Builder-Sisyphus とデフォルトのビルドエージェントの両方を同時に利用できます。
|
|
749
|
+
|
|
750
|
+
**例:すべての Sisyphus オーケストレーションを無効化:**
|
|
751
|
+
|
|
752
|
+
```json
|
|
753
|
+
{
|
|
754
|
+
"sisyphus_agent": {
|
|
702
755
|
"disabled": true
|
|
703
756
|
}
|
|
704
757
|
}
|
|
705
758
|
```
|
|
706
759
|
|
|
707
|
-
他のエージェント同様、Sisyphus
|
|
760
|
+
他のエージェント同様、Sisyphus エージェントもカスタマイズ可能です:
|
|
708
761
|
|
|
709
762
|
```json
|
|
710
763
|
{
|
|
@@ -713,6 +766,9 @@ Sisyphus を無効化して元の build/plan エージェントを復元する
|
|
|
713
766
|
"model": "anthropic/claude-sonnet-4",
|
|
714
767
|
"temperature": 0.3
|
|
715
768
|
},
|
|
769
|
+
"Builder-Sisyphus": {
|
|
770
|
+
"model": "anthropic/claude-opus-4"
|
|
771
|
+
},
|
|
716
772
|
"Planner-Sisyphus": {
|
|
717
773
|
"model": "openai/gpt-5.2"
|
|
718
774
|
}
|
|
@@ -720,9 +776,13 @@ Sisyphus を無効化して元の build/plan エージェントを復元する
|
|
|
720
776
|
}
|
|
721
777
|
```
|
|
722
778
|
|
|
723
|
-
| オプション
|
|
724
|
-
|
|
725
|
-
| `disabled`
|
|
779
|
+
| オプション | デフォルト | 説明 |
|
|
780
|
+
| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
781
|
+
| `disabled` | `false` | `true` の場合、すべての Sisyphus オーケストレーションを無効化し、元の build/plan をプライマリとして復元します。 |
|
|
782
|
+
| `builder_enabled` | `false` | `true` の場合、Builder-Sisyphus エージェント(OhMyOpenCode 強化版ビルドモード)を有効化します。デフォルトの OpenCode ビルド体験を維持するため、デフォルトでは無効です。 |
|
|
783
|
+
| `planner_enabled` | `true` | `true` の場合、Planner-Sisyphus エージェント(OhMyOpenCode 強化版プランモード)を有効化します。デフォルトで有効です。 |
|
|
784
|
+
| `replace_build` | `true` | `true` の場合、デフォルトのビルドエージェントをサブエージェントモードに降格させます。`false` に設定すると、Builder-Sisyphus とデフォルトのビルドの両方を利用できます。 |
|
|
785
|
+
| `replace_plan` | `true` | `true` の場合、デフォルトのプランエージェントをサブエージェントモードに降格させます。`false` に設定すると、Planner-Sisyphus とデフォルトのプランの両方を利用できます。 |
|
|
726
786
|
|
|
727
787
|
### Hooks
|
|
728
788
|
|
|
@@ -785,15 +845,17 @@ OpenCode でサポートされるすべての LSP 構成およびカスタム設
|
|
|
785
845
|
{
|
|
786
846
|
"experimental": {
|
|
787
847
|
"aggressive_truncation": true,
|
|
788
|
-
"auto_resume": true
|
|
848
|
+
"auto_resume": true,
|
|
849
|
+
"truncate_all_tool_outputs": false
|
|
789
850
|
}
|
|
790
851
|
}
|
|
791
852
|
```
|
|
792
853
|
|
|
793
|
-
| オプション
|
|
794
|
-
|
|
|
795
|
-
| `aggressive_truncation`
|
|
796
|
-
| `auto_resume`
|
|
854
|
+
| オプション | デフォルト | 説明 |
|
|
855
|
+
| --------------------------- | ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
856
|
+
| `aggressive_truncation` | `false` | トークン制限を超えた場合、ツール出力を積極的に切り詰めて制限内に収めます。デフォルトの切り詰めより積極的です。不十分な場合は要約/復元にフォールバックします。 |
|
|
857
|
+
| `auto_resume` | `false` | thinking block エラーや thinking disabled violation からの回復成功後、自動的にセッションを再開します。最後のユーザーメッセージを抽出して続行します。 |
|
|
858
|
+
| `truncate_all_tool_outputs` | `true` | プロンプトが長くなりすぎるのを防ぐため、コンテキストウィンドウの使用状況に基づいてすべてのツール出力を動的に切り詰めます。完全なツール出力が必要な場合は`false`に設定して無効化します。 |
|
|
797
859
|
|
|
798
860
|
**警告**:これらの機能は実験的であり、予期しない動作を引き起こす可能性があります。影響を理解した場合にのみ有効にしてください。
|
|
799
861
|
|
|
@@ -843,29 +905,6 @@ OpenCode が Debian / ArchLinux だとしたら、Oh My OpenCode は Ubuntu / [O
|
|
|
843
905
|
|
|
844
906
|
*素晴らしいヒーロー画像を作成してくれた [@junhoyeo](https://github.com/junhoyeo) に感謝します*
|
|
845
907
|
|
|
846
|
-
## ユーザーレビュー
|
|
847
|
-
|
|
848
|
-
> "人間が3ヶ月かかる仕事をClaude Codeが7日でやるなら、Sisyphusは1時間でやります"
|
|
849
|
-
> -- B, Quant Researcher
|
|
850
|
-
|
|
851
|
-
> "Oh My Opencodeを使って、たった1日で8000個のeslint警告を解消しました"
|
|
852
|
-
> -- Jacob Ferrari, from [X](https://x.com/jacobferrari_/status/2003258761952289061)
|
|
853
|
-
|
|
854
|
-
> "@yeon_gyu_kimを説得できるなら雇うべきです。彼はopencodeに革命を起こしました"
|
|
855
|
-
> -- [Sam Altmanの投稿へ](https://x.com/mysticaltech/status/2001858758608376079)
|
|
856
|
-
|
|
857
|
-
> "これをコアに取り入れて彼を採用すべきです。マジで。本当に、本当に、本当に良いです"
|
|
858
|
-
> -- Henning Kilset, from X
|
|
859
|
-
|
|
860
|
-
> "やばい、これマジで本物だ @androolloyd oh my opencode 最高すぎる"
|
|
861
|
-
> -- z80.eth, from [X](https://x.com/0xz80/status/2001815226505924791)
|
|
862
|
-
|
|
863
|
-
> "oh-my-opencodeを使ってください、もう戻れませんよ"
|
|
864
|
-
> -- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
|
|
865
|
-
|
|
866
|
-
> "Oh My Opencodeは頂点に立っています、敵はいません"
|
|
867
|
-
> -- [RyanOnThePath](https://x.com/RyanOnThePath/status/2001438321252118548)
|
|
868
|
-
|
|
869
908
|
## こちらの企業の専門家にご愛用いただいています
|
|
870
909
|
|
|
871
910
|
- [Indent](https://indentcorp.com)
|
package/README.ko.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
> [!NOTE]
|
|
2
|
+
>
|
|
3
|
+
> *"저는 에이전트가 생성한 코드와 인간이 작성한 코드를 구분할 수 없으면서도, 훨씬 더 많은 것을 달성할 수 있는 세상을 만들어 소프트웨어 혁명을 일으키고자 합니다. 저는 이 여정에 개인적인 시간, 열정, 그리고 자금을 쏟아부었고, 앞으로도 계속 그렇게 할 것입니다."*
|
|
4
|
+
>
|
|
5
|
+
> 함께해주세요!
|
|
6
|
+
>
|
|
7
|
+
> | [<img alt="Discord link" src="https://img.shields.io/discord/1452487457085063218?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square" width="156px" />](https://discord.gg/PWpXmbhF) | [Discord 커뮤니티](https://discord.gg/PWpXmbhF)에서 기여자들과 `oh-my-opencode` 사용자들을 만나보세요. |
|
|
8
|
+
> | :-----| :----- |
|
|
9
|
+
> | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | `oh-my-opencode` 관련 소식은 제 X 계정에서 올렸었는데, 억울하게 정지당해서 <br />[@justsisyphus](https://x.com/justsisyphus)가 대신 소식을 전하고 있습니다. |
|
|
10
|
+
> | [<img alt="Sponsor" src="https://img.shields.io/badge/Sponsor-❤-ff69b4?style=flat-square&logo=github-sponsors&labelColor=black" width="156px" />](https://github.com/sponsors/code-yeongyu) | [스폰서가 되어](https://github.com/sponsors/code-yeongyu) `oh-my-opencode` 개발을 응원해주세요. 여러분의 후원이 이 프로젝트를 계속 성장시킵니다. |
|
|
2
11
|
|
|
3
12
|
<!-- <CENTERED SECTION FOR GITHUB DISPLAY> -->
|
|
4
13
|
|
|
@@ -20,7 +29,7 @@
|
|
|
20
29
|
[](https://github.com/code-yeongyu/oh-my-opencode/network/members)
|
|
21
30
|
[](https://github.com/code-yeongyu/oh-my-opencode/stargazers)
|
|
22
31
|
[](https://github.com/code-yeongyu/oh-my-opencode/issues)
|
|
23
|
-
[](https://github.com/code-yeongyu/oh-my-opencode/blob/master/LICENSE.md)
|
|
24
33
|
|
|
25
34
|
[English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
|
|
26
35
|
|
|
@@ -28,6 +37,24 @@
|
|
|
28
37
|
|
|
29
38
|
<!-- </CENTERED SECTION FOR GITHUB DISPLAY> -->
|
|
30
39
|
|
|
40
|
+
## 사용자 후기
|
|
41
|
+
|
|
42
|
+
> "인간이 3달 동안 할 일을 claude code 가 7일만에 해준다면, 시지푸스는 1시간만에 해준다. 작업이 완료되기 전까지 그저 잘 작동한다. It is a discipline agent." — B, Quant Researcher
|
|
43
|
+
|
|
44
|
+
> "Oh My Opencode를 사용해서, 단 하루만에 8000개의 eslint 경고를 해결했습니다" — [Jacob Ferrari](https://x.com/jacobferrari_/status/2003258761952289061)
|
|
45
|
+
|
|
46
|
+
> "이걸 코어에 넣고 그를 채용해야 합니다. 진심으로요. 이건 정말, 정말, 정말 좋습니다." — Henning Kilset
|
|
47
|
+
|
|
48
|
+
> "@yeon_gyu_kim 을 설득할 수 있다면 고용하세요, 이 사람은 opencode를 혁신했습니다." — [mysticaltech](https://x.com/mysticaltech/status/2001858758608376079)
|
|
49
|
+
|
|
50
|
+
> "와 미쳤다 @androolloyd 이건 진짜다 oh my opencode 개쩐다" — [z80.eth](https://x.com/0xz80/status/2001815226505924791)
|
|
51
|
+
|
|
52
|
+
> "oh-my-opencode를 쓰세요, 절대 돌아갈 수 없을 겁니다" — [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
|
|
53
|
+
|
|
54
|
+
> "Oh My Opencode는 독보적입니다, 경쟁자가 없습니다" — [RyanOnThePath](https://x.com/RyanOnThePath/status/2001438321252118548)
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
31
58
|
## 목차
|
|
32
59
|
|
|
33
60
|
- [Oh My OpenCode](#oh-my-opencode)
|
|
@@ -681,14 +708,40 @@ Schema 자동 완성이 지원됩니다:
|
|
|
681
708
|
|
|
682
709
|
### Sisyphus Agent
|
|
683
710
|
|
|
684
|
-
활성화 시(기본값),
|
|
711
|
+
활성화 시 (기본값), Sisyphus는 옵션으로 선택 가능한 특화 에이전트들과 함께 강력한 오케스트레이터를 제공합니다:
|
|
685
712
|
|
|
686
713
|
- **Sisyphus**: Primary 오케스트레이터 에이전트 (Claude Opus 4.5)
|
|
687
|
-
- **
|
|
688
|
-
- **
|
|
689
|
-
- **plan**: subagent로 강등
|
|
714
|
+
- **Builder-Sisyphus**: OhMyOpenCode 강화 버전 빌드 에이전트 (기본적으로 비활성화)
|
|
715
|
+
- **Planner-Sisyphus**: OhMyOpenCode 강화 버전 플랜 에이전트 (기본적으로 활성화)
|
|
690
716
|
|
|
691
|
-
|
|
717
|
+
**설정 옵션:**
|
|
718
|
+
|
|
719
|
+
```json
|
|
720
|
+
{
|
|
721
|
+
"sisyphus_agent": {
|
|
722
|
+
"disabled": false,
|
|
723
|
+
"builder_enabled": false,
|
|
724
|
+
"planner_enabled": true,
|
|
725
|
+
"replace_build": true,
|
|
726
|
+
"replace_plan": true
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
```
|
|
730
|
+
|
|
731
|
+
**예시: Builder-Sisyphus를 활성화하면서 기본 빌드 모드도 유지하기:**
|
|
732
|
+
|
|
733
|
+
```json
|
|
734
|
+
{
|
|
735
|
+
"sisyphus_agent": {
|
|
736
|
+
"builder_enabled": true,
|
|
737
|
+
"replace_build": false
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
```
|
|
741
|
+
|
|
742
|
+
이렇게 하면 Builder-Sisyphus와 기본 빌드 에이전트를 동시에 사용할 수 있습니다.
|
|
743
|
+
|
|
744
|
+
**예시: 모든 Sisyphus 오케스트레이션 비활성화:**
|
|
692
745
|
|
|
693
746
|
```json
|
|
694
747
|
{
|
|
@@ -698,7 +751,7 @@ Sisyphus 를 비활성화하고 원래 build/plan 에이전트를 복원하려
|
|
|
698
751
|
}
|
|
699
752
|
```
|
|
700
753
|
|
|
701
|
-
다른 에이전트처럼 Sisyphus
|
|
754
|
+
다른 에이전트처럼 Sisyphus 에이전트들도 커스터마이징할 수 있습니다:
|
|
702
755
|
|
|
703
756
|
```json
|
|
704
757
|
{
|
|
@@ -707,6 +760,9 @@ Sisyphus 를 비활성화하고 원래 build/plan 에이전트를 복원하려
|
|
|
707
760
|
"model": "anthropic/claude-sonnet-4",
|
|
708
761
|
"temperature": 0.3
|
|
709
762
|
},
|
|
763
|
+
"Builder-Sisyphus": {
|
|
764
|
+
"model": "anthropic/claude-opus-4"
|
|
765
|
+
},
|
|
710
766
|
"Planner-Sisyphus": {
|
|
711
767
|
"model": "openai/gpt-5.2"
|
|
712
768
|
}
|
|
@@ -714,9 +770,13 @@ Sisyphus 를 비활성화하고 원래 build/plan 에이전트를 복원하려
|
|
|
714
770
|
}
|
|
715
771
|
```
|
|
716
772
|
|
|
717
|
-
| 옵션
|
|
718
|
-
|
|
|
719
|
-
| `disabled`
|
|
773
|
+
| 옵션 | 기본값 | 설명 |
|
|
774
|
+
| ------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
775
|
+
| `disabled` | `false` | `true`면 모든 Sisyphus 오케스트레이션을 비활성화하고 원래 build/plan을 primary로 복원합니다. |
|
|
776
|
+
| `builder_enabled` | `false` | `true`면 Builder-Sisyphus 에이전트 (OhMyOpenCode 강화 빌드 모드)를 활성화합니다. 기본 OpenCode 빌드 경험을 보존하기 위해 기본적으로 비활성화되어 있습니다. |
|
|
777
|
+
| `planner_enabled` | `true` | `true`면 Planner-Sisyphus 에이전트 (OhMyOpenCode 강화 플랜 모드)를 활성화합니다. 기본적으로 활성화되어 있습니다. |
|
|
778
|
+
| `replace_build` | `true` | `true`면 기본 빌드 에이전트를 subagent 모드로 강등시킵니다. `false`로 설정하면 Builder-Sisyphus와 기본 빌드를 모두 사용할 수 있습니다. |
|
|
779
|
+
| `replace_plan` | `true` | `true`면 기본 플랜 에이전트를 subagent 모드로 강등시킵니다. `false`로 설정하면 Planner-Sisyphus와 기본 플랜을 모두 사용할 수 있습니다. |
|
|
720
780
|
|
|
721
781
|
### Hooks
|
|
722
782
|
|
|
@@ -779,15 +839,17 @@ OpenCode 에서 지원하는 모든 LSP 구성 및 커스텀 설정 (opencode.js
|
|
|
779
839
|
{
|
|
780
840
|
"experimental": {
|
|
781
841
|
"aggressive_truncation": true,
|
|
782
|
-
"auto_resume": true
|
|
842
|
+
"auto_resume": true,
|
|
843
|
+
"truncate_all_tool_outputs": false
|
|
783
844
|
}
|
|
784
845
|
}
|
|
785
846
|
```
|
|
786
847
|
|
|
787
|
-
| 옵션
|
|
788
|
-
|
|
|
789
|
-
| `aggressive_truncation`
|
|
790
|
-
| `auto_resume`
|
|
848
|
+
| 옵션 | 기본값 | 설명 |
|
|
849
|
+
| --------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
850
|
+
| `aggressive_truncation` | `false` | 토큰 제한을 초과하면 도구 출력을 공격적으로 잘라내어 제한 내에 맞춥니다. 기본 truncation보다 더 공격적입니다. 부족하면 요약/복구로 fallback합니다. |
|
|
851
|
+
| `auto_resume` | `false` | thinking block 에러나 thinking disabled violation으로부터 성공적으로 복구한 후 자동으로 세션을 재개합니다. 마지막 사용자 메시지를 추출하여 계속합니다. |
|
|
852
|
+
| `truncate_all_tool_outputs` | `true` | 프롬프트가 너무 길어지는 것을 방지하기 위해 컨텍스트 윈도우 사용량에 따라 모든 도구 출력을 동적으로 잘라냅니다. 전체 도구 출력이 필요한 경우 `false`로 설정하여 비활성화하세요. |
|
|
791
853
|
|
|
792
854
|
**경고**: 이 기능들은 실험적이며 예상치 못한 동작을 유발할 수 있습니다. 의미를 이해한 경우에만 활성화하세요.
|
|
793
855
|
|
|
@@ -837,29 +899,6 @@ OpenCode 를 사용하여 이 프로젝트의 99% 를 작성했습니다. 기능
|
|
|
837
899
|
|
|
838
900
|
*멋진 히어로 이미지를 만들어주신 히어로 [@junhoyeo](https://github.com/junhoyeo) 께 감사드립니다*
|
|
839
901
|
|
|
840
|
-
## 사용자 후기
|
|
841
|
-
|
|
842
|
-
> "인간이 3달 동안 할 일을 claude code 가 7일만에 해준다면, 시지푸스는 1시간만에 해준다"
|
|
843
|
-
> -- B, Quant Researcher
|
|
844
|
-
|
|
845
|
-
> "Oh My Opencode를 사용해서, 단 하루만에 8000개의 eslint 경고를 해결했습니다"
|
|
846
|
-
> -- Jacob Ferrari, from [X](https://x.com/jacobferrari_/status/2003258761952289061)
|
|
847
|
-
|
|
848
|
-
> "@yeon_gyu_kim 을 설득할 수 있다면 고용하세요, 이 사람은 opencode를 혁신했습니다."
|
|
849
|
-
> -- [to Sam Altman's post](https://x.com/mysticaltech/status/2001858758608376079)
|
|
850
|
-
|
|
851
|
-
> "이걸 코어에 넣고 그를 채용해야 합니다. 진심으로요. 이건 정말, 정말, 정말 좋습니다."
|
|
852
|
-
> -- Henning Kilset, from X
|
|
853
|
-
|
|
854
|
-
> "와 미쳤다 @androolloyd 이건 진짜다 oh my opencode 개쩐다"
|
|
855
|
-
> -- z80.eth, from [X](https://x.com/0xz80/status/2001815226505924791)
|
|
856
|
-
|
|
857
|
-
> "oh-my-opencode를 쓰세요, 절대 돌아갈 수 없을 겁니다"
|
|
858
|
-
> -- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
|
|
859
|
-
|
|
860
|
-
> "Oh My Opencode는 독보적입니다, 경쟁자가 없습니다"
|
|
861
|
-
> -- [RyanOnThePath](https://x.com/RyanOnThePath/status/2001438321252118548)
|
|
862
|
-
|
|
863
902
|
## 다음 기업의 능력있는 개인들이 사용하고 있습니다
|
|
864
903
|
|
|
865
904
|
- [Indent](https://indentcorp.com)
|
package/README.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
> [!NOTE]
|
|
2
|
+
>
|
|
3
|
+
> *"I aim to spark a software revolution by creating a world where agent-generated code is indistinguishable from human code, yet capable of achieving vastly more. I have poured my personal time, passion, and funds into this journey, and I will continue to do so."*
|
|
4
|
+
>
|
|
5
|
+
> Be with us!
|
|
6
|
+
>
|
|
7
|
+
> | [<img alt="Discord link" src="https://img.shields.io/discord/1452487457085063218?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square" width="156px" />](https://discord.gg/PWpXmbhF) | Join our [Discord community](https://discord.gg/PWpXmbhF) to connect with contributors and fellow `oh-my-opencode` users. |
|
|
8
|
+
> | :-----| :----- |
|
|
9
|
+
> | [<img alt="X link" src="https://img.shields.io/badge/Follow-%40justsisyphus-00CED1?style=flat-square&logo=x&labelColor=black" width="156px" />](https://x.com/justsisyphus) | News and updates for `oh-my-opencode` used to be posted on my X account. <br /> Since it was suspended mistakenly, [@justsisyphus](https://x.com/justsisyphus) now posts updates on my behalf. |
|
|
10
|
+
> | [<img alt="Sponsor" src="https://img.shields.io/badge/Sponsor-❤-ff69b4?style=flat-square&logo=github-sponsors&labelColor=black" width="156px" />](https://github.com/sponsors/code-yeongyu) | Support the development of `oh-my-opencode` by [becoming a sponsor](https://github.com/sponsors/code-yeongyu). Your contribution helps keep this project alive and growing. |
|
|
2
11
|
|
|
3
12
|
<!-- <CENTERED SECTION FOR GITHUB DISPLAY> -->
|
|
4
13
|
|
|
@@ -28,7 +37,7 @@ No stupid token consumption massive subagents here. No bloat tools here.
|
|
|
28
37
|
[](https://github.com/code-yeongyu/oh-my-opencode/network/members)
|
|
29
38
|
[](https://github.com/code-yeongyu/oh-my-opencode/stargazers)
|
|
30
39
|
[](https://github.com/code-yeongyu/oh-my-opencode/issues)
|
|
31
|
-
[](https://github.com/code-yeongyu/oh-my-opencode/blob/master/LICENSE.md)
|
|
32
41
|
|
|
33
42
|
[English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
|
|
34
43
|
|
|
@@ -36,6 +45,24 @@ No stupid token consumption massive subagents here. No bloat tools here.
|
|
|
36
45
|
|
|
37
46
|
<!-- </CENTERED SECTION FOR GITHUB DISPLAY> -->
|
|
38
47
|
|
|
48
|
+
## Reviews
|
|
49
|
+
|
|
50
|
+
> "If Claude Code does in 7 days what a human does in 3 months, Sisyphus does it in 1 hour. It just works until the task is done. It is a discipline agent." — B, Quant Researcher
|
|
51
|
+
|
|
52
|
+
> "Knocked out 8000 eslint warnings with Oh My Opencode, just in a day" — [Jacob Ferrari](https://x.com/jacobferrari_/status/2003258761952289061)
|
|
53
|
+
|
|
54
|
+
> "You guys should pull this into core and recruit him. Seriously. It's really, really, really good." — Henning Kilset
|
|
55
|
+
|
|
56
|
+
> "Hire @yeon_gyu_kim if you can convince him, this dude has revolutionized opencode." — [mysticaltech](https://x.com/mysticaltech/status/2001858758608376079)
|
|
57
|
+
|
|
58
|
+
> "ok yeah holy shit @androolloyd this thing is legit oh my opencode is sick" — [z80.eth](https://x.com/0xz80/status/2001815226505924791)
|
|
59
|
+
|
|
60
|
+
> "use oh-my-opencode, you will never go back" — [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
|
|
61
|
+
|
|
62
|
+
> "Oh My Opencode is king of the hill and has no contenders" — [RyanOnThePath](https://x.com/RyanOnThePath/status/2001438321252118548)
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
39
66
|
## Contents
|
|
40
67
|
|
|
41
68
|
- [Oh My OpenCode](#oh-my-opencode)
|
|
@@ -753,24 +780,50 @@ Available agents: `oracle`, `librarian`, `explore`, `frontend-ui-ux-engineer`, `
|
|
|
753
780
|
|
|
754
781
|
### Sisyphus Agent
|
|
755
782
|
|
|
756
|
-
When enabled (default), Sisyphus
|
|
783
|
+
When enabled (default), Sisyphus provides a powerful orchestrator with optional specialized agents:
|
|
757
784
|
|
|
758
785
|
- **Sisyphus**: Primary orchestrator agent (Claude Opus 4.5)
|
|
759
|
-
- **
|
|
760
|
-
- **
|
|
761
|
-
- **plan**: Demoted to subagent
|
|
786
|
+
- **Builder-Sisyphus**: Optional build agent with OhMyOpenCode enhancements (disabled by default)
|
|
787
|
+
- **Planner-Sisyphus**: Plan agent with OhMyOpenCode enhancements (enabled by default)
|
|
762
788
|
|
|
763
|
-
|
|
789
|
+
**Configuration Options:**
|
|
764
790
|
|
|
765
791
|
```json
|
|
766
792
|
{
|
|
767
|
-
"
|
|
793
|
+
"sisyphus_agent": {
|
|
794
|
+
"disabled": false,
|
|
795
|
+
"builder_enabled": false,
|
|
796
|
+
"planner_enabled": true,
|
|
797
|
+
"replace_build": true,
|
|
798
|
+
"replace_plan": true
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
```
|
|
802
|
+
|
|
803
|
+
**Example: Enable Builder-Sisyphus and keep default build mode:**
|
|
804
|
+
|
|
805
|
+
```json
|
|
806
|
+
{
|
|
807
|
+
"sisyphus_agent": {
|
|
808
|
+
"builder_enabled": true,
|
|
809
|
+
"replace_build": false
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
```
|
|
813
|
+
|
|
814
|
+
This allows you to have both Builder-Sisyphus AND the default build agent available simultaneously.
|
|
815
|
+
|
|
816
|
+
**Example: Disable all Sisyphus orchestration:**
|
|
817
|
+
|
|
818
|
+
```json
|
|
819
|
+
{
|
|
820
|
+
"sisyphus_agent": {
|
|
768
821
|
"disabled": true
|
|
769
822
|
}
|
|
770
823
|
}
|
|
771
824
|
```
|
|
772
825
|
|
|
773
|
-
You can also customize Sisyphus
|
|
826
|
+
You can also customize Sisyphus agents like other agents:
|
|
774
827
|
|
|
775
828
|
```json
|
|
776
829
|
{
|
|
@@ -779,6 +832,9 @@ You can also customize Sisyphus and Planner-Sisyphus like other agents:
|
|
|
779
832
|
"model": "anthropic/claude-sonnet-4",
|
|
780
833
|
"temperature": 0.3
|
|
781
834
|
},
|
|
835
|
+
"Builder-Sisyphus": {
|
|
836
|
+
"model": "anthropic/claude-opus-4"
|
|
837
|
+
},
|
|
782
838
|
"Planner-Sisyphus": {
|
|
783
839
|
"model": "openai/gpt-5.2"
|
|
784
840
|
}
|
|
@@ -786,9 +842,13 @@ You can also customize Sisyphus and Planner-Sisyphus like other agents:
|
|
|
786
842
|
}
|
|
787
843
|
```
|
|
788
844
|
|
|
789
|
-
| Option
|
|
790
|
-
|
|
|
791
|
-
| `disabled`
|
|
845
|
+
| Option | Default | Description |
|
|
846
|
+
| ------------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
847
|
+
| `disabled` | `false` | When `true`, disables all Sisyphus orchestration and restores original build/plan as primary. |
|
|
848
|
+
| `builder_enabled` | `false` | When `true`, enables Builder-Sisyphus agent (OhMyOpenCode enhanced build mode). Disabled by default to preserve default OpenCode build experience. |
|
|
849
|
+
| `planner_enabled` | `true` | When `true`, enables Planner-Sisyphus agent (OhMyOpenCode enhanced plan mode). Enabled by default. |
|
|
850
|
+
| `replace_build` | `true` | When `true`, demotes default build agent to subagent mode. Set to `false` to keep both Builder-Sisyphus and default build available. |
|
|
851
|
+
| `replace_plan` | `true` | When `true`, demotes default plan agent to subagent mode. Set to `false` to keep both Planner-Sisyphus and default plan available. |
|
|
792
852
|
|
|
793
853
|
### Hooks
|
|
794
854
|
|
|
@@ -851,15 +911,17 @@ Opt-in experimental features that may change or be removed in future versions. U
|
|
|
851
911
|
{
|
|
852
912
|
"experimental": {
|
|
853
913
|
"aggressive_truncation": true,
|
|
854
|
-
"auto_resume": true
|
|
914
|
+
"auto_resume": true,
|
|
915
|
+
"truncate_all_tool_outputs": false
|
|
855
916
|
}
|
|
856
917
|
}
|
|
857
918
|
```
|
|
858
919
|
|
|
859
|
-
| Option
|
|
860
|
-
|
|
|
861
|
-
| `aggressive_truncation`
|
|
862
|
-
| `auto_resume`
|
|
920
|
+
| Option | Default | Description |
|
|
921
|
+
| --------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
922
|
+
| `aggressive_truncation` | `false` | When token limit is exceeded, aggressively truncates tool outputs to fit within limits. More aggressive than the default truncation behavior. Falls back to summarize/revert if insufficient. |
|
|
923
|
+
| `auto_resume` | `false` | Automatically resumes session after successful recovery from thinking block errors or thinking disabled violations. Extracts the last user message and continues. |
|
|
924
|
+
| `truncate_all_tool_outputs` | `true` | Dynamically truncates ALL tool outputs based on context window usage to prevent prompts from becoming too long. Disable by setting to `false` if you need full tool outputs. |
|
|
863
925
|
|
|
864
926
|
**Warning**: These features are experimental and may cause unexpected behavior. Enable only if you understand the implications.
|
|
865
927
|
|
|
@@ -909,29 +971,6 @@ I have no affiliation with any project or model mentioned here. This is purely p
|
|
|
909
971
|
|
|
910
972
|
*Special thanks to [@junhoyeo](https://github.com/junhoyeo) for this amazing hero image.*
|
|
911
973
|
|
|
912
|
-
## Reviews
|
|
913
|
-
|
|
914
|
-
> "If Claude Code does in 7 days what human does in 3 months, Sisyphus does in 1 hour"
|
|
915
|
-
> -- B, Quant Researcher
|
|
916
|
-
|
|
917
|
-
> "Knocked out 8000 eslint warnings with Oh My Opencode, just in a day"
|
|
918
|
-
> -- Jacob Ferrari, from [X](https://x.com/jacobferrari_/status/2003258761952289061)
|
|
919
|
-
|
|
920
|
-
> "Hire @yeon_gyu_kim if you can convince him, this dude has revolutionized opencode."
|
|
921
|
-
> -- [to Sam Altman's post](https://x.com/mysticaltech/status/2001858758608376079)
|
|
922
|
-
|
|
923
|
-
> "You guys should pull this into core and recruit him. Seriously. It's really, really, really good."
|
|
924
|
-
> -- Henning Kilset, from X
|
|
925
|
-
|
|
926
|
-
> "ok yeah holy shit @androolloyd this thing is legit oh my opencode is sick"
|
|
927
|
-
> -- z80.eth, from [X](https://x.com/0xz80/status/2001815226505924791)
|
|
928
|
-
|
|
929
|
-
> "use oh-my-opencode, you will never go back"
|
|
930
|
-
> -- [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
|
|
931
|
-
|
|
932
|
-
> "Oh My Opencode is king of the hill and has no contenders"
|
|
933
|
-
> -- [RyanOnThePath](https://x.com/RyanOnThePath/status/2001438321252118548)
|
|
934
|
-
|
|
935
974
|
## Loved by professionals at
|
|
936
975
|
|
|
937
976
|
- [Indent](https://indentcorp.com)
|