Skip to content

Commit 169337b

Browse files
committed
docs: fork notice, repoint marketplace to MomePP, fix stale commands
- Add fork notice banner explaining why this fork exists (PR darrenhinde#296 pre-merged) - Root README: replace stale `/oac:setup --core` with `/install-context` and list actual commands registered in plugin.json (fixes upstream darrenhinde#281) - Root README: add `/plugin uninstall` + marketplace-remove steps (addresses upstream darrenhinde#266) - Correct subagent count 7 → 6 and skill count 9 → 12 - plugins/claude-code/README.md: repoint marketplace add URL to MomePP fork and add uninstall block
1 parent 857c34c commit 169337b

2 files changed

Lines changed: 59 additions & 6 deletions

File tree

README.md

Lines changed: 49 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
> **📌 Fork Notice**
2+
>
3+
> This is a personal fork of [`darrenhinde/OpenAgentsControl`](https://github.com/darrenhinde/OpenAgentsControl) maintained for **Claude Code plugin** use.
4+
>
5+
> **Why this fork exists:** upstream PR [#296](https://github.com/darrenhinde/OpenAgentsControl/pull/296) registers the plugin's 12 skills and 6 commands in `plugin.json` so Claude Code can actually discover them. Until that PR is merged upstream, this fork carries it pre-merged so the Claude Code marketplace install works out of the box.
6+
>
7+
> **Install via Claude Code:**
8+
> ```
9+
> /plugin marketplace add MomePP/OpenAgentsControl
10+
> /plugin install oac
11+
> ```
12+
>
13+
> **What's merged vs. upstream `main`:**
14+
> - ✅ PR [#296](https://github.com/darrenhinde/OpenAgentsControl/pull/296) — `plugin.json` skills/commands registration + `plugin-abilities` hardening
15+
> - ❌ PR [#297](https://github.com/darrenhinde/OpenAgentsControl/pull/297) — `install.sh` fixes (not needed for marketplace install)
16+
> - ❌ PR [#298](https://github.com/darrenhinde/OpenAgentsControl/pull/298) — OAC CLI npm package (still WIP upstream)
17+
> - ❌ PR [#295](https://github.com/darrenhinde/OpenAgentsControl/pull/295) — OpenCode worktree skill (not applicable to Claude Code)
18+
>
19+
> Everything below is upstream documentation — refer to the original repo for the authoritative source.
20+
21+
---
22+
123
<div align="center">
224
325
![OpenAgents Control Hero](docs/images/hero-image.png)
@@ -169,8 +191,9 @@ opencode --agent OpenAgent
169191

170192
1. Register the marketplace:
171193
```bash
172-
/plugin marketplace add darrenhinde/OpenAgentsControl
194+
/plugin marketplace add MomePP/OpenAgentsControl
173195
```
196+
<sub>Using this fork until upstream merges [PR #296](https://github.com/darrenhinde/OpenAgentsControl/pull/296). Upstream `darrenhinde/OpenAgentsControl` currently does not register skills/commands in `plugin.json`, so Claude Code cannot discover them.</sub>
174197

175198
2. Install the plugin:
176199
```bash
@@ -179,19 +202,40 @@ opencode --agent OpenAgent
179202

180203
3. Download context files:
181204
```bash
182-
/oac:setup --core
205+
/install-context
206+
```
207+
<sub>Use `/install-context --profile=extended` or `--profile=all` for larger profiles, `--force` to reinstall, `--dry-run` to preview.</sub>
208+
209+
4. Verify installation:
210+
```bash
211+
/oac:status
183212
```
184213

185-
4. Start building:
214+
5. Start building:
186215
```
187216
Add a login endpoint
188217
```
189218

219+
**Available commands** (as registered in `plugin.json`):
220+
- `/install-context` — download context files from the OAC registry
221+
- `/oac:help` — show OAC usage guide
222+
- `/oac:status` — show plugin status and installed context
223+
- `/oac:cleanup` — clean up old temporary files
224+
- `/brainstorm` — brainstorm ideas and approaches
225+
- `/debug` — debug an issue systematically
226+
227+
**Uninstall:**
228+
```bash
229+
/plugin uninstall oac
230+
/plugin marketplace remove MomePP/OpenAgentsControl
231+
# Then remove any downloaded context under .oac/ or .claude/context/ if you no longer need it.
232+
```
233+
190234
**Features:**
191235
- ✅ 6-stage workflow with approval gates
192236
- ✅ Context-aware code generation
193-
-7 specialized subagents (task-manager, context-scout, context-manager, coder-agent, test-engineer, code-reviewer, external-scout)
194-
-9 workflow skills + 6 user commands
237+
-6 specialized subagents (task-manager, context-scout, external-research, coder-agent, test-engineer, code-reviewer)
238+
-12 workflow skills + 6 user commands
195239
- ✅ Flexible context discovery (.oac config, .claude/context, context, .opencode/context)
196240
- ✅ Add context from GitHub, worktrees, local files, or URLs
197241
- ✅ Easy feature planning with `/oac:plan`

plugins/claude-code/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ Install directly from the Claude Code marketplace:
2929

3030
```bash
3131
# Add the OpenAgents Control marketplace repository
32-
/plugin marketplace add https://github.com/darrenhinde/OpenAgentsControl
32+
# (MomePP fork pre-merges PR #296 so Claude Code can discover skills/commands)
33+
/plugin marketplace add https://github.com/MomePP/OpenAgentsControl
3334

3435
# Install the OAC plugin
3536
/plugin install oac
@@ -42,6 +43,14 @@ Install directly from the Claude Code marketplace:
4243
4344
**That's it!** The plugin is now installed and ready to use.
4445

46+
**Uninstall:**
47+
48+
```bash
49+
/plugin uninstall oac
50+
/plugin marketplace remove MomePP/OpenAgentsControl
51+
# Remove downloaded context dirs (.oac/, .claude/context/) if no longer needed.
52+
```
53+
4554
### Option 2: Local Development
4655

4756
For plugin development or testing:

0 commit comments

Comments
 (0)