返回顶部
t

taskboard-cli

Lightweight task management CLI for multi-agent workflows. SQLite backend, no external dependencies or credentials. Status-change hooks emit agent instructions (message, session) but do not auto-execute. Use when managing tasks across agents, tracking work status, assigning tasks, generating board summaries, or orchestrating cross-agent handoffs. Triggers on \"create task\", \"task board\", \"taskboard\", \"list tasks\", \"assign task\", \"board summary\", \"project tasks\".

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 3.0.1
安全检测
已通过
130
下载量
0
收藏
概述
安装方式
版本历史

taskboard-cli

# Taskboard CLI SQLite-backed task management for multi-agent projects. No network calls, no credentials, no environment variables. ## Quick Start ```bash # Create tasks python3 scripts/taskboard.py create "Build auth" --assign code-engineer --priority high python3 scripts/taskboard.py create "Design UI" --assign designer --criteria "Responsive, mobile-first" # Manage tasks python3 scripts/taskboard.py update 1 --status in_progress --author code-engineer python3 scripts/taskboard.py comment 1 "PR #42 ready" --author code-engineer python3 scripts/taskboard.py update 1 --status done --author code-engineer --note "Merged to main" # View board python3 scripts/taskboard.py list --status in_progress python3 scripts/taskboard.py show 1 python3 scripts/taskboard.py show 1 --json python3 scripts/taskboard.py summary # Subtasks python3 scripts/taskboard.py create "Write tests" --parent 1 --assign code-engineer # Thread linking python3 scripts/taskboard.py set-thread 1 1484268803994026085 python3 scripts/taskboard.py get-thread 1 # Change history python3 scripts/taskboard.py history 1 ``` ## Custom Database Path By default the database lives at `scripts/taskboard.db`. Override with `--db`: ```bash python3 scripts/taskboard.py --db /path/to/my.db list ``` ## Task Statuses `todo` → `in_progress` → `done` Also: `blocked`, `rejected` No "review" status — use hooks to create follow-up tasks or notify agents. ## Hooks (Cross-Agent Orchestration) Hooks fire when task status changes. They print instructions to stdout for the calling agent to execute — no auto-execution, no network calls. ```bash # When task is started (ack'd), print a notification instruction python3 scripts/taskboard.py create "Build auth" \ --on-ack "message:CHANNEL_ID:🔨 {task.title} started by {task.assigned_to}" # When done, instruct the agent to create a review task python3 scripts/taskboard.py create "Design UI" \ --on-done "session:tech-lead:Review {task.title} and create QA task" # Add/update hooks on existing task python3 scripts/taskboard.py update 1 --on-done "message:CHANNEL_ID:Done!" ``` Hook output format: ``` 🔔 ON_ACK: message:CHANNEL_ID:🔨 Build auth started 🔔 ON_DONE: session:tech-lead:Review Build auth and create QA task ``` The agent reads these lines and decides how to act (send a message, spawn a session, create a task, etc.). ## Data Model - **tasks** — id, title, description, acceptance_criteria, status, priority, assigned_to, created_by, parent_id, thread_id, on_ack, on_done, timestamps - **task_comments** — per-task comment history - **task_updates** — audit log of all field changes Schema auto-initializes on first run. Upgrades from v1 (missing on_ack/on_done columns) are handled automatically. ## Reference - `references/webhook-integration.md` — How to add Discord/webhook notifications on top of taskboard - `references/github-backend.md` — Syncing tasks with GitHub Issues - `references/taskboard-setup.md` — Task lifecycle, cross-agent handoff protocol, cron integration

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 taskboard-cli-1776090262 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 taskboard-cli-1776090262 技能

通过命令行安装

skillhub install taskboard-cli-1776090262

下载 Zip 包

⬇ 下载 taskboard-cli v3.0.1

文件大小: 11.07 KB | 发布时间: 2026-4-17 16:18

v3.0.1 最新 2026-4-17 16:18
Add rejected status back (todo/in_progress/done/blocked/rejected)

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部