Project Board
SkillFiles & storageWork the shared project task board (kanban + dependency-aware plan + milestones + timeline) that humans edit in the Dev workbench - decompose objectives, claim tasks, track progress, file findings, assign to subagents or humans, and run the board in a loop. Use for /board, task tracking, project planning, or when audits produce actionable findings.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Project Board skill
What this skill tells your AI
The instructions your AI receives, as published by navinspire-ia/navin in navin/skills/project-board/SKILL.md and read by ahel’s review.
Overview
The board (board tool) is the shared workspace between you and humans: they see it live as a kanban plus an Evolutions timeline in the Dev workbench, and can edit or report issues at any time. Treat it as the single source of truth for what is done, in progress, and missing. Statuses: backlog → planned → in_progress → review → audit → fix → done, plus blocked.
Tasks form a dependency graph through depends_on. The board derives from it the only three facts you need to decide what to do:
- ready - every dependency is
done, so it can start now. - blocked - a dependency is unfinished or missing, or a human parked it in
blocked. - critical path - the longest chain of open tasks. Shortening it shortens the whole project; a high-priority leaf only helps itself.
Discipline
- Ask the board, don't guess:
board nextreturns the ready queue already sorted (critical path first, then the tasks that unblock the most work, then priority). Pick the top item. Never scanlistand eyeball a choice -nextis the deterministic contract, and it explains itself when nothing is ready. - One at a time:
board claimsets you as assignee and moves the task toin_progress. Keep exactly one task in flight per actor; a subagent may hold its own.nexttells you what is already in flight. - Record as you go:
commentfindings, decisions, and file references on the task - humans read these. Move toreviewwhen a human should check. - Never close what you did not verify:
donerequires evidence whenvalidationistest,lint, orverify(passevidence=on move/update). Also callledger_progresswith the same evidence. If you could not verify, usereviewand say why. A wrongdonecorrupts every downstreamreadycomputation. - File what you find: audits and reviews (/inspect, /fortify, /probe…) must convert each confirmed finding into a task -
createwithstatus=fix, severity mapped topriority, and the file path in the description. - Mission ledger: for multi-step systems use
ledger_init/ledger_progress/ledger_replan. Prefer local replan; pause on budget/human blockers. A one-shot (deck, memo, one file, typo) is not a mission: do it now.
Planning an objective
When asked to plan something substantial, decompose before executing:
board planfirst - never plan on top of an unknown board.- Create a milestone per outcome (
milestone_create, withtarget_datewhen there is a real deadline). - Create tasks under it (
milestone_id), each one a single verifiable deliverable with acceptance criteria in the description. - Wire the order with
depends_on, not with priorities. Priority says how much it matters;depends_onsays what is physically impossible before something else. This is what makes the plan executable: the board then computes the ready queue and the critical path for you, and parallel work falls out for free. - Assign each task to whoever should do it (see below), then report the plan: milestone list, critical path length, what starts immediately.
Keep the graph clean: plan reports dependency cycles and references to unknown tasks. Both make tasks permanently unready, so fix them on sight rather than working around them.
Intelligent assignment
- Subagent: independent, well-scoped task →
spawnwith a complete brief (subagents cannot see history), assigneesubagent:<label>. The subagent claims, works, comments, and closes its own task via theboardtool. Several ready tasks with no dependency between them can run in parallel - that is exactly what the ready queue is for. - Human: decision, approval, credentials, or anything irreversible → set status
blocked, assigneehuman:<name>, comment what you need, and notify viamessage(seehuman-approval). - Yourself: sequential or context-heavy work.
Board autonomy (per-project consent)
Projects can enable Autonomy in the Tasks panel (consent stored in
.navin/board/settings.json). When Runtime Context reports it enabled:
- Chain ready tasks inside the run you were invited into (Run agent,
/board task, /forge, /cruise, /mission, or a loop cron) without asking the
user between cards. Stop and notify only on
blocked. - Git isolation is automatic:
board claimcreates and switches to an isolatednavin/task-<id>branch and records it on the task. Commit your work there; never commit to the branch the user was on. - PR on done is automatic: moving a task to
donepushes the branch and opens the pull request (the PR URL lands on the task). Do not merge PRs yourself; merging stays with the human. - GitHub issues:
board sync_githubimports open GitHub issues as tasks;board sync_github task_id=<id>creates the mirror issue for one task. Done tasks with a linked issue close it automatically. - Destructive git operations (force-push, hard reset, deletes) still require explicit user approval, autonomy or not.
When autonomy is off, work only the task the user named and ask before claiming more.
Loop mode
To process the board continuously, create a cron job bound to this session (see cron tool) with a message like: "Process the project board: board next, claim the top ready task, execute it or spawn a subagent, comment the evidence, move it to done or review, then stop. Report only if a human is blocked." Prefer intervals of 15+ minutes; the run defers automatically while the session is busy.
Each cycle is one task, not a marathon: claim, execute, verify, comment, move, stop. Stop the cycle early when next reports nothing ready, and only notify a human when a decision or a blocker actually needs them.
Anti-patterns
- Picking a task by scanning the list instead of asking
next - Encoding execution order as priorities instead of
depends_on - Marking
donewithout verification evidence, or claiming several tasks at once - Working on something with no board trace when a board exists
- Duplicating tasks instead of commenting the existing one
- Deleting human-created tasks (comment and let humans delete)
- Notifying humans on every tick of a loop - only signal decisions and blockers
Signals
- GitHub stars
- 22
- Forks
- 4
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
project-board- Source
- github.com/navinspire-ia/navin