Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ commands.html

# Local test installs
.claude/
.roo/
.roomodes

# Build artifacts (committed to npm, not git)
hooks/dist/
Expand Down
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,17 @@ npx get-shit-done-cc@latest
```

The installer prompts you to choose:
1. **Runtime** — Claude Code, OpenCode, Gemini, Codex, or all
1. **Runtime** — Claude Code, OpenCode, Gemini, Codex, Roo Code, or all
2. **Location** — Global (all projects) or local (current project only)

Verify with:
- Claude Code / Gemini: `/gsd:help`
- OpenCode: `/gsd-help`
- OpenCode / Roo Code: `/gsd-help`
- Codex: `$gsd-help`

> [!NOTE]
> Codex installation uses skills (`skills/gsd-*/SKILL.md`) rather than custom prompts.
> Roo Code installation uses project-level modes (`.roomodes`) or global custom modes (`custom_modes.yaml`) along with custom slash commands (`~/.roo/commands/`).

### Staying Updated

Expand All @@ -113,6 +114,10 @@ npx get-shit-done-cc --opencode --global # Install to ~/.config/opencode/
# Gemini CLI
npx get-shit-done-cc --gemini --global # Install to ~/.gemini/

# Roo Code
npx get-shit-done-cc --roo --global # Install to ~/.roo/
npx get-shit-done-cc --roo --local # Install to ./.roo/

# Codex (skills-first)
npx get-shit-done-cc --codex --global # Install to ~/.codex/
npx get-shit-done-cc --codex --local # Install to ./.codex/
Expand Down Expand Up @@ -141,6 +146,17 @@ Installs to `./.claude/` for testing modifications before contributing.

</details>

### Roo Code Integration

GSD supports [Roo Code](https://github.com/RooVeterinaryInc/Roo-Cline) through automatic conversion of Claude Code slash commands into Roo custom modes and slash commands.

- **Slash Commands**: Replaced `/gsd:xxx` (Claude) with `/gsd-xxx` (Roo).
- **Tools**: Maps Claude-style tools to Roo equivalents (e.g., `Bash` -> `execute_command`, `Read` -> `read_file`).
- **Modes**: GSD agents are installed as custom Roo modes (e.g., `gsd-executor`, `gsd-planner`).
- **Subagents**: Spawns subagents using Roo's `new_task` tool with appropriate mode mapping.

Verify your installation by running `/gsd-help` in Roo Code.

### Recommended: Skip Permissions Mode

GSD is designed for frictionless automation. Run Claude Code with:
Expand Down
Loading