From shipshitdev-library
Runs a high-autonomy Codex workflow for complex coding tasks: inspect, plan, delegate to subagents, integrate, and verify. Useful for deep implementation, migrations, refactors, and hard debugging.
How this skill is triggered — by the user, by Claude, or both
Slash command
/shipshitdev-library:ultracodeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run a disciplined Codex workflow for serious coding tasks. This skill is not a
Run a disciplined Codex workflow for serious coding tasks. This skill is not a
hidden runtime, background service, or Claude UltraCode toggle. Codex capability
comes from the active model, model_reasoning_effort, /goal, and available
subagent tools. This skill supplies the operating policy.
Inputs:
Outputs:
Creates/Modifies:
External Side Effects:
Confirmation Required:
Delegates To:
multi-agent-patterns when topology or packet boundaries are uncleartest-runner for test execution and failure fixingqa-reviewer for final independent verificationRestate the concrete goal in one sentence. Inspect the repo before deciding. Find at least three similar examples before adding new code, unless the task is genuinely novel or the repo lacks comparable patterns.
Classify the task before acting:
Then choose one mode.
Use for small, clear work that does not benefit from packetization.
Examples:
Behavior:
Use for multi-step work when native subagents are unavailable, not useful, or not allowed.
Examples:
Behavior:
plan.md,
integration.md, final-report.md, or a repo-approved scratch location.Use when Codex exposes subagent tools, the task has independent packets, and delegation is allowed by the user request and host policy.
Strong delegation signals include:
$ultracode, /ultracode, or "ultracode" on a non-trivial coding taskBehavior:
Every delegated prompt must be self-contained and include scope, constraints, expected output, and whether the agent may edit files.
For read-only agents, require:
Inspect only the scoped sources unless one nearby hop is required.
Do not edit files.
Cite file paths and line numbers where possible.
Return: summary, evidence, risks, recommended parent action.
For write-capable agents, require:
You are not alone in the codebase. Do not revert edits made by others.
Edit only the owned files or modules unless blocked.
Do not commit, push, publish, deploy, or run broad formatting over unrelated files.
Return: files changed, summary, verification run, risks or blockers.
Use a lightweight eval contract for high-risk work or any change crossing public interfaces, schemas, auth, permissions, data migrations, CLI behavior, UI flows, or shared integration surfaces.
Eval contract:
- Outcome:
- Shared surfaces:
- Required checks:
- Blocking conditions:
- Handoff evidence:
Keep the contract current as work changes. Use it to reject subagent outputs that do not provide evidence, conflict with source truth, or leave shared surfaces unverified.
/goal supplies persistence and completion criteria. $ultracode supplies the
orchestration policy. Use them together for long-running work:
/goal Use $ultracode.
Objective:
<one durable outcome>
Constraints:
<what not to change>
Context:
<files/docs/issues/logs to inspect first>
Done when:
<tests/checks/artifacts that prove completion>
Work style:
Plan first, use subagents for parallel read-heavy exploration/review/testing,
implement directly, verify after each checkpoint, fix failures, and continue
until done or genuinely blocked.
Recommended Codex config for this mode:
model = "<current Codex model>" # verify the latest; do not pin a stale version
model_reasoning_effort = "xhigh"
plan_mode_reasoning_effort = "xhigh"
[features]
goals = true
multi_agent = true
If these settings are unavailable, continue with the strongest available model and tools, and state the limitation only when it affects the result.
Verify at the narrowest useful scope first:
Fix failures and rerun the relevant checks. If a check cannot run, state the exact reason and what remains unverified.
/goal complete without evidence that the completion criteria passed.Keep the final response short:
npx claudepluginhub shipshitdev/skillsDrives end-to-end autonomous delivery of broad goals spanning interview, planning, execution, QA, cleanup, and validation. Use when a single request should orchestrate the full development lifecycle.
Activates ultrawork modes, agent orchestration, and plugin configuration for oh-my-claude. Manages specialized agents (critic, advisor, reviewer) and enforces communication guardrails.
Delegates coding tasks (debug, implement, refactor) to OpenAI Codex CLI via codex exec, skipping the Node companion runtime for faster execution. Codex writes code; Claude verifies.