AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Coding Agents

skill-vironnimo-vbot-coding-agents · by Vironnimo

Drive external coding-agent CLIs — Claude Code (claude), Codex (codex), OpenCode (opencode) — non-interactively from an agent session, where every shell call is a fresh process with no persistent console and no way to type into a prompt. Use when the user asks an agent to delegate a coding task to claude/codex/opencode, run a headless coding agent, continue or resume a coding-agent session across…

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add skill-vironnimo-vbot-coding-agents

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vironnimo-vbot-coding-agents)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
26d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Coding Agents? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Coding Agents

Use this skill to delegate real coding work to an external coding-agent CLI (claude, codex, opencode) from inside an agent run. These are powerful agents in their own right — give them a task, let them edit code and run commands, and read back the result.

The hard part is the environment: you have no terminal. Every command you run is a brand-new, non-interactive process. You cannot launch a TUI and type into it, answer a permission prompt, or keep a shell alive between calls. Everything below exists to work within that constraint.

The five rules of headless coding agents

  1. Always use the non-interactive entrypoint, never the bare command.

claude / codex / opencode with no run subcommand open an interactive TUI that waits for keyboard input — your call will hang until it times out. Use the headless form: claude -p "…", codex exec "…", opencode run "…".

  1. Kill every interactive prompt up front. A coding agent that stops to ask "allow this edit?"

blocks forever with no one to answer. Pass the flag that pre-authorizes or disables prompting (--permission-mode / --dangerously-skip-permissions for claude, --ask-for-approval never plus a sandbox for codex, an auto-accept agent/flags for opencode). Scope it — see rule 5.

  1. There is no memory between calls — carry the session id yourself. Each invocation forgets the

last unless you explicitly continue a session. For multi-step work: capture the session/thread id from the first call, then resume it on the next (-r / codex exec resume / --session ), or use the "continue last" shortcut (-c / resume --last / --continue).

  1. Capture machine-readable output. Use JSON output so you can reliably extract the session id

and the final result instead of scraping prose (--output-format json, codex exec --json, opencode run --format json). Where offered, also write the final message to a file (--output-last-message).

  1. Set model, agent, effort, and scope deliberately. Choose the model and (where supported) the

sub-agent and reasoning/thinking effort the task needs. Run in the correct working directory and grant file access only to the directories required — prefer the narrowest sandbox/permission mode that still lets the task finish.

Pick the CLI and read its reference

Confirm which CLI is installed / which the user wants, then read the matching reference for exact flags, JSON shapes, and copy-ready resume examples:

  • Claude Codereferences/claude-code.mdclaude -p, --output-format json, -c/-r,

--session-id, --model, --effort, --permission-mode, --agent/--agents.

  • Codexreferences/codex.mdcodex exec, --json, codex exec resume, --model,

--sandbox, --ask-for-approval, --output-last-message, reasoning effort via -c.

  • OpenCodereferences/opencode.mdopencode run, --format json, --continue/--session,

--model provider/model, --agent, reasoning via --variant, --attach to a serve instance.

At a glance

| | Claude Code | Codex | OpenCode | |---|---|---|---| | Headless run | claude -p "task" | codex exec "task" | opencode run "task" | | JSON output | --output-format json | --json (JSONL events) | --format json | | Continue last | claude -c -p "…" | codex exec resume --last | opencode run -c "…" | | Resume by id | claude -r "…" | codex exec resume | opencode run -s "…" | | Model | --model sonnet\|opus\| | --model | --model provider/model | | Sub-agent | --agent | (profiles via -c) | --agent | | Effort / thinking | --effort low…max | -c model_reasoning_effort="high" | --variant | | Skip prompts | --permission-mode / --dangerously-skip-permissions | --ask-for-approval never --sandbox … | auto-accept agent / flags |

Workflow

  1. Choose the CLI. Prefer what the user named; otherwise pick an installed one. This skill is

only available when at least one of claude/codex/opencode is on PATH.

  1. Compose the invocation. Headless entrypoint + the task prompt + model/agent/effort + a

non-interactive permission/sandbox mode + the working directory and any extra allowed dirs + JSON output. Read the CLI's reference for exact flag names.

  1. Run it as a long job. These can take minutes and cost credits/money. Run with a generous

timeout or in the background; do not poll in a tight loop or fire it blindly in a retry loop.

  1. Read the result and the session id from the JSON (and/or the final-message file). Surface

errors instead of assuming success.

  1. Continue if multi-step. Resume the captured session id (or the "continue last" shortcut) for

the next instruction rather than starting cold and losing context.

  1. Report back. Summarize what the coding agent did, what changed, the final result, and the

session id so the work can be picked up again later.

Common Pitfalls

  1. Launching the bare TUI (claude / codex / opencode alone) — it waits for keystrokes and

hangs. Always use -p / exec / run.

  1. Forgetting the approval flag — the agent stalls on an unanswerable permission prompt. Pre-

authorize a scoped mode before running.

  1. Assuming continuity — a second call starts fresh unless you resume the session id. Capture and

pass it.

  1. Scraping prose for the session id or result — brittle. Use JSON output (and a final-message

file where available).

  1. Over-granting access — reaching for full-access / bypass-everything when a workspace-scoped

sandbox would do. Use the narrowest mode that completes the task.

  1. Ignoring auth — each CLI needs its own credentials (API key or OAuth login). Logins are

interactive, so they must be done beforehand; never paste secret keys into the task prompt.

  1. No timeout / blind loops — these are slow and metered. Bound them and read the output before

re-invoking.

Output Contract

  • Run the coding agent non-interactively, with prompts pre-authorized and output captured as JSON.
  • Preserve continuity: capture the session id and resume it for follow-up steps.
  • Report: which CLI and flags you used, what the agent changed/produced, the final result or error,

and the session id for resuming.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.