mit einem Klick
coding-agent
Orchestrate external coding agents (Claude Code, Codex CLI, OpenCode) via background processes for automated code tasks, PR reviews, and parallel issue fixing.
Menü
Orchestrate external coding agents (Claude Code, Codex CLI, OpenCode) via background processes for automated code tasks, PR reviews, and parallel issue fixing.
Code review assistance with linting, style checking, and best practices
Git workflow guidance for commits, branches, and pull requests
Send messages, react, manage threads/pins, run polls, and moderate Discord channels via the Discord API.
Interact with GitHub using the gh CLI. Use gh issue, gh pr, gh run, and gh api for issues, PRs, CI runs, and advanced queries.
Notion API for creating and managing pages, databases, and blocks. Use when working with Notion workspaces.
Work with Obsidian vaults (plain Markdown notes). Search, create, move, and edit notes.
| name | coding-agent |
| description | Orchestrate external coding agents (Claude Code, Codex CLI, OpenCode) via background processes for automated code tasks, PR reviews, and parallel issue fixing. |
| metadata | {"version":"1.0.0","requires":{"any-bins":["claude","codex","opencode"]}} |
Use external coding agents via bash for automated code tasks.
# Quick task with Codex (needs a git repo)
SCRATCH=$(mktemp -d) && cd $SCRATCH && git init && codex exec "Your prompt here"
# Claude Code
claude "Fix the bug in main.go"
# OpenCode
opencode run "Add error handling to the API calls"
# Start agent in background
codex exec --full-auto "Build a snake game" &
PID=$!
# Check if done
kill -0 $PID 2>/dev/null && echo "Running..." || echo "Done"
# Wait for completion
wait $PID
| Flag | Effect |
|---|---|
exec "prompt" | One-shot execution, exits when done |
--full-auto | Sandboxed but auto-approves in workspace |
--yolo | No sandbox, no approvals (fastest) |
# Auto-approve mode
codex exec --full-auto "Add dark mode toggle"
# Full auto, no sandbox
codex --yolo "Refactor the auth module"
# PR review
codex review --base origin/main
# Simple task
claude "Your task description"
# With specific file context
claude "Fix the tests in auth_test.go"
Fix multiple issues simultaneously:
# 1. Create worktrees for each issue
git worktree add -b fix/issue-78 /tmp/issue-78 main
git worktree add -b fix/issue-99 /tmp/issue-99 main
# 2. Launch agents in each
cd /tmp/issue-78 && codex --yolo "Fix issue #78: description" &
cd /tmp/issue-99 && codex --yolo "Fix issue #99: description" &
# 3. Wait for completion
wait
# 4. Create PRs
cd /tmp/issue-78 && git push -u origin fix/issue-78
gh pr create --repo user/repo --head fix/issue-78 --title "fix: issue 78" --body "..."
# 5. Cleanup
git worktree remove /tmp/issue-78
git worktree remove /tmp/issue-99
# Fetch all PR refs
git fetch origin '+refs/pull/*/head:refs/remotes/origin/pr/*'
# Review multiple PRs
for pr in 86 87 88; do
echo "=== Reviewing PR #$pr ==="
codex exec "Review PR #$pr. git diff origin/main...origin/pr/$pr"
done
--full-auto for building, vanilla for reviewing