📋 GitHub Template Repository
This repository is configured as a GitHub template. Click "Use this template" to create a new repository with all the task management structure pre-configured for your project.
A portable, reusable task tracking system for any software project.
# Copy template to your project
cp -r ./tasks-template/ your-project/task-system/
# Use it immediately
cd your-project/task-system/
cat tasks/INDEX.md | rg "Ready" # Check available taskstasks/- Template files (INDEX.md, template.md, README.md)examples/- Real-world implementations (demo, sombrero-edge-control)docs/- Core principles (PRP methodology, dev philosophy).claude/- AI assistant commands
For detailed setup and usage:
→ See tasks/README.md
For real examples:
→ See examples/
For core principles:
→ See docs/
- Portable - Works anywhere in your repo
- Tech-agnostic - Adapts to any tech stack
- Dependency-aware - Tracks task relationships
- Validation-focused - Clear success criteria
- AI-powered - Claude Code integration
# Create new task
/create-task [CATEGORY] [description]
# Execute existing task
/execute-task [task-file-path]- KISS - Keep tasks simple and focused
- YAGNI - Don't over-engineer
- PRP Methodology - Structured task execution
- Progressive Validation - Test as you go
Ready to track tasks? → Copy tasks-template/ to your project and start with tasks/README.md
This task management system draws inspiration from the excellent work in PRPs-agentic-eng by @Wirasm, particularly the structured approach to task creation, execution, and the PRP (Product Requirement Prompt) methodology for AI-assisted development.