Help us improve
Share bugs, ideas, or general feedback.
From soloboard
Silently tracks tasks in Claude Code sessions as a kanban board, auto-creating from actionable prompts, managing status/context/agents with deduplication and reviews.
npx claudepluginhub egorfedorov/soloboard --plugin soloboardHow this skill is triggered — by the user, by Claude, or both
Slash command
/soloboard:task-trackerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Automatic intelligent task tracking for Claude Code sessions. This skill silently manages a personal kanban board with context awareness, smart analysis, and agent integration.
Manages tasks using native Claude Code subagent tools (TaskCreate, TaskUpdate, TaskList, TaskGet). Tracks TODOs, checkpoints progress, and resumes work across sessions.
Sweeps conversation into agtx kanban tasks for parallel coding agents. Use to capture, decompose, or hand off conversation results to the agtx board.
Applies 10 pre-set color/font themes or generates custom ones for slides, documents, reports, and HTML landing pages.
Share bugs, ideas, or general feedback.
Automatic intelligent task tracking for Claude Code sessions. This skill silently manages a personal kanban board with context awareness, smart analysis, and agent integration.
This skill is model-invoked. Analyze each user prompt and decide whether to create/update tasks.
Use task_smart_create instead of task_create. It automatically:
Before creating a new task, check existing tasks using task_list. If a similar task already exists, update it instead.
task_context_save (what was done, what's left)task_movetask_context_save on the old task with: files you examined, decisions made, remaining worktask_context_load to get the full context backtask_review to get a pre-close analysistask_agent_create with constraints and test commands.claude/agents/task-*.md file that can be launched in any sessiontask_agent_delete to clean upAt the START of every session, before doing anything else:
auto_init — it safely creates .kanban dir, project board, and session (idempotent)auto_init (if not called yet this session)task_list to check for duplicatestask_context_save on it
b. Call task_move to move it to "todo"task_smart_create with the user's prompt (NOT task_create)auto_init handles session creation automatically