c-execute

c-execute is a skill for Claude Code, Codex from sentasity/cadence. It costs 161 tokens per session (7,399 once invoked), scanned A, original, MIT.

A plan-execution workflow turns a draft implementation plan into completed code by assigning tasks to fresh coding agents, scheduling independent work, and reviewing the results.

In plain words
What is it for?
Use it to implement a software plan with parallel or sequential tasks, dependency ordering, conflict protection, specification review, code review, and a final completion audit.
Why use it?
It removes the need to coordinate every implementation task and review manually. It also handles older plan formats and checks the finished work before declaring the plan complete.

Skill for Claude CodeCodex

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the cadence plugin — 11 skills, 5 agents, 1 hook shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/sentasity/cadence/c-execute
Any agent
npx skills add sentasity/cadence --skill c-execute
Clone the repo
git clone --depth 1 https://github.com/sentasity/cadence

Made for: Claude Code, Codex.

Or install cadence, the plugin that ships this one along with the rest of its 11 skills, 5 agents, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for c-execute

README.md
[![agentmods](https://agentmods.dev/badge/skills/sentasity/cadence/c-execute.svg)](https://agentmods.dev/skills/sentasity/cadence/c-execute)
Your own site
<a href="https://agentmods.dev/skills/sentasity/cadence/c-execute"><img src="https://agentmods.dev/badge/skills/sentasity/cadence/c-execute.svg" alt="Measured on agentmods" height="20"></a>
Per session 161 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,399 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00161 $0.07399
Opus 5 $0.00081 $0.03700
Sonnet 5 $0.00032 $0.01480
Haiku 4.5 $0.00016 $0.00740

Measured 3d ago against content hash 79d4d560de06, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

c-execute scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/c-execute/SKILL.md · 292 lines

How it starts

The opening of the file, as written. The whole thing — 292 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/c-execute

You are the PM. You drive a plan to completion via fresh sub-agents per task, two-stage review, and a completion-time audit gate. You never inherit sub-agent context. You never read the whole repo.

Invocation

/c-execute <path-to-plan-folder>

Optional: /c-execute --restart <plan-path> — wipe checkboxes and start over (NEVER the default).

Plan-format detection

Before scheduling, detect the plan format per-plan:

  • New format (tasks carry Touches:) → run the lane engine below, or the inline path when the execution-mode gate selects inline.
  • Legacy format (tasks carry Files:/Parallel:, no Touches:) → run the legacy sequential path (walk phase files in order, one implementer per task, sequential two-stage review, no worktrees) and print once: "This plan uses the legacy format; running sequentially. Re-plan with /c-plan to enable parallel execution." A single plan is never run half-parallel, half-sequential.
  • execute.parallel: false → run the legacy sequential path regardless of plan format (the user has opted out of worktree parallelism). Takes precedence over execute.mode; the execution-mode gate is skipped.

Pre-flight checks (in order; any failure surfaces — no auto-resolution)

  1. Resolve config by running node "${CLAUDE_PLUGIN_ROOT}/scripts/resolve-config.js" and use its JSON config for every execute.* and worktree.* read this run; follow the notice/gitignore/hard-stop contract in skills/_shared/config-resolution.md; never read config files directly.
  2. Path resolves to a plan folder with 00-overview.md.
  3. Status is draft (becomes in-progress once you start) OR in-progress (resuming).
  4. Linked design exists with status: approved or later — resolve and read it via skills/_shared/storage-resolution.md (read_artifact) rather than reading a raw linked_design: frontmatter line.
  5. Working tree is clean (no unstaged or uncommitted changes).
  6. Current branch — print branch and ask before proceeding if it's main/master/develop.
  7. Execution-mode gate (new-format plans only). Resolve execute.mode:
    • parallel — run the lane engine. Keep today's worktree confirmation: unless execute.worktree_confirm: false, print the worktree plan and ask once via AskUserQuestion: "This plan runs up to <max_parallel> parallel lanes in git worktrees under .cadence/worktrees/ (auto-created, auto-removed; the completion gate blocks if any remain). Proceed?" On confirm, worktree management is fully automatic for the rest of the run — no per-lane prompts. On decline, do not start.
    • inline — run the Inline mode path (below). No worktree question; nothing worktree-related happens all run.
    • ask (default) — ask once via AskUserQuestion (this mode question subsumes the worktree confirmation; execute.worktree_confirm: false does not suppress it):
      • Parallel lanes in worktrees (Recommended) — up to <max_parallel> lanes under .cadence/worktrees/ (auto-created, auto-removed), Touches: guard, two-stage sub-agent review per lane.
      • Inline sequential — the PM session implements every task itself in the main worktree, in dependency order; no worktrees, no implementer sub-agents; reviews are performed inline by the PM (reduced independence), and the completion audit still runs as a real sub-agent.
      • Don't start — nothing is dispatched; re-run /c-execute when ready. Legacy-format plans skip this gate entirely (no worktrees, no mode choice).

Read the full file on GitHub · 292 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 292 lines · 161 tokens per session scan A 79d4d560de06

Subscribe to this mod's changes

c-execute is a skill published in the GitHub repository sentasity/cadence (1 stars, last pushed 8d ago), licensed MIT. It adds 161 tokens to every session and 7,399 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

verify-security

安全校验关卡。自动扫描代码安全漏洞,检测危险模式,确保安全决策有文档记录。当用户提到安全扫描、漏洞检测、安全审计、代码安全、OWASP、注入检测、敏感信息泄露时使用。在新建模块、安全相关变更、攻防任务、重构完成时自动触发。.

fengshao1227/ccg-workflow · 78 tokens

development

开发语言能力索引。Python、Go、Rust、TypeScript、Java、C++、Shell。当用户提到编程、开发、代码、语言时路由到此。.

fengshao1227/ccg-workflow · 41 tokens

post-build-flow

Handles workflow verification and setup after build-workflow succeeds, or when the message contains workflow-verification-follow-up or workflow-setup-required. Load after direct builds, when verificationReadiness requires action, or on orchestrator verify/setup follow-up turns.

n8n-io/n8n · 53 tokens

n8n:human-like-code-review

Reviews a GitHub pull request like a thoughtful human reviewer and writes the feedback to a markdown file. Prioritizes context, architecture fit, solution complexity, bugs, security edge cases, and missing tests. Use when given a PR URL to review, or when the user says /human-like-code-review.

n8n-io/n8n · 70 tokens

n8n:create-pr

Creates GitHub pull requests with properly formatted titles that pass the check-pr-title CI validation. Use when creating PRs, submitting changes for review, or when the user says /pr or asks to create a pull request.

n8n-io/n8n · 50 tokens