plan-gap-analysis
10
总安装量
10
周安装量
#29083
全站排名
安装命令
npx skills add https://github.com/d-o-hub/rust-self-learning-memory --skill plan-gap-analysis
Agent 安装分布
opencode
10
claude-code
10
github-copilot
10
codex
10
kimi-cli
10
gemini-cli
10
Skill 文档
Plan Gap Analysis
Analyze gaps between documented plans in plans/ and actual implementation.
Workflow
Phase 1: Plan Inventory
Read all plan files:
00-overview.md– Project summary and metrics01-understand.md– Requirements and components02-plan.md– Architecture decisions and roadmap03-execute.md– Implementation details04-review.md– Quality requirements05-secure.md– Security requirements06-feedback-loop.md– Refinements
Phase 2: Codebase Inventory
# List all crates
find . -name "Cargo.toml" -not -path "*/target/*"
# List source files
find . -name "*.rs" -not -path "*/target/*"
Crates to analyze:
memory-core– Core data structures and orchestrationmemory-storage-turso– Turso/libSQL backendmemory-storage-redb– redb cache layermemory-mcp– MCP server and sandboxtest-utils– Test utilitiesbenches– Performance benchmarks
Phase 3: Gap Identification
Check each phase:
| Phase | Focus Areas |
|---|---|
| UNDERSTAND | Data structures, type definitions |
| PLAN | Architectural decisions, success metrics |
| EXECUTE | Storage, learning, MCP features |
| REVIEW | FR1-FR7, NFR1-NFR6 tests |
| SECURE | Attack surfaces, mitigations |
| FEEDBACK | Edge cases, optimizations |
Phase 4: Prioritization
Critical (Blocks production):
- Security vulnerabilities
- Data corruption risks
- Missing core functionality
High (Affects quality):
- Performance targets not met
- Test coverage below target
- Missing error handling
Medium (Technical debt):
- Code quality issues
- Documentation gaps
Phase 5: TODO Generation
## Phase [N]: [NAME]
### Critical Priority
- [ ] [Component] - [Missing item]
- File: path/to/file.rs
- Plan: plans/0X-phase.md:LineNumber
- Impact: [Description]
- Effort: [Estimate]
Output Format
# Plan Gap Analysis Report
**Total Requirements**: X
**Implemented**: Y (Z%)
**Gaps Identified**: N
## By Phase
- Phase 1: X/Y complete
- Phase 2: X/Y complete
- ...
## Critical Gaps
1. [Gap] - Priority, Effort
Best Practices
â Be systematic: Check every requirement â Be specific: Reference exact file locations â Be accurate: Verify, don’t assume â Be prioritized: Critical > High > Medium > Low â Be actionable: Include file paths and estimates