coding-agent
Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.
npx skills add majiayu000/claude-skill-registry --skill coding-agent-gupsammy-claude-setup --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Coding Agent (background-first) Use **bash background mode** for non-interactive coding work. For interactive coding sessions, use the **tmux** skill (always, except very simple one-shot prompts). ## The Pattern: workdir + background ```bash # Create temp space for chats/scratch work SCRATCH=$(mktemp -d) # Start agent in target directory ("little box" - only sees relevant files) bash workdir:$SCRATCH background:true command:"<agent command>" # Or for project work: bash workdir:~/project/folder background:true command:"<agent command>" # Returns sessionId for tracking # Monitor progress process action:log sessionId:XXX # Check if done process action:poll sessionId:XXX # Send input (if agent asks a question) process action:write sessionId:XXX data:"y" # Kill if needed process action:kill sessionId:XXX ``` **Why workdir matters:** Agent wakes up in a focused directory, doesn't wander off reading unrelated files (like your soul.md 😅). --- ## Codex CLI **Model:** `gpt-5.2-codex` is the default (set in ~/.codex/config.toml) ### Building/Creating (use --full-auto or --yolo) ```bash # --full-auto: sandboxed but auto-approves in workspace bash workdir:~/project background:true command:"c
- The Pattern: workdir + background
- Codex CLI
- Building/Creating (use --full-auto or --yolo)
- Reviewing PRs (vanilla, no flags)
- Batch PR Reviews (parallel army!)
- Tips for PR Reviews
- Claude Code
- OpenCode
- Pi Coding Agent
- Pi flags (common)
- tmux (interactive sessions)
- Parallel Issue Fixing with git worktrees + tmux
- ⚠️ Rules
- PR Template (The Razor Standard)
Create temp space for chats/scratch work
Start agent in target directory ("little box" - only sees relevant files)
bash workdir:$SCRATCH background:true command:"<agent command>"
Or for project work:
bash workdir:~/project/folder background:true command:"<agent command>"
Returns sessionId for tracking
Monitor progress
process action:log sessionId:XXX
Check if done
process action:poll sessionId:XXXWhat does the coding-agent skill do?
Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill coding-agent-gupsammy-claude-setup --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
