# Ultracode

> Ultracode-style dynamic workflows for Kimi Code CLI. Use when the user says "ultracode", "workflow:", "/deep-research", or wants broad multi-file work with planning, parallel execution, verification, or crash-resume.

- Skill: `suraj1235/ultracode-4` (Agent Skill)
- Install (CLI): `npx skillmds@latest add suraj1235/ultracode-4`
- Raw SKILL.md: https://api.skillmd.com/api/skills/suraj1235/ultracode-4/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: Suraj1235 (https://skillmd.com/u/suraj1235)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/suraj1235/ultracode-4

---


# Ultracode Through Open Dynamic Workflows for Kimi Code CLI

Invoke this as `/flow:ultracode <task>` for the guided flow, or `/skill:ultracode <task>` to load the playbook directly.

The ODW MCP tools should already be available from `~/.kimi-code/mcp.json`. The bridge scripts referenced below live next to this skill in `scripts/`.

```mermaid
flowchart TD
  A([BEGIN]) --> B[Check whether the local ODW daemon and MCP tools are available. Run node scripts/daemon-bridge.js --check if tool availability is unclear.]
  B --> C{Is ODW available?}
  C -->|Yes| D[Run the user's task through ODW. Prefer the MCP tool odw_run, or use odw_plan first if the user asked to review the plan or the task is expensive/risky.]
  C -->|No| E[Explain the missing daemon or auth token exactly, then use Kimi's native agent workflow as a fallback.]
  D --> F[Report workflow id, topology, agent count, cost/time estimate, status, and final synthesized result.]
  E --> F
  F --> G([END])
```

## Daemon Path

1. Prefer MCP tools when available: call `odw_health`, then `odw_run` for direct execution or `odw_plan` first when the user wants to review the plan, the task is expensive, or mutation risk is high.
2. If MCP tools are unavailable but the daemon is reachable, use the local bridge:
   - `node scripts/daemon-bridge.js plan "<task>"`
   - `node scripts/daemon-bridge.js exec plan.json`
   - `node scripts/daemon-bridge.js status <workflowId>`
   - `node scripts/daemon-bridge.js result <workflowId>`
3. Report the workflow id, topology, agent count, cost/time estimate, and final synthesized result. Do not redo the same work manually while ODW is running it.

## Kimi-Native Fallback

If the daemon is unavailable, state that full ultracode requires the daemon, then use Kimi Code CLI's native planning and editing flow: discovery -> parallel work -> adversarial verification -> synthesis.

Never include secrets in prompts, plans, logs, or workflow artifacts.

