Core Workflows
mem8 is built around a memory-first development cycle that enhances Claude Code with persistent context and structured workflows.
The Research → Plan → Implement → Commit Cycle
This is the primary workflow that mem8 enables. Each phase builds on the previous, creating a continuous loop of structured development.
Why This Works
Each phase:
- Stores context in
memory/
for future reference - Uses sub-agents to parallelize work
- Builds on previous work through file references
- Creates artifacts that Claude Code can read
Workflow Pages
- Research - Deep codebase analysis with parallel sub-agents
- Plan - Create implementation plans from research
- Implement - Execute plans with full context
- Commit - Create conventional commits
- Utility Commands - Supporting commands for workflow management
- Advanced Workflows - Team collaboration and optimization
Quick Start
# 1. Research the codebase
/mem8:research "authentication system"
# 2. Create an implementation plan
/mem8:plan "add OAuth2 support"
# 3. Execute the plan
/mem8:implement
# 4. Commit your changes
/mem8:commit
Key Benefits
Context Accumulation
Each cycle adds to your project's knowledge base, making subsequent features faster to implement.
Parallel Exploration
Sub-agents work simultaneously to gather comprehensive insights in minimal time.
Structured Memory
Persistent thoughts enable long-term context retention across sessions and team members.