Skip to content

Commit 7f41566

Browse files
verkyyiclaude
andcommitted
docs: add uninstall section + playground demo link for agent-team
Two additions to strengthen the end-user story, both surfaced by the awesome-claude-code self-evaluation: - README: short Uninstall section covering /plugin uninstall, gh aw remove, gh secret delete, and the seven agent-team labels. - README + catalog/agent-team/README.md: link to verkyyi/agent-team-playground#5 as the live "see it in action" reference — browsable PR + linked run pages beat a screencast for a text-output pipeline. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 5dcc0bc commit 7f41566

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,25 @@ Beyond the one-workflow-per-job templates above, this repo ships reference patte
6565

6666
- **[agent-team](catalog/agent-team/README.md)** — four roles (spec → plan → impl → review) coordinating through structured comment blocks and a small internal label state machine. Install all four in one pass with `/install-agent-team`; dispatch tasks by opening an issue and adding a single `agent-team` label. Use when you want visible handoffs, human override between steps, and an audit trail per task.
6767

68+
**See it in action**: [verkyyi/agent-team-playground#5](https://github.com/verkyyi/agent-team-playground/pull/5) — a complete spec → plan → impl → review run on a toy `greet()` function, with all four workflow runs linked and the reviewer's approve comment posted back on the issue thread.
69+
70+
## Uninstall
71+
72+
Remove the plugin from Claude Code:
73+
74+
```
75+
/plugin uninstall github-agent-runner
76+
/plugin marketplace remove github-agent-runner # if you added the marketplace
77+
```
78+
79+
To remove workflows this plugin installed into your target repo:
80+
81+
- `gh aw remove <workflow>` for each installed workflow (deletes both the `.md` source and the compiled `.lock.yml`), then commit the deletion.
82+
- `gh secret delete CLAUDE_CODE_OAUTH_TOKEN` — or `ANTHROPIC_API_KEY`, whichever path you used — to unset the auth secret.
83+
- For `agent-team` specifically, also delete the seven labels: `gh label delete agent-team` plus `gh label delete state:<name>` for each of `plan-needed`, `impl-needed`, `review-needed`, `done`, `blocked`, and `in-progress`.
84+
85+
Nothing else is persisted — the plugin writes only to your target repo (under user approval) and holds no local state outside Claude Code's own plugin directory.
86+
6887
## Local development
6988

7089
```bash

catalog/agent-team/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ A four-workflow pattern for a spec → plan → implement → review pipeline on
44

55
> **Status**: reference pattern. Templates only — `.lock.yml` files are generated when you install into a target repo.
66
7+
## See it in action
8+
9+
[verkyyi/agent-team-playground#5](https://github.com/verkyyi/agent-team-playground/pull/5) — a complete spec → plan → impl → review run on a toy `greet()` function. The issue thread shows all four agents' comments, every workflow-run link, and the reviewer's approve verdict. Useful reference for what the happy-path output looks like before installing into a real repo.
10+
711
## When to use this
812

913
You want multiple specialized agents (not one mega-prompt) collaborating on a task, with a visible audit trail in the issue thread and human override at any step.

0 commit comments

Comments
 (0)