oh-my-opencode-unguarded 3.9.2 → 3.9.4
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 -82
- package/README.ja.md +347 -347
- package/README.ko.md +346 -346
- package/README.md +43 -43
- package/README.ru.md +367 -367
- package/README.zh-cn.md +346 -346
- package/bin/oh-my-opencode.js +142 -142
- package/bin/platform.d.ts +14 -14
- package/bin/platform.js +82 -82
- package/bin/platform.test.ts +203 -203
- package/dist/cli/index.js +1 -1
- package/package.json +99 -99
- package/postinstall.mjs +59 -59
package/README.md
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
# oh-my-opencode-unguarded
|
|
2
|
-
|
|
3
|
-
A fork of [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode) with custom agent prompts. Automatically syncs upstream every hour.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
bunx oh-my-opencode-unguarded install
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
Or via npm:
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
npm install -g oh-my-opencode-unguarded
|
|
15
|
-
oh-my-opencode-unguarded install
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
## What's Different
|
|
19
|
-
|
|
20
|
-
This fork is identical to upstream **except** for customized agent prompts in `src/agents/`. Everything else -- features, tools, hooks, MCPs, skills -- stays in sync automatically.
|
|
21
|
-
|
|
22
|
-
### Auto-Sync
|
|
23
|
-
|
|
24
|
-
A GitHub Actions workflow runs every hour:
|
|
25
|
-
|
|
26
|
-
1. Detects new upstream commits
|
|
27
|
-
2. Merges changes while preserving custom prompt files
|
|
28
|
-
3. Builds, typechecks, and publishes to npm
|
|
29
|
-
|
|
30
|
-
No manual intervention required. Version numbers track upstream.
|
|
31
|
-
|
|
32
|
-
## Upstream Documentation
|
|
33
|
-
|
|
34
|
-
All features, configuration, and guides apply as-is:
|
|
35
|
-
|
|
36
|
-
- [Features](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/reference/features.md)
|
|
37
|
-
- [Configuration](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/reference/configuration.md)
|
|
38
|
-
- [Installation Guide](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/guide/installation.md)
|
|
39
|
-
- [Orchestration Guide](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/guide/orchestration.md)
|
|
40
|
-
|
|
41
|
-
## License
|
|
42
|
-
|
|
43
|
-
Same as upstream -- [SUL-1.0](LICENSE.md)
|
|
1
|
+
# oh-my-opencode-unguarded
|
|
2
|
+
|
|
3
|
+
A fork of [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode) with custom agent prompts. Automatically syncs upstream every hour.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bunx oh-my-opencode-unguarded install
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or via npm:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g oh-my-opencode-unguarded
|
|
15
|
+
oh-my-opencode-unguarded install
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## What's Different
|
|
19
|
+
|
|
20
|
+
This fork is identical to upstream **except** for customized agent prompts in `src/agents/`. Everything else -- features, tools, hooks, MCPs, skills -- stays in sync automatically.
|
|
21
|
+
|
|
22
|
+
### Auto-Sync
|
|
23
|
+
|
|
24
|
+
A GitHub Actions workflow runs every hour:
|
|
25
|
+
|
|
26
|
+
1. Detects new upstream commits
|
|
27
|
+
2. Merges changes while preserving custom prompt files
|
|
28
|
+
3. Builds, typechecks, and publishes to npm
|
|
29
|
+
|
|
30
|
+
No manual intervention required. Version numbers track upstream.
|
|
31
|
+
|
|
32
|
+
## Upstream Documentation
|
|
33
|
+
|
|
34
|
+
All features, configuration, and guides apply as-is:
|
|
35
|
+
|
|
36
|
+
- [Features](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/reference/features.md)
|
|
37
|
+
- [Configuration](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/reference/configuration.md)
|
|
38
|
+
- [Installation Guide](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/guide/installation.md)
|
|
39
|
+
- [Orchestration Guide](https://github.com/code-yeongyu/oh-my-opencode/blob/dev/docs/guide/orchestration.md)
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
Same as upstream -- [SUL-1.0](LICENSE.md)
|