Start a new chat session with full project context loaded.
Resume a project session by loading all context files and preparing to continue work. Use this first when starting any new chat session to restore project state and context.
/plugin marketplace add unclecode/claude-code-tools/plugin install unclecode-cc-toolkit@unclecode-toolsStart a new chat session with full project context loaded.
$ARGUMENTS
This is the FIRST command to run when starting a new chat session. It:
ls .context/project/INDEX.md
If not found, inform user: "No project structure found. Run /pp-init first."
Read these files in order:
.context/project/INDEX.md - Project overview, subprojects, active subproject, high-level status.context/project/WORKFLOW.md - How this system works.context/project/PRINCIPLES.md - Methodology and rules.context/project/LESSONS.md - Past learningsFrom INDEX.md, identify active subproject, then read:
.context/project/{active}/STATUS.md.context/project/{active}/TODO.md.context/project/{active}/CODEBASE.md.context/project/{active}/LESSONS.md.context/project/{active}/PRINCIPLES.md (if exists - overrides root)Read last 3-5 entries from:
.context/project/{active}/CHANGELOG.mdIf query provided:
After loading all standard files, check for continuation instructions:
ls .context/project/{active}/NEXT.md
If NEXT.md exists:
.context/project/{active}/NEXT.mdIf NEXT.md does NOT exist:
Output a compact summary:
## Session Resumed: {PROJECT_NAME}
**Active**: {subproject}/ - {current phase}
**Status**: {brief status}
{IF NEXT.md exists:}
### Instructions from Previous Session
{content from NEXT.md "What To Do Next" section}
**Previous Session**: {date} - {brief summary from history file}
### Current Focus
{from STATUS.md current focus}
### In Progress
{tasks marked [>] from TODO.md}
### Recent Changes
{last 2-3 changelog entries, one line each}
### Key Context
{if query provided, relevant context for that direction}
---
Ready to continue. {If NEXT.md exists: "Following previous session's plan." else: "What would you like to work on?"}
# General resume - load everything
/pp-resume
# With direction - focus on specific area
/pp-resume continue the booking flow implementation
/pp-resume fix the WhatsApp routing bug
/pp-resume review yesterday's changes