npx claudepluginhub lledellebell/glean --plugin glean-context/contextSearches project and global memories by keyword with smart expansion to related terms (e.g., auth→JWT/OAuth, db→Prisma/PostgreSQL), displaying matching key-value entries.
/contextDisplays full project context including tasks with status/priority/blockers, learnings/insights, and decisions/reasoning. Outputs JSON (default) or YAML via --format.
/contextManages AI session context: load project info from progress.md/CLAUDE.md, save current state, or show context range.
/contextAnalyze the current project stack and surface the most relevant clarc skills, agents, and commands for this codebase.
Save and restore session context.
/context <command> [options]
/context save [--name <name>] [--tag <tags>]
/context load <name|id>
/context list [--project <name>]
/context delete <name|id>
✅ Context saved
📌 Name: auth-feature
🏷️ Tags: #auth #feature
📁 Project: my-app
📅 Saved: 2024-01-15 15:30
Included information:
- 5 working files
- 3 todo items
- Git branch: feature/auth
Restore command: /context load auth-feature
## Saved Contexts
| Name | Project | Date | Tags |
|------|---------|------|------|
| auth-feature | my-app | 01-15 | #auth |
| api-refactor | api-server | 01-14 | #refactor |
| bug-fix-123 | my-app | 01-13 | #bugfix |
✅ Context restored: auth-feature
📁 Project: /Users/me/projects/my-app
🌿 Git branch: feature/auth
### Files in Progress
- src/auth/login.tsx
- src/hooks/useAuth.ts
- src/api/auth.ts
### Incomplete Tasks
- [ ] Implement logout feature
- [ ] Add token refresh logic
- [ ] Improve error handling
### Notes
Decided to store JWT refresh tokens in httpOnly cookies
# .glean.json settings
{
"autoContext": {
"enabled": true,
"strategy": "last" | "branch" | "manual"
}
}
last: Auto-load last contextbranch: Load context by Git branchmanual: Load manually only# Context automatically saved when /done is executed
# Save current context
/context save --name "auth-wip" --tag "auth,feature"
# Restore context
/context load auth-wip
# View list
/context list
# Specific project only
/context list --project my-app
# Delete
/context delete old-context
~/.glean/contexts//history - Restore from session history/plan - Include work plans/memory - Integration with persistent memory