@oh-my-pi/cli 0.4.0 → 0.5.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.md +14 -13
- package/dist/cli.js +4787 -858
- package/dist/commands/config.d.ts +27 -0
- package/dist/commands/config.d.ts.map +1 -1
- package/dist/commands/create.d.ts.map +1 -1
- package/dist/commands/doctor.d.ts +2 -0
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/env.d.ts.map +1 -1
- package/dist/commands/features.d.ts.map +1 -1
- package/dist/commands/info.d.ts.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/install.d.ts +6 -0
- package/dist/commands/install.d.ts.map +1 -1
- package/dist/commands/link.d.ts +1 -0
- package/dist/commands/link.d.ts.map +1 -1
- package/dist/commands/list.d.ts.map +1 -1
- package/dist/commands/outdated.d.ts.map +1 -1
- package/dist/commands/search.d.ts.map +1 -1
- package/dist/commands/uninstall.d.ts +3 -0
- package/dist/commands/uninstall.d.ts.map +1 -1
- package/dist/commands/update.d.ts +1 -0
- package/dist/commands/update.d.ts.map +1 -1
- package/dist/commands/why.d.ts.map +1 -1
- package/dist/conflicts.d.ts +7 -2
- package/dist/conflicts.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/lock.d.ts.map +1 -1
- package/dist/lockfile.d.ts +24 -3
- package/dist/lockfile.d.ts.map +1 -1
- package/dist/manifest.d.ts +12 -1
- package/dist/manifest.d.ts.map +1 -1
- package/dist/npm.d.ts +11 -0
- package/dist/npm.d.ts.map +1 -1
- package/dist/output.d.ts +51 -0
- package/dist/output.d.ts.map +1 -0
- package/dist/paths.d.ts +5 -0
- package/dist/paths.d.ts.map +1 -1
- package/dist/progress.d.ts +78 -0
- package/dist/progress.d.ts.map +1 -0
- package/dist/symlinks.d.ts.map +1 -1
- package/package.json +14 -7
- package/.editorconfig +0 -14
- package/.github/icon.png +0 -0
- package/.github/logo.png +0 -0
- package/.github/workflows/ci.yml +0 -32
- package/.github/workflows/publish.yml +0 -42
- package/.prettierrc +0 -6
- package/biome.json +0 -29
- package/bun.lock +0 -112
- package/plugins/exa/README.md +0 -159
- package/plugins/exa/package.json +0 -89
- package/plugins/exa/tools/exa/company.ts +0 -46
- package/plugins/exa/tools/exa/index.ts +0 -75
- package/plugins/exa/tools/exa/linkedin.ts +0 -46
- package/plugins/exa/tools/exa/researcher.ts +0 -48
- package/plugins/exa/tools/exa/runtime.json +0 -4
- package/plugins/exa/tools/exa/search.ts +0 -57
- package/plugins/exa/tools/exa/shared.ts +0 -256
- package/plugins/exa/tools/exa/websets.ts +0 -73
- package/plugins/metal-theme/README.md +0 -13
- package/plugins/metal-theme/omp.json +0 -8
- package/plugins/metal-theme/package.json +0 -28
- package/plugins/metal-theme/themes/metal.json +0 -79
- package/plugins/subagents/README.md +0 -28
- package/plugins/subagents/agents/explore.md +0 -82
- package/plugins/subagents/agents/planner.md +0 -54
- package/plugins/subagents/agents/reviewer.md +0 -59
- package/plugins/subagents/agents/task.md +0 -53
- package/plugins/subagents/commands/architect-plan.md +0 -10
- package/plugins/subagents/commands/implement-with-critic.md +0 -11
- package/plugins/subagents/commands/implement.md +0 -11
- package/plugins/subagents/omp.json +0 -15
- package/plugins/subagents/package.json +0 -58
- package/plugins/subagents/tools/task/index.ts +0 -1247
- package/plugins/user-prompt/README.md +0 -86
- package/plugins/user-prompt/package.json +0 -30
- package/plugins/user-prompt/tools/user-prompt/index.ts +0 -263
- package/scripts/bump-version.sh +0 -49
- package/scripts/publish.sh +0 -35
- package/src/cli.ts +0 -242
- package/src/commands/config.ts +0 -399
- package/src/commands/create.ts +0 -203
- package/src/commands/doctor.ts +0 -305
- package/src/commands/enable.ts +0 -122
- package/src/commands/env.ts +0 -38
- package/src/commands/features.ts +0 -332
- package/src/commands/info.ts +0 -120
- package/src/commands/init.ts +0 -60
- package/src/commands/install.ts +0 -767
- package/src/commands/link.ts +0 -159
- package/src/commands/list.ts +0 -197
- package/src/commands/outdated.ts +0 -87
- package/src/commands/search.ts +0 -77
- package/src/commands/uninstall.ts +0 -127
- package/src/commands/update.ts +0 -175
- package/src/commands/why.ts +0 -136
- package/src/conflicts.ts +0 -116
- package/src/errors.ts +0 -22
- package/src/index.ts +0 -46
- package/src/lock.ts +0 -46
- package/src/lockfile.ts +0 -132
- package/src/manifest.ts +0 -360
- package/src/npm.ts +0 -206
- package/src/paths.ts +0 -137
- package/src/runtime.ts +0 -109
- package/src/symlinks.ts +0 -460
- package/tsconfig.json +0 -28
package/README.md
CHANGED
|
@@ -18,6 +18,17 @@
|
|
|
18
18
|
|
|
19
19
|
---
|
|
20
20
|
|
|
21
|
+
## Plugins
|
|
22
|
+
|
|
23
|
+
| Plugin | Description |
|
|
24
|
+
| ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |
|
|
25
|
+
| **[@oh-my-pi/subagents](https://npmjs.com/package/@oh-my-pi/subagents)** | Task delegation with specialized sub-agents (task, planner, explore, reviewer) |
|
|
26
|
+
| **[@oh-my-pi/exa](https://npmjs.com/package/@oh-my-pi/exa)** | Exa AI-powered web search, company/people lookup, and websets |
|
|
27
|
+
| **[@oh-my-pi/user-prompt](https://npmjs.com/package/@oh-my-pi/user-prompt)** | Interactive user prompting for gathering input during execution |
|
|
28
|
+
| **[@oh-my-pi/metal-theme](https://npmjs.com/package/@oh-my-pi/metal-theme)** | A metal theme 🤘 |
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
21
32
|
**Oh My Pi won't make Claude write better code...** but it might make _you_ feel like it does.
|
|
22
33
|
|
|
23
34
|
Install community plugins with a single command. Themes, custom agents, slash commands, tools — all managed through npm, all a `omp install` away.
|
|
@@ -33,18 +44,15 @@ npm install -g @oh-my-pi/cli
|
|
|
33
44
|
## Quick Start
|
|
34
45
|
|
|
35
46
|
```bash
|
|
36
|
-
# Initialize a project-local plugin config (optional)
|
|
37
|
-
omp init
|
|
38
|
-
|
|
39
|
-
# Search for plugins
|
|
40
|
-
omp search agents
|
|
41
|
-
|
|
42
47
|
# Install a plugin
|
|
43
48
|
omp install @oh-my-pi/subagents
|
|
44
49
|
|
|
45
50
|
# See what you've got
|
|
46
51
|
omp list
|
|
47
52
|
|
|
53
|
+
# Search for more
|
|
54
|
+
omp search agents
|
|
55
|
+
|
|
48
56
|
# Check for updates
|
|
49
57
|
omp outdated
|
|
50
58
|
|
|
@@ -291,13 +299,6 @@ omp list
|
|
|
291
299
|
cd my-plugin && npm publish
|
|
292
300
|
```
|
|
293
301
|
|
|
294
|
-
## Bundled Plugins
|
|
295
|
-
|
|
296
|
-
- **[@oh-my-pi/subagents](https://npmjs.com/package/@oh-my-pi/subagents)**: Task delegation with specialized sub-agents (task, planner, explore, reviewer)
|
|
297
|
-
- **[@oh-my-pi/metal-theme](https://npmjs.com/package/@oh-my-pi/metal-theme)**: A metal theme
|
|
298
|
-
- **[@oh-my-pi/exa](https://npmjs.com/package/@oh-my-pi/exa)**: Exa AI-powered web search and websets tools
|
|
299
|
-
- **[@oh-my-pi/user-prompt](https://npmjs.com/package/@oh-my-pi/user-prompt)**: Interactive user prompting for gathering input during agent execution
|
|
300
|
-
|
|
301
302
|
## Troubleshooting
|
|
302
303
|
|
|
303
304
|
```bash
|