work_plan

Community

Manage tasks, track progress, stay on track.

AuthorKiikurage
Version1.0.0
Installs0

System Documentation

What problem does it solve?

Streamlines task management by providing a structured way to define, track, and complete work items, ensuring clarity and progress in development workflows. It helps break down complex tasks into manageable, verifiable steps, so you never lose sight of your goals.

Core Features & Use Cases

  • Task Definition: Add new work items with titles and detailed bodies, following a specific markdown checklist format.
  • Progress Tracking: Get the next pending task, mark tasks as complete, and view a list of all tasks with their completion status.
  • Workflow Enforcement: Encourages detailed task breakdown, including integrated testing and verification steps, as per the PLAN.md guidelines.
  • Use Case: Plan out a new feature implementation, breaking it into sub-tasks like "Create UI component," "Implement API endpoint," and "Add unit tests," then execute and mark them complete sequentially, ensuring a smooth development cycle.

Quick Start

Add a new task with detailed steps

python3 .claude/skills/work_plan/work_plan.py add "Implement User Profile" "- Create UserProfile component - Display user info - Add edit form

  • Create /api/v1/users/:id endpoint
  • Add UserProfile unit tests
  • Verify all tests pass"

Get the next task to work on

python3 .claude/skills/work_plan/work_plan.py next

Mark a task as complete (e.g., task with ID 1)

python3 .claude/skills/work_plan/work_plan.py complete 1

Dependency Matrix

Required Modules

None required

Components

scriptsreferences

💻 Claude Code Installation

Recommended: Let Claude install automatically. Simply copy and paste the text below to Claude Code.

Please help me install this Skill:
Name: work_plan
Download link: https://github.com/Kiikurage/Claude-Code-Sample/archive/main.zip#work-plan

Please download this .zip file, extract it, and install it in the .claude/skills/ directory.
View Source Repository