mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
- framework/: principles, rules, flags (思想・行動規範) - business/: symbols, examples (ビジネス領域) - research/: config (調査設定) - All files renamed to lowercase for consistency
Task Memory Index
This directory contains documentation of completed tasks, tracked by PM Agent.
Purpose
- Knowledge Capture: Preserve implementation patterns and decisions
- Learning Archive: Accumulate project-specific learnings
- Searchable History: Grep-friendly task records
Structure
tasks/
├── README.md (this file)
├── 2025-10-17-auth-implementation.md
├── 2025-10-17-api-redesign.md
└── [date]-[task-name].md
Naming Convention
[YYYY-MM-DD]-[kebab-case-description].md
Examples:
2025-10-17-jwt-auth.md2025-10-18-database-migration.md2025-10-20-performance-optimization.md
Task File Template
See superclaude/agents/pm-agent/workflows/task-management.md for the standard template.
Maintenance
PM Agent Monthly Review:
- Prune outdated tasks (>6 months old)
- Extract patterns to
docs/patterns/ - Update this index
- Archive old tasks to
tasks/archive/if needed
Search Examples
# Find all authentication-related tasks
grep -r "auth" docs/memory/tasks/
# Find tasks with specific patterns
grep -r "middleware composition" docs/memory/tasks/
# List recent tasks
ls -lt docs/memory/tasks/ | head -10