Timeliner 🌟 - AI's diary. Track AI agent work with markdown log
Project description
Timeliner
Auto-documenting memory layer for AI coding agents. Timeliner logs development sessions as timestamped markdown files, giving perfect recall of past decisions, implementations, and context.
Feature Highlights
- Zero-friction logging - easy-save work via
/savecommand - Markdown storage - Human-readable logs
- Integration - Works with Claude Code, RooCode, and other MCP-enabled tools
- Rich context - Capture outcomes, tags, metadata (PRs, commits, issues)
Use Cases
Software Development:
- Document decisions and rationale during coding sessions
- Track refactoring steps
- Log implementation progress
Research & Learning:
- Maintain experiment logs with results and insights
- Learning journal
- Track hypothesis
Installation
Automatic Setup for Claude Code
Run the installer in your project root:
uvx --from tliner@latest tliner-install
Documents stored in docs/timeline/ by default. Customize via Environment Variables
See details below.
Manual Setup for other MCP Tools
See Manual Installation below.
Quick Start
Using the /save Command
- Run
/savein your Agent Tool, when you feel you have made significant progress or decisions. - File will be created/updated in your configured
TIMELINER_WORK_FOLDER(docs/timeline/by default).
Using the /report Command
Generate work reports analyzing your Timeline: /report [topic] [time_period]
Examples:
/report authentication bug last 48 hours- Find work on authentication in recent files/report yesterday- Generate summary of all work yesterday
The report groups work into distinct approaches, showing implementation attempts, outcomes, and current status.
Using the /load Command
Restore previous work into context. Universal retrieval: /load [topic | task_id ] [time_period]
Examples:
/load 20251204T182649.123456Z- Load exact task or step by ID/load last week- Load all work from last week/load MkDocs work since Monday- Topic + time filter/load- Continues from last saved task (remembers context)
Configuration
Environment Variables
TIMELINER_WORK_FOLDER: Storage directory (default:work/docs)- add envvar to
.claude/settings.jsonor.claude/settings.local.json:
{
"env": { "TIMELINER_WORK_FOLDER": "info/mydocs" }
}
Documentation Browser (Experimental in v0.2.0)
Your timeline files automatically become a searchable doc-UI. Enable MkDocs by adding the --mkdocs flag to the "args" in your MCP server configuration.:
In .mcp.json:
{
"mcpServers": {
"timeliner": {
"command": "uvx",
"args": ["tliner@latest", "serve", "--mkdocs"],
"env": {"TIMELINER_WORK_FOLDER": "${PWD}/docs/timeline"}
}
}
}
Opens your browser to a live-updating docs site. Every time you save work, the site refreshes. Search anything, jump between tasks, copy file paths—it's all there.
Quick tips:
- Click task IDs or file paths to copy them
- Use the search box to find past work instantly
- "Open in Editor" buttons work with VSCode, Cursor, Zed, and 14 other editors
That's it. Write markdown, get docs.
Note: This feature is experimental and disabled by default.
Advanced Usage
CLI Commands
For manual inspection and debugging:
# List all tasks
TIMELINER_WORK_FOLDER="${PWD}/docs/timeline" uvx tliner@latest task-list
# Show all steps for a task
TIMELINER_WORK_FOLDER="${PWD}/docs/timeline" uvx tliner@latest task-show <task_id>
# Run MCP server manually
TIMELINER_WORK_FOLDER="${PWD}/docs/timeline" uvx tliner@latest serve
Archiving Tasks
Got too many tasks cluttering your timeline? Just toss old ones into year-month folders like 2025_09, 2025_10, etc.
Everything still works—searches, retrieval, CLI commands—but now your root stays clean and MkDocs shows them organized by month. It's like filing papers in dated folders, except the computer remembers where everything is.
Claude Code Modes
- Two modes available: plugin and standalone
- Install script detects Claude CLI:
- If Claude CLI available → installs as plugin (recommended)
- If not → falls back to standalone mode
1. Plugin mode (default when Claude detected):
- Adds
sinai-io/ai-pluginsmarketplace - Installs
tlinerplugin with/tliner:save,/tliner:load,/tliner:reportcommands
2. Standalone mode (deprecated, force with --standalone or -w):
uvx --from tliner@latest tliner-install --standalone
uvx --from tliner@latest tliner-install -w custom/path
- Configures
.mcp.jsondirectly - Creates
/save,/load,/reportin.claude/commands/ - Use when you want full control or custom work folder
Manual Installation
Add/create to .mcp.json in the root folder of your project:
{
"mcpServers": {
"timeliner": {
"type": "stdio",
"command": "uvx",
"args": ["tliner@latest", "serve"],
"env": {"TIMELINER_WORK_FOLDER": "${PWD}/docs/timeline"}
}
}
}
Copy commands from our repo to .claude/commands/:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tliner-0.3.1-py3-none-any.whl.
File metadata
- Download URL: tliner-0.3.1-py3-none-any.whl
- Upload date:
- Size: 39.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5b68241def08d10423c5b38c03ea491be18c0c0738035be81b66f26c027146e
|
|
| MD5 |
c9a6b8babf9f8dd8058a24265afd045f
|
|
| BLAKE2b-256 |
76389de187ed2722d4386c1b6db079637d296ed64245f3bde1d710835335d287
|