duneboard-agent

duneboard-agent is a skill for Claude Code, Codex from KaEvDm/DuneBoard. It costs 57 tokens per session (810 once invoked), scanned A, original, MIT.

A workflow for managing DuneBoard task files, which are Markdown records used to plan and track repository work.

In plain words
What is it for?
Use it to run DuneBoard checks, manage task history, inspect task details, and preserve design and work-log information.
Why use it?
It keeps task files as the source of truth and reduces mistakes when creating, taking, updating, blocking, releasing, or closing work. It uses the DuneBoard command-line tool instead of manually changing task metadata when possible.

Skill for Claude CodeCodex

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/kaevdm/duneboard/duneboard-agent
Any agent
npx skills add KaEvDm/DuneBoard --skill duneboard-agent
Clone the repo
git clone --depth 1 https://github.com/KaEvDm/DuneBoard

Made for: Claude Code, Codex.

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 duneboard-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/kaevdm/duneboard/duneboard-agent.svg)](https://agentmods.dev/skills/kaevdm/duneboard/duneboard-agent)
Your own site
<a href="https://agentmods.dev/skills/kaevdm/duneboard/duneboard-agent"><img src="https://agentmods.dev/badge/skills/kaevdm/duneboard/duneboard-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 810 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.1 $0.00057 $0.00810
Opus 5 $0.00028 $0.00405
Sonnet 5 $0.00011 $0.00162
Haiku 4.5 $0.00006 $0.00081

Measured 5d ago against content hash 485248a36bcf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

duneboard-agent 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 5d 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/duneboard-agent/SKILL.md · 112 lines

How it starts

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

DuneBoard Agent Skill

Use this skill when a repository has DuneBoard task files and the user asks you to plan, take, update, or close DuneBoard work.

Contract

  • Markdown task files are the source of truth.
  • Prefer DuneBoard CLI commands over manual frontmatter edits.
  • Do not invent task IDs; let pnpm dune task create allocate them.
  • Do not add dependencies unless they are real sequencing constraints.
  • Treat ## Design as canonical design content when present; update it before relying on archived specs.
  • Keep work-log updates short, dated, and factual.

Start

pnpm dune preflight --compact

For an external project that does not define its own pnpm dune script, run the stable wrapper from the DuneBoard workspace and pass the target board root:

C:\path\to\DuneBoard\scripts\DuneBoard.ps1 --root C:\path\to\target-project preflight --compact

Use the pnpm workspace form only as a fallback when the wrapper is unavailable:

pnpm --dir C:\path\to\DuneBoard dune --root C:\path\to\target-project preflight --compact

Read compact task context first. Read the full detail or design only when the summary is insufficient:

pnpm dune show DB-0007 --summary
pnpm dune task log DB-0007 --tail 5
pnpm dune show DB-0007 --design

If preflight returns executable tasks, pick the highest-priority task that matches the user's request and claim it:

pnpm dune task claim DB-0007 --agent <agent-name>

If preflight returns no matching work and new tracked work is needed, create a task with explicit parent, priority, labels, and dependencies:

pnpm dune task create --title "Task title" --kind task --status ready --priority P1 --parent DB-0001 --depends-on DB-0007 --label area

Small Fix Fast Path

For a narrow user-requested fix that is expected to touch only one or two files, does not modify DuneBoard task files, and is not already represented by an active board task, you may skip next, claim, note, release, and done.

Read the full file on GitHub · 112 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 112 lines · 57 tokens per session scan A 485248a36bcf

Subscribe to this mod's changes

duneboard-agent is a skill published in the GitHub repository KaEvDm/DuneBoard (11 stars, last pushed 2mo ago), licensed MIT. It adds 57 tokens to every session and 810 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

ship-and-babysit

End-to-end PR shipping workflow for tinyhumansai/openhuman: commit local changes, push to the user's fork, open or reuse a PR against main, then babysit CI and CodeRabbit feedback until the PR is green and clean. Use when the user asks to ship, open a PR, monitor CI, address review comments, or 'babysit' a branch.

tinyhumansai/openhuman · 83 tokens

fo-dispatch-recovery

Claude dispatch failure recovery — Break-Glass Manual Dispatch (the manual Agent() template) and Context Budget Failure/Dead Ensign Handling (the budget-unavailable stderr conditions, the recovery clause, dead-ensign bookkeeping). Read ONLY at its resident triggers inside claude-fo-dispatch.md — a non-zero or…

spacedock-dev/spacedock · 137 tokens

present-gate

First-officer gate-presentation rendering — the captain-facing gate-review template and assembly rules, including workflow-owned finding labels. Invoke at the gate point after the FO has decided a stage must be presented.

spacedock-dev/spacedock · 44 tokens

fo-status-viewer

First-officer status query/mutate/display surface — the status command flag docs, --set field docs, canonical captain-facing invocations, the Captain-Facing State Display rendering, and the GitHub-issue-filing approval gate. Invoke at the first ad-hoc status question, --set mutation, --next-id/--resolve lookup, or…

spacedock-dev/spacedock · 87 tokens

ad-creative

When the user wants to generate, iterate, or scale ad creative — headlines, descriptions, primary text, or full ad variations — for any paid advertising platform. Also use when the user mentions 'ad copy variations,' 'ad creative,' 'generate headlines,' 'RSA headlines,' 'bulk ad copy,' 'ad iterations,' 'creative…

rondoflow/rondoflow · 142 tokens

ads

When the user wants help with paid advertising campaigns on Google Ads, Meta (Facebook/Instagram), LinkedIn, Twitter/X, or other ad platforms. Also use when the user mentions 'PPC,' 'paid media,' 'ROAS,' 'CPA,' 'ad campaign,' 'retargeting,' 'audience targeting,' 'Google Ads,' 'Facebook ads,' 'LinkedIn ads,' 'ad…

rondoflow/rondoflow · 135 tokens