board

Track and organize tasks on a persistent JSON task board.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/Technikhighknee/agent-workbench --skill board
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: board
Source: https://github.com/Technikhighknee/agent-workbench/tree/main/.claude/skills/board
Command: npx skills add https://github.com/Technikhighknee/agent-workbench --skill board

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Agents need a persistent, organized way to track work that spans multiple steps and time.

Core Features & Use Cases

  • Persistent state: Board data survives server restarts.
  • Structured workflow: Cards move across lists like backlog, todo, in_progress, done.
  • Use Case: Track a multi-step investigative task from idea to completion.

Quick Start

See and manage the board with board_list({}) and board_add({ title: "New task" })

Frequently Asked Questions about board

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a persistent task board for multi-agent workflows?

A persistent task board stores agent work across server restarts using structured JSON storage. This Skill creates a Trello-like board with backlog, todo, in_progress, and done lists, exposing tools to add, move, and track cards so multi-step tasks survive interruptions and maintain workflow state.

Can I use SQLite to persist agent task management across sessions?

This Skill uses JSON-based persistence (.board/board.json) rather than SQLite, making it lightweight and portable. It stores all task state in a single file, ideal for agent workflows that need structured, queryable task data without database setup overhead.

What's the best way to organize tasks by priority and labels in an agent system?

Organize tasks using priority and label-based categorization on a structured board. This Skill lets you apply labels and priorities to cards as they move through workflow stages, giving agents a clear taxonomy for filtering, sorting, and acting on work.

How do I emit structured JSON outputs from agent task tracking?

This Skill exposes tools that return structured JSON: board_list() retrieves all cards and lists, board_add() creates tasks, and board_update() modifies them. All outputs are JSON-formatted, making it easy to pipe task data into downstream agent logic or external systems.

Can I use a kanban board to manage multi-step investigative tasks?

A kanban board tracks tasks from idea to completion across structured lists. This Skill implements kanban workflow for multi-step investigations: move cards from backlog through todo and in_progress to done, with tools to retrieve, delete, and update cards at each stage.