oh-my-opencode 2.5.0 → 2.5.2
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 +29 -2
- package/README.ko.md +29 -2
- package/README.md +31 -4
- package/README.zh-cn.md +29 -3
- 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 +71 -1
- package/dist/cli/config-manager.test.d.ts +1 -0
- package/dist/cli/index.js +3744 -0
- package/dist/config/schema.d.ts +21 -0
- package/dist/google-auth.js +1735 -0
- 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 +296 -55
- package/package.json +2 -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)
|
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)
|
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)
|
|
@@ -438,8 +465,8 @@ To remove oh-my-opencode:
|
|
|
438
465
|
- **oracle** (`openai/gpt-5.2`): Architecture, code review, strategy. Uses GPT-5.2 for its stellar logical reasoning and deep analysis. Inspired by AmpCode.
|
|
439
466
|
- **librarian** (`anthropic/claude-sonnet-4-5`): Multi-repo analysis, doc lookup, implementation examples. Uses Claude Sonnet 4.5 for deep codebase understanding and GitHub research with evidence-based answers. Inspired by AmpCode.
|
|
440
467
|
- **explore** (`opencode/grok-code`): Fast codebase exploration and pattern matching. Claude Code uses Haiku; we use Grok—it's free, blazing fast, and plenty smart for file traversal. Inspired by Claude Code.
|
|
441
|
-
- **frontend-ui-ux-engineer** (`google/gemini-3-pro-
|
|
442
|
-
- **document-writer** (`google/gemini-3-
|
|
468
|
+
- **frontend-ui-ux-engineer** (`google/gemini-3-pro-high`): A designer turned developer. Builds gorgeous UIs. Gemini excels at creative, beautiful UI code.
|
|
469
|
+
- **document-writer** (`google/gemini-3-flash`): Technical writing expert. Gemini is a wordsmith—writes prose that flows.
|
|
443
470
|
- **multimodal-looker** (`google/gemini-3-flash`): Visual content specialist. Analyzes PDFs, images, diagrams to extract information.
|
|
444
471
|
|
|
445
472
|
The main agent invokes these automatically, but you can call them explicitly:
|
package/README.zh-cn.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
> [!NOTE]
|
|
2
|
+
>
|
|
3
|
+
> *"我致力于引发一场软件革命,创造一个AI生成的代码与人类代码无法区分、却能实现更多的世界。我已经在这段旅程中投入了个人时间、热情和资金,并将继续这样做。"*
|
|
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
|
|
|
@@ -25,7 +34,7 @@
|
|
|
25
34
|
[](https://github.com/code-yeongyu/oh-my-opencode/network/members)
|
|
26
35
|
[](https://github.com/code-yeongyu/oh-my-opencode/stargazers)
|
|
27
36
|
[](https://github.com/code-yeongyu/oh-my-opencode/issues)
|
|
28
|
-
[](https://github.com/code-yeongyu/oh-my-opencode/blob/master/LICENSE.md)
|
|
29
38
|
|
|
30
39
|
[English](README.md) | [한국어](README.ko.md) | [日本語](README.ja.md) | [简体中文](README.zh-cn.md)
|
|
31
40
|
|
|
@@ -33,6 +42,24 @@
|
|
|
33
42
|
|
|
34
43
|
<!-- </CENTERED SECTION FOR GITHUB DISPLAY> -->
|
|
35
44
|
|
|
45
|
+
## 用户评价
|
|
46
|
+
|
|
47
|
+
> "如果 Claude Code 能在 7 天内完成人类 3 个月的工作,那么 Sisyphus 只需要 1 小时。任务完成之前它就是一直干。It is a discipline agent." — B, Quant Researcher
|
|
48
|
+
|
|
49
|
+
> "只用了一天,就用 Oh My Opencode 干掉了 8000 个 eslint 警告" — [Jacob Ferrari](https://x.com/jacobferrari_/status/2003258761952289061)
|
|
50
|
+
|
|
51
|
+
> "你们应该把它合并到核心代码里并聘用他。认真的。这真的、真的、真的很好" — Henning Kilset
|
|
52
|
+
|
|
53
|
+
> "如果你能说服 @yeon_gyu_kim,就雇佣他吧,这家伙彻底改变了 opencode" — [mysticaltech](https://x.com/mysticaltech/status/2001858758608376079)
|
|
54
|
+
|
|
55
|
+
> "哇靠 @androolloyd 这玩意儿是真的,oh my opencode 太强了" — [z80.eth](https://x.com/0xz80/status/2001815226505924791)
|
|
56
|
+
|
|
57
|
+
> "用了 oh-my-opencode,你就回不去了" — [d0t3ch](https://x.com/d0t3ch/status/2001685618200580503)
|
|
58
|
+
|
|
59
|
+
> "Oh My Opencode 独孤求败,没有对手" — [RyanOnThePath](https://x.com/RyanOnThePath/status/2001438321252118548)
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
36
63
|
## 目录
|
|
37
64
|
|
|
38
65
|
- [Oh My OpenCode](#oh-my-opencode)
|
|
@@ -797,7 +824,6 @@ Oh My OpenCode 送你重构工具(重命名、代码操作)。
|
|
|
797
824
|
|
|
798
825
|
**警告**:这些功能是实验性的,可能会导致意外行为。只有在理解其影响的情况下才启用。
|
|
799
826
|
|
|
800
|
-
|
|
801
827
|
## 作者的话
|
|
802
828
|
|
|
803
829
|
装个 Oh My OpenCode 试试。
|
package/dist/agents/explore.d.ts
CHANGED
package/dist/agents/types.d.ts
CHANGED
|
@@ -4,5 +4,7 @@ export declare function isGptModel(model: string): boolean;
|
|
|
4
4
|
export type BuiltinAgentName = "Sisyphus" | "oracle" | "librarian" | "explore" | "frontend-ui-ux-engineer" | "document-writer" | "multimodal-looker";
|
|
5
5
|
export type OverridableAgentName = "build" | BuiltinAgentName;
|
|
6
6
|
export type AgentName = BuiltinAgentName;
|
|
7
|
-
export type AgentOverrideConfig = Partial<AgentConfig
|
|
7
|
+
export type AgentOverrideConfig = Partial<AgentConfig> & {
|
|
8
|
+
prompt_append?: string;
|
|
9
|
+
};
|
|
8
10
|
export type AgentOverrides = Partial<Record<OverridableAgentName, AgentOverrideConfig>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ConfigMergeResult,
|
|
1
|
+
import type { ConfigMergeResult, DetectedConfig, InstallConfig } from "./types";
|
|
2
2
|
export declare function fetchLatestVersion(packageName: string): Promise<string | null>;
|
|
3
3
|
type ConfigFormat = "json" | "jsonc" | "none";
|
|
4
4
|
export declare function detectConfigFormat(): {
|
|
@@ -13,6 +13,76 @@ export declare function getOpenCodeVersion(): Promise<string | null>;
|
|
|
13
13
|
export declare function addAuthPlugins(config: InstallConfig): Promise<ConfigMergeResult>;
|
|
14
14
|
export declare function setupChatGPTHotfix(): ConfigMergeResult;
|
|
15
15
|
export declare function runBunInstall(): Promise<boolean>;
|
|
16
|
+
export declare const ANTIGRAVITY_PROVIDER_CONFIG: {
|
|
17
|
+
google: {
|
|
18
|
+
name: string;
|
|
19
|
+
models: {
|
|
20
|
+
"gemini-3-pro-high": {
|
|
21
|
+
name: string;
|
|
22
|
+
thinking: boolean;
|
|
23
|
+
attachment: boolean;
|
|
24
|
+
limit: {
|
|
25
|
+
context: number;
|
|
26
|
+
output: number;
|
|
27
|
+
};
|
|
28
|
+
modalities: {
|
|
29
|
+
input: string[];
|
|
30
|
+
output: string[];
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
"gemini-3-pro-medium": {
|
|
34
|
+
name: string;
|
|
35
|
+
thinking: boolean;
|
|
36
|
+
attachment: boolean;
|
|
37
|
+
limit: {
|
|
38
|
+
context: number;
|
|
39
|
+
output: number;
|
|
40
|
+
};
|
|
41
|
+
modalities: {
|
|
42
|
+
input: string[];
|
|
43
|
+
output: string[];
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
"gemini-3-pro-low": {
|
|
47
|
+
name: string;
|
|
48
|
+
thinking: boolean;
|
|
49
|
+
attachment: boolean;
|
|
50
|
+
limit: {
|
|
51
|
+
context: number;
|
|
52
|
+
output: number;
|
|
53
|
+
};
|
|
54
|
+
modalities: {
|
|
55
|
+
input: string[];
|
|
56
|
+
output: string[];
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
"gemini-3-flash": {
|
|
60
|
+
name: string;
|
|
61
|
+
attachment: boolean;
|
|
62
|
+
limit: {
|
|
63
|
+
context: number;
|
|
64
|
+
output: number;
|
|
65
|
+
};
|
|
66
|
+
modalities: {
|
|
67
|
+
input: string[];
|
|
68
|
+
output: string[];
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
"gemini-3-flash-lite": {
|
|
72
|
+
name: string;
|
|
73
|
+
attachment: boolean;
|
|
74
|
+
limit: {
|
|
75
|
+
context: number;
|
|
76
|
+
output: number;
|
|
77
|
+
};
|
|
78
|
+
modalities: {
|
|
79
|
+
input: string[];
|
|
80
|
+
output: string[];
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
};
|
|
16
86
|
export declare function addProviderConfig(config: InstallConfig): ConfigMergeResult;
|
|
17
87
|
export declare function detectCurrentConfig(): DetectedConfig;
|
|
18
88
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|