v1.2.0 Released
Your AI agent forgets.
Your project shouldn't.
Context Keeper captures every architectural decision from your Claude Code, Cursor and Cline sessions — automatically.
daemon process
> context-keeper watch .
✓ Attached to active Claude Code session
⠋ Monitoring conversation context...
// Decision detected: Using Redis for caching
❯ Extracting architectural rationale...
✓ Synthesized into structural memory
❯ Updating CLAUDE.md... DONE
CLAUDE.md
Updated# Project Context
## Architecture Decisions
- Auth: JWT with HTTP-only cookies
- DB: PostgreSQL (Prisma ORM)
- Caching: Redis (Implemented to reduce DB load on complex queries)
Decisions buried in chat logs
CLAUDE.md always stale
New sessions start from zero
How it works
1
Install the daemon
One command starts the watch process.
2
Code with your AI
Use Claude Code, Cursor or Cline as usual.
3
Context saved
Decisions appear in CLAUDE.md + dashboard.
Features
Automatic decision extraction
Parses your natural conversations to find the architecture choices.
Works offline
Local-first approach. Bring your own LLM key.
Session-end hook
Zero friction. Runs automatically when your session ends.
Cloud dashboard
See all your projects and their captured decisions in one place.
Quality gate
No generic noise. Only impactful architectural choices are recorded.
MCP server included
Natively compatible with the Model Context Protocol.
Your Context Dashboard
context.nimblabs.com
PROJECTS
auth-service
frontend-core
data-pipeline
auth-service
Updated 2m agoSwitched to JWT with HTTP-only cookies
Decided against localStorage due to XSS vulnerabilities mentioned during auth flow review.
Via Claude Code
Adopted Prisma ORM
Replaced raw SQL queries for better type safety across the monorepo.
Via Cursor