packages/sc-codex/skills/codex-agent/SKILL.md
Run Codex tasks via the ai_cli Task Tool runner.
npx skillsauth add randlee/synaptic-canvas codex-agentInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill to run Codex tasks via the ai_cli runner. This is intended for Claude to delegate work to Codex when appropriate, including long-running background tasks that can be monitored while other work continues.
Call the runner script (installed path in projects is .claude/scripts):
python3 .claude/scripts/sc_codex_task.py --json '{...}'
Use sc_codex_task.py only (do not call other runner script names).
Do not invent flags like --run_in_background, --description, --prompt, or --subagent_type.
Provide Task Tool input JSON with:
descriptionpromptsubagent_type (defaults to sc-codex if not provided by the caller)--model codex (default: gpt-5.2-codex)--model codex-max or --model max (maps to gpt-5.1-codex-max)--model codex-mini or --model mini (maps to gpt-5.1-codex-mini)--model gpt-5 (maps to gpt-5.2)--no-background is provided.--background to force background explicitly.--no-background to force blocking mode.output_file (JSONL transcript path) and agentId.output_file via a short Python loop (avoid tail -f and avoid timeout, which may be missing on macOS).--background) returns { "output", "agentId" }..claude/state/logs/<package-name>/.gpt-5.2 compatibility mode before failing.resume is provided but the prior transcript cannot be reopened or does not contain usable assistant output, return a concise error instead of inventing missing context.tools
Set up a repo-local just task runner with a root Justfile, optional .just/ helper scripts, and curated help, build, fmt, lint, test, and ci recipes. Use when a repo needs just, a Justfile, .just helpers, or when the user mentions task automation, "just build", "just lint", "just fmt", or dropping in a just system.
tools
Convert PDF documents to markdown, extract images and tables using the docling CLI. Use when asked to convert a PDF, extract a datasheet, get images from a PDF, or process any document into structured output. Triggers: 'convert pdf', 'pdf to markdown', 'extract images from pdf', 'datasheet', 'get tables from pdf', 'extract diagrams'. No MCP required — uses docling CLI only.
development
Use when another workflow must launch Claude, Codex, or Gemini as a separate background sub-agent without opening a terminal. Spawns the `launchpad` agent with fenced JSON input and `run_in_background: true`.
testing
Run repo startup: prompt load, checklist sync, optional PR triage, worktree hygiene, and CI pull. Best-effort with structured status.