Metadata-Version: 2.4
Name: kaiview
Version: 1.0.0
Summary: AI-powered developer OS dashboard
License-Expression: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.100.0
Requires-Dist: uvicorn[standard]>=0.23.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: aiosqlite>=0.19.0
Requires-Dist: watchdog>=3.0.0
Requires-Dist: httpx>=0.25.0
Requires-Dist: tomli>=2.0.0; python_version < "3.11"
Dynamic: license-file

# KaiView

> Your AI-powered developer OS. One dashboard for every project on your machine.

![KaiView Demo](docs/kaiview-demo.gif)

| Grid View | Kanban View |
|---|---|
| ![Grid](docs/screenshot_grid.png) | ![Kanban](docs/screenshot_kanban.png) |

| Command Palette | Settings Panel |
|---|---|
| ![Command Palette](docs/screenshot_command_palette.png) | ![Settings](docs/screenshot_settings.png) |

**KaiView** is a local-first developer dashboard that scans your project folders and gives you a live, intelligent view of everything you're building — git activity, tech stacks, AI context, session memory, and project health. No cloud. No subscriptions. One command to run.

---

## Features

| | |
|---|---|
| 🔍 **Auto project discovery** | Scans your dev folder, detects stack (Android, React, Python, Node.js, Docker, Arduino…) |
| ⎇ **Live git watcher** | Branch, dirty files, last commit, 7-day commit sparkline — updated via WebSocket |
| ♥ **Health score** | 0–100 score per project based on git freshness, README, dirty tree, active task |
| 🎯 **3-lens view** | Active Now / Needs Attention / Neglected — see what needs your focus |
| ▶ **Resume / ⏸ Park** | Save session state with current task, next action, blockers — pick up exactly where you left off |
| 🤖 **AI context payload** | Store stack summary, conventions, and context snippet — auto-copied to clipboard on resume |
| 🚀 **Dev launcher** | Auto-detect and start/stop dev server (`npm run dev`, `python bot.py`, `docker-compose up`…) |
| 📦 **Dependency scanner** | Scan `requirements.txt`, `package.json`, `build.gradle.kts` per project |
| ⌘K **Command palette** | Fuzzy search across all projects with inline actions |
| ⬛ **Kanban view** | Board-style view grouped by status (Active / In Progress / Paused / Complete) |
| 📓 **Project journal** | Per-project log with mood tags (Note / Win / Blocker / Idea) |
| 🔎 **Full-text search** | Search across name, description, tasks, notes, AI context |
| ⭐ **GitHub badges** | Stars, forks, open PRs, open issues, and CI status per project card |
| ⚙️ **In-browser settings** | Edit your `config.toml` values directly in the dashboard — no file editing needed |

---

## Quick Start

```bash
# 1. Clone
git clone https://github.com/Kabi10/kaiview.git
cd kaiview

# 2. Install
pip install -e .

# 3. Run
kaiview
```

Open **http://localhost:3737**

> **First run:** KaiView auto-scans your dev folder. No config needed — git history, stack detection, and metadata are read automatically.

---

## Keyboard Shortcuts

| Shortcut | Action |
|---|---|
| `Ctrl+K` | Open command palette |
| `Ctrl+F` | Focus search bar |
| `R` | Refresh projects |
| `Esc` | Close modal / palette |

---

## Configuration

KaiView stores config at `~/.kaiview/config.toml`. Edit it directly or use the in-app **⚙ Settings** panel:

```toml
[kaiview]
dev_dir = "C:/Dev"       # your projects root
port    = 3737

[health]
stale_days_warn  = 7
stale_days_crit  = 30

[github]
pat = ""                 # optional — raises GitHub API rate limit from 60 to 5000 req/hr
```

Projects listed in `skip` are excluded from the dashboard.

---

## API

| Method | Endpoint | Description |
|---|---|---|
| `GET` | `/api/projects` | All projects with full payload |
| `PUT` | `/api/projects/{name}` | Update metadata |
| `POST` | `/api/projects/{name}/resume` | Start session, open VS Code |
| `POST` | `/api/projects/{name}/park` | Save session state |
| `POST` | `/api/projects/{name}/launch` | Start/stop dev server |
| `GET` | `/api/projects/{name}/git` | Git log + status |
| `GET` | `/api/projects/{name}/deps` | Dependency list |
| `GET` | `/api/projects/{name}/github` | GitHub stats (stars, forks, PRs, issues, CI) |
| `GET` | `/api/projects/{name}/journal` | Journal entries |
| `POST` | `/api/projects/{name}/journal` | Add journal entry |
| `GET` | `/api/settings` | Read current config.toml |
| `POST` | `/api/settings` | Update config.toml + hot-reload |
| `GET` | `/api/search?q=` | Full-text search |
| `GET` | `/api/stats` | Counts by lens/status/category/AI |
| `WS` | `/ws` | Live git updates |

---

## Stack

- **Backend:** Python 3.10+, FastAPI, uvicorn, aiosqlite
- **Frontend:** Vanilla HTML/CSS/JS (zero npm, zero build step)
- **Storage:** SQLite via aiosqlite (`~/.kaiview/kaiview.db`)
- **Git:** subprocess + git CLI

---

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md). PRs welcome — especially new stack detectors, platform connectors, and UI improvements.

## License

MIT © [Kabi10](https://github.com/Kabi10)
