nex-life-logger: Local Activity Tracker for OpenClaw Agents

nex-life-logger is a skill published to ClawHub that provides OpenClaw agents with memory of your computer activities. It's a background activity tracker that runs on your machine and enables agents to answer questions about what you've been doing.
Installation and Usage
Install with: npx clawhub install nex-life-logger
Once installed, you can ask your agent questions like:
- "What was I working on yesterday afternoon?"
- "Search my history for Docker"
- "What YouTube videos did I watch about machine learning?"
- "Show me my productivity summary for last week"
The agent calls the CLI under the hood, searches your local database, and answers naturally.
How It Works
A background collector polls every 30 seconds and reads:
- Browser history from Chrome, Edge, Brave, and Firefox
- Active window focus
- YouTube transcripts automatically fetched
Content goes through a productivity filter that only tracks AI, programming, design, and learning content while skipping politics, news, and entertainment. Chat apps and sensitive windows (password managers, banking) are excluded automatically.
All data stays local in a SQLite database located at ~/.life-logger/.
AI Features and Privacy
AI summaries are generated on a schedule:
- Daily at 11 PM
- Weekly on Sunday
- Monthly on the 1st
- Yearly on Jan 1
Each level summarizes the one below it, and you can also generate summaries on demand.
The tool works with any OpenAI-compatible API for AI features (Qwen, OpenAI, Groq, Ollama, etc.). Tracking, search, stats, and keyword commands work without any API key.
Privacy is a key feature: no cloud, no account, no telemetry. The developer built this because similar tools (Rewind, Recall) send data somewhere or lock users into platforms.
📖 Read the full source: r/openclaw
👀 See Also

Four Claude Code Hooks Enforce Voice and Tone Consistency in AI-Written Copy
A developer built a system using four Claude Code hooks to prevent AI-generated copy from drifting off-brand. The system gates editing of copy files (.tsx, .md) until a reviewer agent validates content against a VOICE-AND-TONE.md guide.

Claude Code's Plan-Skeptic Sub Agent Identifies Security Gaps in Generated Plans
A developer discovered Claude Code's plan-skeptic sub agent, which identifies gaps and issues in AI-generated development plans, particularly catching security concerns that weren't initially obvious. The agent works alongside the previously known security-sheriff sub agent to improve plan quality.

Relay: A Tool for Handing Off Claude Code Sessions to Other AI Agents
Relay is a Rust binary that extracts Claude Code's session context—including conversation history, tool calls, errors, and git state—and transfers it to other AI agents like Codex or Gemini when rate limits are hit. It supports 8 agents and can be installed via GitHub or npm.

Detrix MCP Server Adds Runtime Debugging to AI Coding Agents
Detrix is a free, open-source MCP server that enables MCP-compatible agents to observe live variables in running code without restarts or code changes. It supports Python, Go, and Rust applications running locally or in Docker.