From claudekit
Manages coding session state: saves/restores git-based checkpoints, indexes project structure, loads components into context, checks git/tasks status.
npx claudepluginhub duthaho/claudekit --plugin claudekitThis skill uses the workspace's default tool permissions.
- Saving or restoring session state (checkpoints)
Manages persistent per-project memory for Claude Code. Auto-loads context on session start, tracks git activity, saves summaries/next steps via /ck commands.
Saves and restores project state between Claude Code sessions: captures accomplishments, progress, git status, next steps, issues; stores in SQLite and markdown; generates handoff prompts. Use for 'save project', handoff, or low context.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
git-workflowsusing-git-worktreesdispatching-parallel-agents| Topic | Reference | Key content |
|---|---|---|
| Checkpoints | references/checkpoints.md | Save/restore/list/delete session state |
| Project indexing | references/indexing.md | Generate PROJECT_INDEX.md, scan structure |
| Context loading | references/loading.md | Load components by category or path |
| Status checking | references/status.md | Git state, tasks, recent activity |
Save and restore conversation context using git-based state:
# Save current state
# → creates git stash + metadata in .claude/checkpoints/
/checkpoint save feature-auth
# List available checkpoints
/checkpoint list
# Restore a checkpoint
/checkpoint restore feature-auth
# Delete old checkpoint
/checkpoint delete old-checkpoint
Auto-checkpoint is suggested before major refactoring, context switches, and risky operations.
Generate a comprehensive project structure index:
# Generate PROJECT_INDEX.md
/index
# Shallow index (3 levels deep)
/index --depth=3
The index categorizes files by type: entry points, API routes, models, services, utilities, tests, and configuration.
Load specific components into context for focused work:
| Category | What It Loads |
|---|---|
api | API routes and endpoints |
models | Data models and types |
services | Business logic services |
auth | Authentication related |
db | Database related |
tests | Test files |
config | Configuration files |
/load api # Load all API routes
/load src/services/user.ts # Load specific file
/load auth --related # Load auth + related files
/load --all --shallow # Quick overview of everything
Get current project status:
/status
Shows: git branch and status, in-progress/pending/completed tasks, recent commits, open PRs.
auth-progress beats checkpoint-1.using-git-worktrees — Isolated branch management for parallel workdispatching-parallel-agents — Launching parallel background tasks