{"id":49342287,"url":"https://github.com/pajaydev/kiro-history","last_synced_at":"2026-04-27T05:01:00.624Z","repository":{"id":344339709,"uuid":"1153035630","full_name":"pajaydev/kiro-history","owner":"pajaydev","description":"Web app to browse kiro conversation history","archived":false,"fork":false,"pushed_at":"2026-04-21T21:34:54.000Z","size":108,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-21T23:30:26.577Z","etag":null,"topics":["history","kiro","kiro-ai","kiro-cli","kiro-dev","kiro-history"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pajaydev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-08T19:58:57.000Z","updated_at":"2026-04-21T21:34:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pajaydev/kiro-history","commit_stats":null,"previous_names":["pajaydev/kiro-history"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pajaydev/kiro-history","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fkiro-history","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fkiro-history/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fkiro-history/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fkiro-history/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pajaydev","download_url":"https://codeload.github.com/pajaydev/kiro-history/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pajaydev%2Fkiro-history/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32323215,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["history","kiro","kiro-ai","kiro-cli","kiro-dev","kiro-history"],"created_at":"2026-04-27T05:00:55.412Z","updated_at":"2026-04-27T05:01:00.590Z","avatar_url":"https://github.com/pajaydev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kiro-history\n\n[![npm version](https://img.shields.io/npm/v/kiro-history.svg)](https://www.npmjs.com/package/kiro-history)\n[![npm downloads](https://img.shields.io/npm/dm/kiro-history.svg)](https://www.npmjs.com/package/kiro-history)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\n\u003e Browse your Kiro conversations in a beautiful web UI. Supports both Kiro CLI and Kiro IDE.\n\n## ✨ Features\n\n- 🔍 **Search** - Find conversations instantly across all your history\n- 📝 **Markdown Support** - Properly rendered markdown with syntax-highlighted code blocks and tables\n- 🔧 **Tool Details** - Collapsible tool usage information for each assistant response\n- 🔄 **Live Updates** - Automatically refreshes when new conversations are added\n- 🎨 **Clean UI** - Modern, responsive interface with dark theme\n- 🚀 **Source Switching** - Toggle between CLI and IDE conversations when both are available\n\n## 🚀 Quick Start\n\n```bash\n# Run directly with npx (no install needed)\nnpx kiro-history\n```\n\nThat's it! The tool will auto-detect your Kiro data and open a browser window.\n\n## 📦 Installation\n\n```bash\n# Install globally for repeated use\nnpm install -g kiro-history\n\n# Then run anytime\nkiro-history\n```\n\n## 🎯 Usage\n\n### Basic Usage\n\n```bash\n# Auto-detect and open browser\nkiro-history\n\n# Use a specific port\nkiro-history -p 3000\n\n# Don't open browser automatically\nkiro-history --no-open\n```\n\n### Source Selection\n\n```bash\n# Explicitly use Kiro IDE conversations\nkiro-history --source ide\n\n# Explicitly use Kiro CLI conversations\nkiro-history --source cli\n\n# Auto-detect (default - prefers CLI if both exist)\nkiro-history --source auto\n```\n\n### Custom Paths\n\n```bash\n# Use a custom database path (CLI mode)\nkiro-history ~/path/to/data.sqlite3\n\n# Use a custom sessions directory (IDE mode)\nkiro-history --source ide ~/path/to/kiro.kiroagent\n```\n\n## 📋 Options\n\n| Option | Description | Default |\n|--------|-------------|---------|\n| `path` | Custom path to database file (CLI) or sessions directory (IDE) | Auto-detected |\n| `-s, --source \u003ctype\u003e` | Source type: `cli`, `ide`, or `auto` | `auto` |\n| `-p, --port \u003cnumber\u003e` | Port to run the server on | Random available port |\n| `--no-open` | Don't open browser automatically | Opens browser |\n| `-V, --version` | Show version number | - |\n| `-h, --help` | Show help | - |\n\n## 🔧 How It Works\n\n**Kiro CLI** saves conversations to a local SQLite database, while **Kiro IDE** stores them as JSON files in its global storage directory. This tool reads from either source and displays your chat history in a clean, browsable format.\n\n### Default Paths\n\n**macOS:**\n- CLI: `~/Library/Application Support/kiro-cli/data.sqlite3`\n- IDE: `~/Library/Application Support/Kiro/User/globalStorage/kiro.kiroagent`\n\n**Linux:**\n- CLI: `~/.local/share/kiro-cli/data.sqlite3`\n- IDE: `~/.config/Kiro/User/globalStorage/kiro.kiroagent`\n\n**Windows:**\n- CLI: `%USERPROFILE%\\.local\\share\\kiro-cli\\data.sqlite3`\n- IDE: `%APPDATA%\\Kiro\\User\\globalStorage\\kiro.kiroagent`\n\n### Source Detection\n\nWhen using `--source auto` (the default):\n1. Checks for both CLI and IDE data sources\n2. If both exist, defaults to **CLI**\n3. If only one exists, uses that source\n4. Shows a switch button in the UI when both sources are available\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## 📄 License\n\nMIT © [Ajaykumar Prathap](https://github.com/pajaydev)\n\n## 🔗 Links\n\n- [GitHub Repository](https://github.com/pajaydev/kiro-history)\n- [npm Package](https://www.npmjs.com/package/kiro-history)\n- [Report Issues](https://github.com/pajaydev/kiro-history/issues)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpajaydev%2Fkiro-history","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpajaydev%2Fkiro-history","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpajaydev%2Fkiro-history/lists"}