Agent skill · AI & Agents

coding-agent

Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/agent/coding-agent-gupsammy-claude-setup/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. The Pattern: workdir + background
  2. Codex CLI
  3. Building/Creating (use --full-auto or --yolo)
  4. Reviewing PRs (vanilla, no flags)
  5. Batch PR Reviews (parallel army!)
  6. Tips for PR Reviews
  7. Claude Code
  8. OpenCode
  9. Pi Coding Agent
  10. Pi flags (common)
  11. tmux (interactive sessions)
  12. Parallel Issue Fixing with git worktrees + tmux
  13. ⚠️ Rules
  14. PR Template (The Razor Standard)
Ships with 1 file
  • metadata.json
Commands it runs
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:XXX
More from claude-skill-registry
All skills →
About this skill
What 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.

Keep going