mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
- Migrate all command files to use @include reference system - Consolidate shared patterns into new yml structure - Create central superclaude shared configuration files - Remove deprecated markdown files (MCP.md, PERSONAS.md, RULES.md) - Add new documentation structure in docs/ - Update installation script for new architecture - Add ROADMAP.md and VERSION files This completes the major architectural refactor to improve maintainability and reduce duplication across the SuperClaude command system. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
# Feature Development Task Template
|
|
# Used by task management system for structured feature tracking
|
|
|
|
Task_Template:
|
|
Metadata:
|
|
id: "{TASK_ID}"
|
|
title: "{TASK_TITLE}"
|
|
status: "pending"
|
|
priority: "medium"
|
|
created: "{TIMESTAMP}"
|
|
updated: "{TIMESTAMP}"
|
|
assignee: "Claude"
|
|
branch: "feature/{TASK_ID}"
|
|
|
|
Requirement:
|
|
description: "{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:
|
|
new: []
|
|
modified: []
|
|
deleted: []
|
|
|
|
Context_Preservation:
|
|
key_decisions: []
|
|
blockers: []
|
|
notes: []
|
|
session_state: {}
|
|
|
|
Checkpoints:
|
|
commits: []
|
|
branches: [] |