{"id":48805736,"url":"https://github.com/kenfdev/cc-tail","last_synced_at":"2026-04-14T05:03:38.505Z","repository":{"id":337363890,"uuid":"1152653301","full_name":"kenfdev/cc-tail","owner":"kenfdev","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-09T06:27:10.000Z","size":153,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-09T11:38:25.921Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kenfdev.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-08T07:52:29.000Z","updated_at":"2026-02-09T06:27:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kenfdev/cc-tail","commit_stats":null,"previous_names":["kenfdev/cc-tail"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/kenfdev/cc-tail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fcc-tail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fcc-tail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fcc-tail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fcc-tail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kenfdev","download_url":"https://codeload.github.com/kenfdev/cc-tail/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fcc-tail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31782743,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2026-04-14T05:03:01.229Z","updated_at":"2026-04-14T05:03:38.500Z","avatar_url":"https://github.com/kenfdev.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cctail\n\n[![Crates.io](https://img.shields.io/crates/v/cctail)](https://crates.io/crates/cctail)\n[![CI](https://github.com/kenfdev/cc-tail/actions/workflows/ci.yml/badge.svg)](https://github.com/kenfdev/cc-tail/actions/workflows/ci.yml)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)\n\nA TUI application for monitoring Claude Code sessions in real-time.\n\n\u003c!-- TODO: Add demo GIF using vhs or asciinema --\u003e\n\n## Features\n\n- Real-time monitoring of Claude Code sessions with auto-detection\n- Interactive search with match highlighting and n/N navigation\n- Filter by agent or hide tool calls\n- Session sidebar with subagent tree view\n- Full session history load on demand (L)\n- Dark/light themes, ASCII fallback (`--ascii`)\n- Lightweight `stream` subcommand for piping\n- Config file support (`~/.config/cc-tail/config.toml`)\n- Help overlay with keybindings, symbol legend, and live session stats\n\n## Installation\n\n### From crates.io\n\n```\ncargo install cctail\n```\n\n### Quick install (Linux / macOS)\n\n```\ncurl -fsSL https://raw.githubusercontent.com/kenfdev/cc-tail/main/install.sh | sh\n```\n\nOr with a custom install directory:\n\n```\ncurl -fsSL https://raw.githubusercontent.com/kenfdev/cc-tail/main/install.sh | INSTALL_DIR=~/.local/bin sh\n```\n\n## Usage\n\n```\n# Launch TUI (auto-detects project and session)\ncctail\n\n# Attach to a specific session\ncctail --session \u003cid\u003e\n\n# Lightweight streaming mode (single file)\ncctail stream --file \u003cpath/to/session.jsonl\u003e\n```\n\n## Key Bindings\n\n| Key | Action |\n|-----|--------|\n| `j` / `k` | Navigate sidebar / scroll log |\n| `Enter` | Select session |\n| `Tab` | Toggle focus (sidebar / log) |\n| `b` | Toggle sidebar |\n| `/` | Search |\n| `n` / `N` | Next / previous search match |\n| `f` | Filter menu |\n| `L` | Load full session history |\n| `u` / `d` | Half-page up / down |\n| `g` / `G` | Go to top / bottom |\n| `Esc` | Exit mode / close overlay |\n| `?` | Help overlay |\n| `q` | Quit |\n\n## Configuration\n\ncctail reads an optional config file from `~/.config/cc-tail/config.toml`.\nCLI flags override config file values.\n\n```toml\n# General\nverbose = false\ntheme = \"dark\"      # \"dark\" or \"light\"\nascii = false       # Use ASCII instead of Unicode symbols\n\n# Display\n[display]\ntimestamps = true\ntimestamp_format = \"%H:%M:%S\"\n```\n\n## Development\n\n```\nmake setup\n```\n\nThis configures git to use the shared hooks in `.githooks/` (auto-format with `cargo fmt`, lint with `cargo clippy` on every commit).\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenfdev%2Fcc-tail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkenfdev%2Fcc-tail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenfdev%2Fcc-tail/lists"}