An AI-powered coding agent ecosystem with persistent memory, multi-model support, and beautiful CLI.
testbot/
├── timps-code/ ← CLI agent (this is your new coding agent)
├── timps-vscode/ ← VS Code extension
├── timps-mcp/ ← MCP server for Claude Code/Cursor
└── sandeep-ai/ ← Full server with 17 intelligence tools
| Interface | Install | Use Case |
|---|---|---|
| TIMPS Code | npm install -g timps-code |
CLI agent with memory |
| TIMPS VSCode | VS Marketplace | In-editor AI coding |
| TIMPS MCP | npm install -g timps-mcp |
Connect to Claude Code/Cursor |
| TIMPS Server | cd sandeep-ai && npm run server |
Full web + 17 tools |
npm install -g timps-code
timps "hello"npm install -g timps-mcp
# Configure ~/.claude.jsonA powerful AI coding agent with persistent memory and beautiful CLI.
# Interactive mode
timps
# One-shot mode
timps "write a hello world function"
timps --provider ollama "hello"
timps --provider gemini "hello"- Persistent Memory — Remembers facts across sessions
- Self-Correcting — Auto-heals errors
- Multi-Model — Claude, OpenAI, Gemini, Ollama, Hybrid
- Beautiful CLI — Ink-based TUI with dashboard
- Data Pipeline — Bug mining, synthetic generation
| Provider | Setup | Cost |
|---|---|---|
| Ollama (default) | ollama serve |
Free |
| Claude | Set ANTHROPIC_API_KEY |
Paid |
| OpenAI | Set OPENAI_API_KEY |
Paid |
| Gemini | Set GEMINI_API_KEY |
Paid (free tier) |
| Hybrid | Ollama + API | Mixed |
VS Code extension for in-editor AI coding.
- Cmd+Esc — Open TIMPS terminal
- Cmd+Shift+C — Open chat panel
- Context awareness — Auto-shares current file
- Memory — Remembers your patterns
Connect to Claude Code, Cursor, or Windsurf.
npm install -g timps-mcpConfigure in your AI tool's MCP settings:
{
"mcpServers": {
"timps": {
"command": "timps-mcp",
"env": {
"TIMPS_URL": "http://localhost:3000",
"TIMPS_USER_ID": "1"
}
}
}
}Full server with 17 intelligence tools.
cd sandeep-ai
npm run server| # | Tool | What it does |
|---|---|---|
| 1 | Temporal Mirror | Tracks behavioral patterns |
| 2 | Regret Oracle | Warns before repeating mistakes |
| 3 | Living Manifesto | Derives values from behavior |
| 4 | Burnout Seismograph | Monitors stress signals |
| 5 | Argument DNA Mapper | Detects contradictions |
| 6 | Dead Reckoning | Simulates future outcomes |
| 7 | Skill Shadow | Tracks skill gaps |
| 8 | Curriculum Architect | Suggests learning paths |
| 9 | Tech Debt Seismograph | Warns on code patterns |
| 10 | Bug Pattern Prophet | Knows your bug triggers |
| 11 | API Archaeologist | Remembers API quirks |
| 12 | Codebase Anthropologist | Explains code decisions |
| 13 | Institutional Memory | Preserves decision rationale |
| 14 | Chemistry Engine | Analyzes team dynamics |
| 15 | Meeting Ghost | Tracks commitments |
| 16 | Collective Wisdom | Shares others' solutions |
| 17 | Relationship Intelligence | Monitors relationship health |
┌─────────────────────────────────────────────┐
│ TIMPS Ecosystem │
├─────────────────────────────────────────────┤
│ │
│ ┌──────────────┐ ┌──────────────┐ │
│ │TIMPS Code │ │TIMPS VSCode │ │
│ │(CLI) │ │(Extension) │ │
│ └──────┬───────┘ └──────┬───────┘ │
│ │ │ │
│ ▼ ▼ │
│ ┌─────────────────────────────────────┐ │
│ │ TIMPS MCP Server │ │
│ │ (connects agents to memory) │ │
│ └─────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────┐ │
│ │ sandeep-ai Server │ │
│ │ (17 intelligence tools) │ │
│ │ ┌──────────┐ ┌─────────┐ │ │
│ │ │PostgreSQL│ │ Qdrant │ │ │
│ │ │(memory) │ │(vectors) │ │ │
│ │ └──────────┘ └─────────┘ │ │
│ └─────────────────────────────────────┘ │
└─────────────────────────────────────────────┘
Create .env in timps-code folder:
GEMINI_API_KEY=your-key
ANTHROPIC_API_KEY=your-key
OPENAI_API_KEY=your-key
OPENROUTER_API_KEY=your-key~/.timps/config.json:
{
"defaultProvider": "ollama",
"defaultModel": "qwen2.5-coder:latest",
"ollamaUrl": "http://localhost:11434",
"trustLevel": "normal"
}# TIMPS Code CLI
cd timps-code
npm install
npm run build
npm run start
# TIMPS VSCode
cd timps-vscode
npm install
npm run watch
# TIMPS MCP
cd timps-mcp
npm install
# Full Server
cd sandeep-ai
npm install
npm run server| Key | Action |
|---|---|
Enter |
Send message |
Tab |
Switch panels |
Ctrl+C |
Exit |
↑/↓ |
Scroll history |
MIT