{"id":31109375,"url":"https://github.com/kayleexx/kodo-tracker","last_synced_at":"2025-09-17T06:57:37.410Z","repository":{"id":313302222,"uuid":"1048587148","full_name":"Kayleexx/Kodo-tracker","owner":"Kayleexx","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-05T05:04:48.000Z","size":30,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-05T07:07:29.825Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kayleexx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-09-01T17:24:54.000Z","updated_at":"2025-09-05T05:36:34.000Z","dependencies_parsed_at":"2025-09-05T07:18:19.336Z","dependency_job_id":null,"html_url":"https://github.com/Kayleexx/Kodo-tracker","commit_stats":null,"previous_names":["kayleexx/kodo-tracker"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Kayleexx/Kodo-tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kayleexx%2FKodo-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kayleexx%2FKodo-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kayleexx%2FKodo-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kayleexx%2FKodo-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kayleexx","download_url":"https://codeload.github.com/Kayleexx/Kodo-tracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kayleexx%2FKodo-tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275549736,"owners_count":25484687,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-17T02:00:09.119Z","response_time":84,"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":[],"created_at":"2025-09-17T06:57:35.173Z","updated_at":"2025-09-17T06:57:37.393Z","avatar_url":"https://github.com/Kayleexx.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kodo: Track Your Development Activities\n\nKodo is a **developer activity tracker** with a clean terminal UI, built in Rust using [ratatui](https://github.com/ratatui-org/ratatui).  \nIt helps you log activities, track time, and even sync your **Git commits** into the dashboard, so you get real stats about your coding sessions without extra effort.\n\n---\n\n## Features\n\n- 📋 **Activities table** — log tasks you’re working on.\n- ⏱ **Duration tracking** — keep track of how much time you spend.\n- 📊 **Stats view** — toggle a bar chart of activity durations.\n- 🌱 **Git integration** — automatically sync commit history from the current repo as activities.\n- 💾 **Persistent storage** — saves activities to a JSON file on disk.\n- 🖥 **TUI navigation** — built with `ratatui` for a fast, keyboard-driven UI.\n\n---\n\n## Demo\n\n(Insert a GIF or screenshot here once you record one)\n\n---\n\n## Installation\n\n### From source\nMake sure you have [Rust](https://www.rust-lang.org/tools/install) installed.\n\n```bash\ngit clone https://github.com/Kayleexx/Kodo-tracker.git\ncd kodo\ncargo install --path .\n````\n\nThis will install the `kodo` binary globally.\n\n---\n\n## Usage\n\nRun inside any Git repository to also sync commits:\n\n```bash\nkodo\n```\n\n### Keyboard shortcuts\n\n| Key | Action                        |\n| --- | ----------------------------- |\n| `q` | Quit                          |\n| `a` | Add a new activity            |\n| `d` | Delete selected activity      |\n| `f` | Filter activities by duration |\n| `r` | Reset filters                 |\n| `s` | Sort activities               |\n| `v` | Toggle stats view             |\n| `g` | Sync Git commits              |\n\n---\n\n## 🗂 Data Storage\n\nKodo stores activities in a JSON file (by default in your project directory).\nEach activity has:\n\n```json\n{\n  \"id\": 1,\n  \"name\": \"Fix login bug\",\n  \"duration_minutes\": 45,\n  \"date\": \"2025-09-04\"\n}\n```\n\n---\n\n## 🦀 Tech Stack\n\n* [ratatui](https://github.com/ratatui-org/ratatui) — Terminal UI\n* [git2](https://crates.io/crates/git2) — Git integration\n* [anyhow](https://crates.io/crates/anyhow) — Error handling\n* [serde](https://crates.io/crates/serde) + [serde\\_json](https://crates.io/crates/serde_json) — Persistence\n\n\n---\n\n## 📜 License\n\nMIT License © 2025 [Your Name](https://github.com/Kayleexx)\n\n---\n\nhttps://github.com/user-attachments/assets/7c99b9ba-513a-435a-bf56-2436b649157b\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkayleexx%2Fkodo-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkayleexx%2Fkodo-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkayleexx%2Fkodo-tracker/lists"}