This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/STATUS.md
Claude 5e7d805245 feat: scaffold Timmy Time Mission Control (v1.0.0 Genesis)
- src/timmy/ — Agno agent wrapper (llama3.2 via Ollama, SQLite memory, TIMMY_SYSTEM_PROMPT)
- src/dashboard/ — FastAPI + HTMX + Jinja2 Mission Control UI
  - /health + /health/status (Ollama ping, HTMX 30s poll)
  - /agents list + /agents/timmy/chat (HTMX form submission)
- static/style.css — dark terminal mission-control aesthetic
- tests/ — 27 pytest tests (prompts, agent config, dashboard routes); no Ollama required
- pyproject.toml — hatchling build, pytest configured with pythonpath=src

https://claude.ai/code/session_01M4L3R98N5fgXFZRvV8X9b6
2026-02-19 19:05:01 +00:00

48 lines
1.2 KiB
Markdown

# Timmy Time — Status
## Current Version: 1.0.0 (Genesis)
### What's Built
- `src/timmy/` — Agno-powered Timmy agent (llama3.2 via Ollama, SQLite memory)
- `src/dashboard/` — FastAPI Mission Control dashboard (HTMX + Jinja2)
- CLI: `timmy think / chat / status`
- Pytest test suite (prompts, agent config, dashboard routes)
### System Requirements
- Python 3.11+
- Ollama running at `http://localhost:11434`
- `llama3.2` model pulled
### Quickstart
```bash
pip install -e ".[dev]"
# Start Ollama (separate terminal)
ollama serve
ollama pull llama3.2
# Run dashboard
uvicorn dashboard.app:app --reload
# Run tests (no Ollama required)
pytest
```
### Dashboard
`http://localhost:8000` — Mission Control UI with:
- Timmy agent status panel
- Ollama health indicator (auto-refreshes every 30s)
- Live chat interface
---
## Roadmap
| Tag | Name | Milestone |
|-------|------------|----------------------------------------------|
| 1.0.0 | Genesis | Agno + Ollama + SQLite + Dashboard |
| 2.0.0 | Exodus | MCP tools + multi-agent support |
| 3.0.0 | Revelation | Bitcoin Lightning treasury + single `.app` |
_Last updated: 2026-02-19_