
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
TIMPS Code — Production-grade AI coding agent with persistent memory, multi-model support, skills, MCP, and messaging gateway
A CLI coding agent like Claude Code — runs on Ollama (free, local), has persistent memory across sessions, and is fully open source.
npm install -g timps-code
timps
Persistent memory. TIMPS remembers your project across sessions using a 3-layer memory system:
When you start a new session and say "use the same pattern we always use for API routes", TIMPS knows what you mean.
Runs 100% locally. The default provider is Ollama. No API keys, no data leaving your machine, no monthly bill.
Self-correcting. When a command fails, the agent analyzes the error, fixes its approach, and retries — up to 3 times by default.
npm install -g timps-code
Requirements: Node.js 18+ | For local AI: Ollama
# Interactive session (persistent memory, full agent loop)
timps
# One-shot mode
timps "add input validation to src/api.ts"
timps "write tests for the payment module"
timps "explain why src/queue.ts uses a semaphore"
# Specify provider
timps --provider ollama "refactor this"
timps --provider claude "review this PR diff"
timps --provider gemini "suggest architecture improvements"
# Setup wizard (first time)
timps --config
| Provider | Setup | Cost |
|---|---|---|
| Ollama (default) | ollama serve | Free |
| Claude | ANTHROPIC_API_KEY=... | Paid |
| OpenAI | OPENAI_API_KEY=... | Paid |
| Gemini | GEMINI_API_KEY=... | Free tier available |
| OpenRouter | OPENROUTER_API_KEY=... | Pay per use |
| Hybrid | Ollama + API fallback | Mixed |
TIMPS auto-detects Ollama on startup. If Ollama is running, it uses it without any config.
timps --provider <name> # claude | openai | gemini | ollama | openrouter | hybrid
timps --model <model> # e.g. gpt-4o, claude-sonnet-4-5, llama3.1:8b
timps --dir <path> # set working directory (default: cwd)
timps --config # run setup wizard
timps --branch <name> # start from a named memory branch
timps --merge <name> # merge a memory branch into current context
/help — list all commands
/memory — show what TIMPS remembers about this project
/todo — manage task list with the agent
/branch <name> — snapshot current memory into a named branch
/merge <name> — merge a memory branch back
/skills — list and install skills
/mcp — list connected MCP servers
/git — git status and diff
/models — list available Ollama models
/doctor — diagnose config and connection issues
/clear — clear session working memory
TIMPS ships with 25 tools. The agent picks them automatically:
| Category | Tools |
|---|---|
| File ops | read_file, write_file, edit_file, multi_edit, patch_file |
| Search | find_files, search_code, grep |
| Git | get_git_status, git_diff, git_log, git_commit |
| Shell | run_bash |
| Code quality | run_tests, lint, type_check |
| Reasoning | think, plan |
| Web | web_search, web_fetch |
| Task management | todo_create, todo_list, todo_update |
TIMPS stores memory per-project in ~/.timps/memory/<project-hash>/:
semantic.json — long-term facts and patterns
episodes.jsonl — past session summaries (rolling 100)
working.json — current session state
You can view it with /memory inside a session, or inspect the files directly.
Branching: timps --branch feature-x snapshots the current memory state before you start a risky refactor. timps --merge main merges it back.
TIMPS can install reusable skills — small prompt packages that add domain expertise:
# Inside a session:
/skills list — browse available skills
/skills install react-patterns
/skills install test-driven-development
Skills are stored in ~/.timps/skills/ and injected into the system prompt when relevant.
If you're running the full TIMPS server (docker compose up -d from the repo root), you can connect it to Claude Code, Cursor, or Windsurf for persistent memory inside those tools too. See timps-mcp.
On first run, TIMPS creates ~/.timps/config.json. You can also set via environment:
ANTHROPIC_API_KEY=sk-...
OPENAI_API_KEY=sk-...
GEMINI_API_KEY=...
OPENROUTER_API_KEY=sk-...
OLLAMA_BASE_URL=http://localhost:11434 # default
OLLAMA_DEFAULT_MODEL=qwen2.5-coder:7b # default
Only set the keys for providers you actually use. Ollama needs no key.
FAQs
Open-source CLI coding agent with 9-layer persistent memory. Free with Ollama. Drop-in Claude Code alternative. Works with any model.
The npm package timps-code receives a total of 6 weekly downloads. As such, timps-code popularity was classified as not popular.
We found that timps-code demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.