agkan
SolidUse when managing tasks with the agkan CLI tool - creating, listing, updating tasks, managing tags, blocking relationships, or tracking project progress with the kanban board.
Data & Documents 3,964 stars
1088 forks Updated 2 months ago MIT
Install
Quality Score: 88/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# agkan
## Overview
`agkan` is an SQLite-based CLI task management tool. It is optimized for collaboration with AI agents.
**7 Statuses:** `icebox` → `backlog` → `ready` → `in_progress` → `review` → `done` → `closed`
---
## Quick Reference
### Agent Guide
```bash
# Display a comprehensive guide for AI agents (overview, commands, workflows)
agkan agent-guide
```
### Task Operations
```bash
# Create task
agkan task add "Title" "Body"
agkan task add "Title" --status ready --author "agent"
agkan task add "Subtask" --parent 1
agkan task add "Title" --file ./spec.md # Read body from file
agkan task add "Title" --blocked-by 1,2 # Set tasks that block this task
agkan task add "Title" --blocks 3,4 # Set tasks that this task blocks
agkan task add "Title" --assignees "alice,bob" # Set task assignees (comma-separated)
# List tasks
agkan task list # All tasks
agkan task list --status in_progress
agkan task list --tree # Hierarchical view
agkan task list --root-only # Root tasks only
agkan task list --tag 1,2 # Filter by tags
agkan task list --dep-tree # Dependency (blocking) tree view
agkan task list --sort title # Sort by field (id / title / status / created_at / updated_at), default: created_at
agkan task list --order asc # Sort order (asc / desc), default: desc
agkan task list --assignees "alice,bob" # Filter by assignees (comma-separated)
agkan task list --all # Include all statuses (in...
Details
- Author
- openclaw
- Repository
- openclaw/skills
- Created
- 5 months ago
- Last Updated
- 2 months ago
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
agent-kanban
CLI reference for agents — how to claim tasks, log progress, submit for review
343 Updated today
saltbo AI & Automation Solid
kandev-tasks
List, move, archive, and message tasks via agentctl
321 Updated today
kdlbs AI & Automation Listed
aio-kanban
Markdown-based kanban board for AI agent task management. Board is a pure index (`.kanban/board.md`), every task lives in its own file (`.kanban/tasks/T-NNN-slug.md`). Use to init the board, add tasks, move them across Backlog/Todo/Doing/Done/Blocked, or archive completed work.
3 Updated 1 weeks ago
aiocean