solo-task-manager

Manages ongoing and planned tasks in a persistent markdown board across sessions.

Updated Apr 23, 2026
One-click install
npx skills add https://github.com/cjrain-12505614/solo-forge-marketplace --skill solo-task-manager-cjrain-12505614
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: solo-task-manager
Source: https://github.com/cjrain-12505614/solo-forge-marketplace/tree/main/solo-forge-v1.2.0/skills/solo-task-manager
Command: npx skills add https://github.com/cjrain-12505614/solo-forge-marketplace --skill solo-task-manager-cjrain-12505614

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Session-scoped task lists disappear when a conversation ends, so solo developers lose track of what is in progress, what is blocked, and what comes next. This Skill persists the task board to a file (docs/00_관리/tasks.md) so work context survives across sessions. ## Core Features & Use Cases - Persistent Task Board: Tracks tasks by status (reviewing, in progress, verifying, done, on hold) in a markdown file that outlives any single session. - Blocker & Conflict Detection: Highlights blocked items with dependencies and warns when in-progress and planned tasks touch the same target. - Session Reuse: Checks for existing similar tasks before creating new ones, preventing duplicate entries. - Use Case: A solo developer asks "what am I working on right now" at the start of a new session and gets an ordered summary of in-progress work, upcoming tasks, blockers, and recently completed items. ## Quick Start Ask the assistant to show the current task board and add a new task for the feature you are about to start.

Frequently Asked Questions about solo-task-manager

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

FAQPage Schema
How do I keep track of tasks across multiple AI chat sessions?▼

Store the task board in a file like docs/00_관리/tasks.md instead of relying on session-scoped task lists. The file persists between sessions, so in-progress, planned, and blocked items remain visible when a new session starts.

How do I track blocked tasks and dependencies in a project?▼

Record blocked items in a dedicated blockers section with the reason and dependency, such as waiting on an external key or another task ID. This makes it clear what is preventing progress when reviewing the board.

What is the difference between a session task list and a persistent task board?▼

A session task list tracks immediate execution steps and disappears when the session ends. A persistent task board is a file that survives sessions and holds the big-picture flow of ongoing and planned work.

How do I avoid creating duplicate tasks for the same work?▼

Check the existing task file for similar or overlapping entries before adding a new one. If a task on the same topic is already in progress, continue that entry instead of creating a new one.

When should I not use a file-based task board?▼

A file-based board is less suitable for team projects needing assignees, real-time collaboration, or integrations with issue trackers. It is designed for solo projects where one person maintains the state manually.