Revert "feat: comprehensive framework improvements (#447)"

This reverts commit 00706f0ea9.
This commit is contained in:
Mithun Gowda B
2025-10-21 09:48:04 +05:30
committed by GitHub
parent 1aa4039f9c
commit 73fe01c4be
52 changed files with 6488 additions and 3278 deletions

View File

@@ -1,55 +0,0 @@
# 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.md`
- `2025-10-18-database-migration.md`
- `2025-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**:
1. Prune outdated tasks (>6 months old)
2. Extract patterns to `docs/patterns/`
3. Update this index
4. Archive old tasks to `tasks/archive/` if needed
## Search Examples
```bash
# 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
```