tigermemory.dev
$ cat problem.md
# The Problem

Every new Claude Code session starts from zero.

You waste 5 minutes re-explaining:
- Your tech stack (React, Express, PostgreSQL)  
- Project structure (/src/components/, /api/auth/)
- Architecture decisions and context

EVERY TIME:
You: "I have a React app with Express backend"
You: "Using PostgreSQL, JWT auth, routes in /api/auth/"  
You: "Components are in /src/components/"
You: "Now help me add password reset..."
Claude: "Thanks for the context! Let me help..."

😤 5 minutes wasted every session.
Click anywhere to continue...
$ cat solution.md
# Tiger Memory

Claude Code that actually remembers your project.

SESSION 1:
You: "Let's use Express with PostgreSQL"
Claude: "I'll help you set up Express with PostgreSQL..."

 tigermemory - remember_decision (MCP)
(decision: "Express + PostgreSQL stack", 
 files_affected: ["server.js", "db/config.js"])

SESSION 2:
You: "Add user authentication"
Claude: "I'll add auth to your Express + PostgreSQL app..."

✨ Claude remembers without you explaining again.
Click anywhere to continue...
$ tigermemory --help
Tiger Memory provides 4 MCP tools for Claude Code:

remember_decision
  Automatically captures architecture choices
  Example: "Express + PostgreSQL", "JWT auth"

recall_context
  Loads your entire project state
  Tech stack, file structure, previous decisions

get_timeline
  See your project's evolution
  Chronological history of all decisions

discover_patterns
  Learn from similar projects
  "67% use JWT, 23% use sessions for auth"

✨ Claude uses these automatically. Zero manual work.
Click anywhere to continue...
$ npm install -g tigermemory && tigermemory login
Ready to try Tiger Memory?

npm install -g tigermemory
tigermemory login

That's it. Claude Code now remembers everything.
Click anywhere to restart...