{"id":40740259,"url":"https://github.com/damassi/agent-chat-cli-python","last_synced_at":"2026-01-21T15:05:31.904Z","repository":{"id":327349487,"uuid":"1106691251","full_name":"damassi/agent-chat-cli-python","owner":"damassi","description":"A minimalist agent chat CLI, built on top of the the Claude Agent SDK. ","archived":false,"fork":false,"pushed_at":"2025-12-21T17:55:01.000Z","size":167,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-22T01:37:44.424Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","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/damassi.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-11-29T18:45:35.000Z","updated_at":"2025-12-22T01:19:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/damassi/agent-chat-cli-python","commit_stats":null,"previous_names":["damassi/agent-chat-cli-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/damassi/agent-chat-cli-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damassi%2Fagent-chat-cli-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damassi%2Fagent-chat-cli-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damassi%2Fagent-chat-cli-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damassi%2Fagent-chat-cli-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/damassi","download_url":"https://codeload.github.com/damassi/agent-chat-cli-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damassi%2Fagent-chat-cli-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28635123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T14:50:40.221Z","status":"ssl_error","status_checked_at":"2026-01-21T14:48:59.225Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-01-21T15:05:31.082Z","updated_at":"2026-01-21T15:05:31.891Z","avatar_url":"https://github.com/damassi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Agent Chat CLI\n\nThis is the Python version of [agent-chat-cli](https://github.com/damassi/agent-chat-cli), which uses the [claude-agent-sdk](https://github.com/anthropics/claude-agent-sdk-python) under the hood. Terminal UI is built on top of the very impressive [Textual](https://textual.textualize.io/).\n\nhttps://github.com/user-attachments/assets/865cfed5-7f6f-4db6-a5aa-ef2909eedbf6\n\n## Why?\n\nThis tool is for those who want slightly more behavioral control over their MCP servers via configurable system prompts, and a minimal terminal-based MCP form factor for interaction.\n\nMany different things are possible here thanks to the underlying Claude Agent SDK -- think of this as a light-weight `claude-code` -- but the main purpose, at least for me, is a simple and performant MCP interface to whatever tools I typically use day-to-day, something that lives outside of an editor or `claude` itself.\n\n\u003e **Note**: The Python/Textual version is visually sturdier than the Node.js/React Ink version. No more crazy Node.js terminal jank in long-running sessions!\n\n## Setup\n\nThis app uses [uv](https://github.com/astral-sh/uv) for package management so first install that. Then:\n\n```bash\ngit clone https://github.com/damassi/agent-chat-cli-python.git\n\n# Install deps and setup .env\nmake install\n```\n\nUpdate the `.env` with your `ANTHROPIC_API_KEY` and then run:\n\n```bash\n# Start the agent\nmake agent\n\n# Alternatively, if in dev (see below)\nmake dev\n```\n\nAdditional MCP servers are configured in `agent-chat-cli.config.yaml` and prompts added within the `prompts` folder.\n\n## Development\n\n- Install pre-commit hooks via [pre-commit](https://pre-commit.com/)\n  - `uv run pre-commit install`\n- Type-checking is via [ty](https://github.com/astral-sh/ty):\n  - `make type-check`\n- Linting and formatting is via [Ruff](https://docs.astral.sh/ruff/)\n  - `make lint`\n- Testing is via [pytest](https://docs.pytest.org/):\n  - `make test`\n\nSee [docs/architecture.md](docs/architecture.md) for an overview of the codebase structure.\n\n### Textual Dev Console\n\nTextual has an integrated logging console that one can boot separately from the app to receive logs.\n\nIn one terminal pane boot the console:\n\n```bash\nmake console\n```\n\n\u003e Note: this command intentionally filters out more verbose notifications. See the Makefile to configure.\n\nAnd then, in a second terminal pane, start the textual dev server:\n\n```bash\nmake dev\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamassi%2Fagent-chat-cli-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdamassi%2Fagent-chat-cli-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamassi%2Fagent-chat-cli-python/lists"}