Sandbox
@PabloNAX/ultracode-skill

Codex skill for dynamic coding workflows

Ultracode adds a small skill layer that guides the agent through planning, delegation, integration, and final verification. For non-trivial tasks, it writes inspectable workflow files and can use native agents when the host supports them.

183 stars9 forksUpdated 3mo ago
Who it's for

Builders who want their agent to handle bigger coding tasks with clearer steps and safer handoffs.

What it delivers

You can run multi-step coding work with more structure, delegation, and final checks without building a separate tool.

What it does

Mode selection

Decides whether a task should use direct edits, workflow files, or delegated agents.

Workflow artifacts

Writes plain Markdown and JSON files such as `plan.md`, `orchestration.md`, `state.json`, `integration.md`, and `final-report.md`.

Native agent delegation

Uses Codex native `spawn_agent` when it helps, with bounded sidecar agents for independent packets.

Final verification

Checks the result before answering and can add a final audit for higher-risk runs.

Fallback behavior

Falls back to workflow mode when native agents are unavailable or not useful.

How to get it

  1. 1Run
    mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
    cp -R ultracode "${CODEX_HOME:-$HOME/.codex}/skills/"
  2. 2Run
    mkdir -p "$HOME/.claude/skills"
    cp -R ultracode "$HOME/.claude/skills/"
  3. 3Workspace install
    mkdir -p .agents/skills
    cp -R /path/to/ultracode .agents/skills/
  4. 4User install
    mkdir -p "$HOME/.gemini/antigravity/skills"
    cp -R ultracode "$HOME/.gemini/antigravity/skills/"
  5. 5Start with the short form
    Use $ultracode to build this feature end to end.
  6. 6If you want to force a delegated run, you can still say it directly
    Use $ultracode. Split this across agents where it is safe, keep integration in the parent session, and verify the final patch.

README

Ultracode Skill

License: MIT Codex Claude Code Antigravity GitHub stars

Ultracode Skill gives Codex a dynamic workflow layer for serious coding tasks: planning, native agents, integration, and final verification without turning the repo into a separate runner.

Ultracode running in Codex

Use it when a task needs more than one pass: discovery, implementation, review, tests, and a final integration step. The skill tells the agent how to decide between a direct edit, a packetized workflow, or native agent delegation.

Codex is the main target. Claude Code already has first-class workflow concepts; Codex has native multi-agent tools, but users still need a clean operating pattern around them. Ultracode fills that gap with one small SKILL.md folder.

What it does

Ultracode asks the agent to:

  1. Define the goal and success criteria.
  2. Decide whether the task needs direct, workflow, or delegated mode.
  3. Create workflow artifacts for non-trivial work.
  4. Use native agents when they are useful and allowed by the host.
  5. Keep integration in the parent session.
  6. Use lightweight eval contracts for risky shared surfaces.
  7. Verify the result before answering, with a final audit for high-risk runs.

For Codex, that means the skill can use native spawn_agent for independent packets, then integrate the results in the parent session.

Install

The installable skill folder is ultracode/.

Codex

mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
cp -R ultracode "${CODEX_HOME:-$HOME/.codex}/skills/"

Restart Codex after installing.

Claude Code

mkdir -p "$HOME/.claude/skills"
cp -R ultracode "$HOME/.claude/skills/"

Antigravity

Workspace install:

mkdir -p .agents/skills
cp -R /path/to/ultracode .agents/skills/

User install:

mkdir -p "$HOME/.gemini/antigravity/skills"
cp -R ultracode "$HOME/.gemini/antigravity/skills/"

Usage

Start with the short form:

Use $ultracode to build this feature end to end.

You do not have to manually design the workflow or ask for subagents. Ultracode decides whether the task needs a direct edit, a workflow, or native agents.

For non-trivial Codex tasks, $ultracode is delegated-workflow intent: when useful native agents are available, Ultracode should prefer a small bounded fan-out instead of doing every independent packet in one session.

If you want to force a delegated run, you can still say it directly:

Use $ultracode. Split this across agents where it is safe, keep integration in the parent session, and verify the final patch.

Modes

ModeUse it forBehavior
DirectSmall, clear editsNo workflow files unless needed. Run the narrowest useful check.
WorkflowMulti-step work without useful delegationWrite plan, packet, result, integration, and final report files.
DelegatedIndependent packets where native agents are availableSpawn bounded agents, keep the critical path local, integrate results, verify.

Workflow files

For non-trivial tasks, Ultracode writes plain Markdown and JSON:

.workflow/ultracode/<run-slug>/
  plan.md
  orchestration.md
  state.json
  packets/
  results/
  integration.md
  final-report.md

High-risk or cross-surface runs may also include eval-contract.md, contracts/, handoffs/, or final-audit.md.

These files make the run inspectable. You can see what was delegated, what changed, what passed, and what risk remains.

Codex behavior

When Codex exposes native agent tools, Ultracode prefers real delegation over fake packet simulation.

The parent session should:

  • keep the critical path local
  • spawn explorer agents for read-only discovery
  • spawn worker agents only with clear file ownership
  • prefer 2-4 sidecar agents for useful independent packets
  • stay under 5 total sidecar agents unless the user approves more
  • avoid combining agent_type with a full-history fork
  • wait only when a result blocks the next parent step
  • close agents after collecting their results

If native agents are unavailable, blocked by policy, or not useful for the task, Ultracode falls back to workflow mode and records the concrete reason.

Live test

This skill was tested in Codex with a fresh demo repository.

Result:

  • $ultracode loaded the skill
  • .workflow/ultracode/... artifacts were created
  • Codex used native spawn_agent
  • tests passed
  • the parent session integrated the agent results

What it is not

Ultracode Skill does not ship a background service, hidden runner, or required scripts. It is a small skill folder that teaches the agent how to run high-effort coding workflows with the tools already available in the current host.

Repository name

The repo is ultracode-skill.

The skill name is ultracode, so users can invoke it with:

$ultracode

Star history

Star History Chart

License

MIT.

Files in the repo

Repository payload6 top-level entries
  • assets
  • docs
  • ultracode
  • .gitignore
  • LICENSE
  • README.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k