mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
* Add comprehensive task management system with hybrid todo integration - Automatic task detection based on complexity scoring (8+ points) - Seamless .tasks/ folder structure (pending/in-progress/completed) - Two-tier architecture: Tasks for persistence, TodoWrite for focus - Auto-conversion of task breakdowns to TodoWrite steps - Session recovery with context preservation - Git integration with automatic branching - Zero-interruption workflow for complex requirements 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * Enhance task management system with SuperClaude integration - Update all .tasks/ paths to ./claudedocs/tasks/ for consistency - Add plan mode integration for intelligent task suggestions - Implement UltraCompressed format (~70% token reduction) - Enhance git workflow with clean branch strategy and atomic commits - Add task-ultracompressed.yml configuration - Update install.sh to reflect new file counts - Integrate with exit_plan_mode for complex work detection This adapts PR #5's excellent task tracking functionality to fit SuperClaude's architecture while adding valuable enhancements. --------- Co-authored-by: Mohammad Aziz <mdaziz067@gmail.com> Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
59
.claude/commands/shared/templates/feature-template.md
Normal file
59
.claude/commands/shared/templates/feature-template.md
Normal file
@@ -0,0 +1,59 @@
|
||||
# Task: {TASK_NAME}
|
||||
|
||||
## Metadata
|
||||
```yaml
|
||||
id: {TASK_ID}
|
||||
title: {TASK_TITLE}
|
||||
status: pending
|
||||
priority: medium
|
||||
created: {TIMESTAMP}
|
||||
updated: {TIMESTAMP}
|
||||
assignee: Claude
|
||||
branch: feature/{TASK_ID}
|
||||
```
|
||||
|
||||
## Requirement
|
||||
{REQUIREMENT_DESCRIPTION}
|
||||
|
||||
## Breakdown
|
||||
### Analysis Phase
|
||||
- [ ] Understand requirements
|
||||
- [ ] Identify affected files
|
||||
- [ ] Plan architecture changes
|
||||
- [ ] Create git branch
|
||||
|
||||
### Implementation Phase
|
||||
- [ ] {STEP_1}
|
||||
- [ ] {STEP_2}
|
||||
- [ ] {STEP_3}
|
||||
|
||||
### Testing Phase
|
||||
- [ ] Write tests
|
||||
- [ ] Run test suite
|
||||
- [ ] Manual testing
|
||||
|
||||
### Completion Phase
|
||||
- [ ] Code review
|
||||
- [ ] Documentation update
|
||||
- [ ] Merge to main
|
||||
|
||||
## Files Affected
|
||||
```yaml
|
||||
new: []
|
||||
modified: []
|
||||
deleted: []
|
||||
```
|
||||
|
||||
## Context Preservation
|
||||
```yaml
|
||||
key_decisions: []
|
||||
blockers: []
|
||||
notes: []
|
||||
session_state: {}
|
||||
```
|
||||
|
||||
## Checkpoints
|
||||
```yaml
|
||||
commits: []
|
||||
branches: []
|
||||
```
|
||||
26
.claude/commands/shared/templates/task-ultracompressed.md
Normal file
26
.claude/commands/shared/templates/task-ultracompressed.md
Normal file
@@ -0,0 +1,26 @@
|
||||
# Legend: → leads to | & and | w/ with | S: status | P: priority | ✓ done | □ pending
|
||||
|
||||
T: {TASK_TITLE}
|
||||
ID: {TASK_ID} | S: {STATUS} | P: {PRIORITY}
|
||||
Branch: {BRANCH}
|
||||
|
||||
## Phases
|
||||
□ Analysis: Requirements & design
|
||||
□ Impl: Core functionality
|
||||
□ Test: Unit & integration
|
||||
□ Deploy: Staging & prod
|
||||
|
||||
## Context
|
||||
Dec: {KEY_DECISIONS}
|
||||
Block: {BLOCKERS}
|
||||
Files: {AFFECTED_FILES}
|
||||
Next: {NEXT_STEP}
|
||||
|
||||
## Progress
|
||||
Todos: {ACTIVE}/{TOTAL}
|
||||
Complete: {PERCENTAGE}%
|
||||
Session: {SESSION_TIME}
|
||||
|
||||
## Git
|
||||
Commits: {COMMIT_COUNT}
|
||||
Last: {LAST_COMMIT}
|
||||
Reference in New Issue
Block a user