Skip to content
Open
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
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
```bash
review.claude.md # Run with Claude
commit.gemini.md "fix auth bug" # Run with Gemini
explain.opencode.md # Run with OpenCode
git diff | explain.claude.md # Pipe through any command
```

Expand Down Expand Up @@ -40,6 +41,7 @@ Name your file `task.COMMAND.md` and the command is inferred:
```bash
task.claude.md # Runs claude
task.gemini.md # Runs gemini
task.opencode.md # Runs opencode
task.codex.md # Runs codex
task.copilot.md # Runs copilot (print mode by default)
```
Expand Down Expand Up @@ -318,6 +320,7 @@ task.claude.md # Runs: claude --print "..."
task.copilot.md # Runs: copilot --silent --prompt "..."
task.codex.md # Runs: codex exec "..."
task.gemini.md # Runs: gemini "..." (one-shot)
task.opencode.md # Runs: opencode run "..." (non-interactive)
```

### Interactive Mode
Expand All @@ -329,6 +332,7 @@ task.i.claude.md # Runs: claude "..." (interactive session)
task.i.copilot.md # Runs: copilot --silent --interactive "..."
task.i.codex.md # Runs: codex "..." (interactive session)
task.i.gemini.md # Runs: gemini --prompt-interactive "..."
task.i.opencode.md # Runs: opencode "..." (interactive TUI)
```

Or use `_interactive` (or `_i`) in frontmatter:
Expand Down Expand Up @@ -403,6 +407,16 @@ full-auto: true
Analyze this codebase and suggest improvements.
```

### OpenCode

```markdown
# refactor.opencode.md
---
model: opencode/gpt-5.1-codex
---
Refactor the database layer to use the Repository pattern.
```
Comment thread
coderabbitai[bot] marked this conversation as resolved.

### Copilot (no frontmatter needed!)

```markdown
Expand Down