constatar-plan

constatar-plan is a skill for Claude Code from JairoTorregrosa/jaiskills. It costs 49 tokens per session (827 once invoked), scanned A, original, MIT.

A plan-file authoring guide for Constatar, an engine that coordinates units of work, their executors, dependencies, and verification steps.

In plain words
What is it for?
Writing plan.toml files for orchestrated multi-agent tasks and defining how each task should be verified.
Why use it?
It helps describe multi-agent work in a checked plan file, reducing errors from unknown fields, invalid references, and dependency cycles.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions Codex.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the jaiskills plugin — 12 skills, 13 commands, 4 agents, 2 hooks, 1 MCP server shipped together

Good fit Writing plan.toml files for orchestrated multi-agent tasks and defining how each task should be verified.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add JairoTorregrosa/jaiskills
Claude Code
/plugin install jaiskills

Made for: Claude Code.

Or install jaiskills, the plugin that ships this one along with the rest of its 12 skills, 13 commands, 4 agents, 2 hooks, 1 MCP server.

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 constatar-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/jairotorregrosa/jaiskills/constatar-plan/github.svg)](https://agentmods.dev/skills/jairotorregrosa/jaiskills/constatar-plan)
Your own site
<a href="https://agentmods.dev/skills/jairotorregrosa/jaiskills/constatar-plan"><img src="https://agentmods.dev/badge/skills/jairotorregrosa/jaiskills/constatar-plan/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for constatar-plan

Your own site · 80×15
<a href="https://agentmods.dev/skills/jairotorregrosa/jaiskills/constatar-plan"><img src="https://agentmods.dev/badge/skills/jairotorregrosa/jaiskills/constatar-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 827 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00049 $0.00827
Opus 5 $0.00024 $0.00413
Sonnet 5 $0.00010 $0.00165
Haiku 4.5 $0.00005 $0.00083

Measured 12d ago against content hash 3be24b787ab7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

constatar-plan 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 12d 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/orchestration/constatar-plan/SKILL.md · 77 lines

How it starts

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

Authoring constatar plans

A plan.toml declares units of work, their executors, and how each unit is verified. The parser is strict (deny_unknown_fields, cycles rejected, references validated, paths resolved against the plan file's directory) — a plan that parses will not fail on schema surprises mid-run.

Full field-by-field schema: ${CLAUDE_PLUGIN_ROOT}/references/constatar/plan-schema.md. The 6-rung verification ladder: ${CLAUDE_PLUGIN_ROOT}/references/constatar/ladder.md.

Skeleton

[meta]
name = "my-run"
repo = "."                # git repo; REQUIRED for red_first, protected_paths,
                          # model rungs (4-6), and parallel execution

[[unit]]
name = "write-feature-tests"        # no "::" (reserved)
role = "executor"
adapter = "claude"                  # claude | codex
prompt_file = "prompts/tests.md"    # relative to this file
permission = "accept-edits"         # accept-edits | unrestricted | read-only
controlled = true                   # false => surprises tagged [uncontrolled]

[unit.verify]
oracle = ["cargo test --test feature --no-run"]   # compile, don't pass/fail

[[unit]]
name = "implement-feature"
adapter = "claude"
prompt_file = "prompts/impl.md"

[unit.verify]
oracle = ["cargo test", "cargo clippy -- -D warnings"]
adversarial = true                  # rung 4: cross-family skeptic
red_first = true
tests_from = "write-feature-tests"  # REQUIRED with red_first (implies depends_on)
red_first_cmds = ["cargo test --test feature"]   # the instruments calibrate() reds
protected_paths = ["tests/"]        # extends defaults (Cargo.toml, build.rs, ...)
test_list_cmd = "cargo test --lib -- --list"

Rules the parser enforces (fail at parse, never mid-run)

  • red_first = true requires tests_from AND non-empty red_first_cmds.
  • held_out requires a non-empty oracle (the gap needs a visible baseline); held-out commands must never appear in any prompt file.
  • Model rungs (adversarial, judge, peer_review) require repo and two adapter families configured; thresholds (hacking_gap_threshold, judge_gap_threshold) are finite in [0,1], default 0.3.
  • Units at the same dependency depth (parallel candidates, repo set) must share ONE adapter family — the other family stays free to arbitrate — and must declare at least one deterministic rung (oracle/property), because merged states are re-verified deterministically after integration.
  • depends_on forms a DAG; duplicate names, unknown adapters, missing prompt files are parse errors.

Read the full file on GitHub · 77 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. 12d ago First seen · 77 lines · 49 tokens per session scan A 3be24b787ab7

Subscribe to this mod's changes

constatar-plan is a skill published in the GitHub repository JairoTorregrosa/jaiskills (5 stars, last pushed 11d ago), licensed MIT. It adds 49 tokens to every session and 827 once invoked, about $0.0002 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

swarmclaw

AI agent runtime and multi-agent orchestration platform. Teaches agents how to use SwarmClaw's 6 primitive tools, persistent memory, dreaming, delegation, connectors, credentials, and the skill system. Use when an agent is running on SwarmClaw and needs to understand the platform's capabilities.

swarmclawai/swarmclaw · 67 tokens

eliza

Skill "eliza" from aomi-labs/skills, covering elizaos, what you probably got wrong, installation, cli (recommended for new projects) and from source (contributor workflow).

aomi-labs/skills · 51 tokens

update-harness

Update an existing Claude Code harness — check for outdated components, duplication with official features, missing patterns, and improvement opportunities, then apply approved changes. Use whenever: 'update harness', 'update my harness', 'is my harness up to date', 'harness outdated', 'optimize harness', 'check my…

bzantium/meta-harness · 112 tokens

agent-orchestrator

Meta-skill que orquestra todos os agentes do ecossistema. Scan automatico de skills, match por capacidades, coordenacao de workflows multi-skill e registry management.

lingxling/awesome-skills-cn · 41 tokens

create-harness

Generate a complete, project-specific Claude Code harness — agents, skills, hooks, CLAUDE.md rules — tailored to any codebase. Use whenever someone says 'create a harness', 'set up agents for this project', 'configure Claude Code', 'build an agent team', 'make this project AI-ready', 'harness this project', or any…

bzantium/meta-harness · 117 tokens

help

Get oriented with the solopreneur plugin — see your AI team, check project status, and get suggestions for what to do next. Use when you're getting started or need a refresher.

pcatattacks/solopreneur-plugin · 41 tokens