{"id":46208653,"url":"https://github.com/towry/agpod","last_synced_at":"2026-05-11T07:28:19.875Z","repository":{"id":316216833,"uuid":"1062462469","full_name":"towry/agpod","owner":"towry","description":"agent tools. autonomy agent helper","archived":false,"fork":false,"pushed_at":"2026-04-17T05:22:26.000Z","size":1022,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-17T07:03:02.339Z","etag":null,"topics":["agent-autonomy","agent-tools"],"latest_commit_sha":null,"homepage":"","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/towry.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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":"AGENTS.md","dco":null,"cla":null},"funding":{"github":["towry"],"patreon":null,"open_collective":"towrywang","ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2025-09-23T09:36:49.000Z","updated_at":"2026-04-17T05:14:47.000Z","dependencies_parsed_at":"2026-04-17T07:02:04.361Z","dependency_job_id":null,"html_url":"https://github.com/towry/agpod","commit_stats":null,"previous_names":["towry/minimize-git-diff-llm","towry/agpod"],"tags_count":108,"template":false,"template_full_name":null,"purl":"pkg:github/towry/agpod","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/towry%2Fagpod","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/towry%2Fagpod/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/towry%2Fagpod/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/towry%2Fagpod/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/towry","download_url":"https://codeload.github.com/towry/agpod/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/towry%2Fagpod/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32209895,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T03:15:14.334Z","status":"ssl_error","status_checked_at":"2026-04-24T03:15:11.608Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["agent-autonomy","agent-tools"],"created_at":"2026-03-03T08:24:24.100Z","updated_at":"2026-04-24T05:01:09.537Z","avatar_url":"https://github.com/towry.png","language":"Rust","funding_links":["https://github.com/sponsors/towry","https://opencollective.com/towrywang"],"categories":[],"sub_categories":[],"readme":"# agpod\n\n[![CI](https://img.shields.io/github/actions/workflow/status/towry/agpod/ci.yml?branch=main\u0026label=CI\u0026logo=github)](https://github.com/towry/agpod/actions/workflows/ci.yml)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n[![Rust Version](https://img.shields.io/badge/rust-1.89%2B-orange?logo=rust)](https://www.rust-lang.org)\n\n`agpod` is a Rust CLI for three concrete workflows:\n\n- minimize git diffs for LLM context\n- track exploration work as structured cases\n- print repository paths with Git or Jujutsu branch metadata\n\n## Features\n\n### Diff\n\n- summarize oversized file diffs\n- reduce empty-line noise while preserving patch structure\n- optionally save review chunks with a `REVIEW.md` checklist\n\n### Case\n\n- open, redirect, close, and resume structured exploration cases\n- record findings, decisions, blockers, and ordered execution steps\n- emit machine-readable JSON and support MCP-based automation\n\n### VCS Path Info\n\n- append branch or bookmark metadata to paths\n- filter to repository paths only\n- fit shell pipelines such as `zoxide`, `fzf`, and custom prompts\n\n## Installation\n\n### From source\n\n```bash\ngit clone https://github.com/towry/agpod.git\ncd agpod\ncargo build --release\n```\n\nBuilt binaries:\n\n- `target/release/agpod`\n- `target/release/agpod-mcp`\n\n## Usage\n\n### Diff\n\n```bash\ngit diff | agpod diff\ngit diff | agpod diff --save\ngit diff | agpod diff --save --save-path custom/path\n```\n\nSee [docs/SAVE_OPTION_SUMMARY.md](docs/SAVE_OPTION_SUMMARY.md).\n\n### Case\n\n```bash\nagpod case open \\\n  --goal \"find the root cause\" \\\n  --direction \"inspect the failing path first\"\n\nagpod case current\n\nagpod case step add \\\n  --id C-550e8400-e29b-41d4-a716-446655440000 \\\n  --title \"collect logs\" \\\n  --start\n\nagpod case record \\\n  --id C-550e8400-e29b-41d4-a716-446655440000 \\\n  --kind evidence \\\n  --summary \"captured the failing request\"\n```\n\n### VCS Path Info\n\n```bash\necho \"/path/to/repo\" | agpod vcs-path-info\necho \"/path/to/repo\" | agpod vcs-path-info -f \"{path} [{branch}]\"\nzoxide query --list | agpod vcs-path-info --filter -f \"{path} [{branch}]\" | fzf\n```\n\n## Configuration\n\nGlobal config:\n\n- `$XDG_CONFIG_HOME/agpod/config.toml`\n- `~/.config/agpod/config.toml`\n\nRepo-local override:\n\n- `.agpod.toml`\n\nExample:\n\n```toml\nversion = \"1\"\n\n[log]\nlevel = \"warning\"\n\n[diff]\noutput_dir = \"llm/diff\"\nlarge_file_changes_threshold = 100\nlarge_file_lines_threshold = 500\nmax_consecutive_empty_lines = 2\n\n[case]\nserver_addr = \"127.0.0.1:6142\"\nauto_start = true\naccess_mode = \"local_server\"\nsemantic_recall_enabled = false\nvector_digest_job_enabled = false\n\n[case.plugins.honcho]\nenabled = false\nsync_enabled = true\n# base_url = \"https://api.honcho.dev\"\n# workspace_id = \"ws_123\"\n# api_key = \"honcho_secret\"\n# api_key_env = \"HONCHO_API_KEY\"\n```\n\nSee [examples/config.toml](examples/config.toml) and [docs/case-configuration.md](docs/case-configuration.md).\n\nEnvironment variables still override file config. Common Honcho-related overrides:\n\n- `AGPOD_CASE_HONCHO_ENABLED=true`\n- `AGPOD_CASE_HONCHO_SYNC_ENABLED=true`\n- `AGPOD_CASE_SEMANTIC_RECALL=true`\n- `HONCHO_BASE_URL=https://api.honcho.dev`\n- `HONCHO_WORKSPACE_ID=ws_123`\n- `AGPOD_CASE_HONCHO_API_KEY=...`\n- `AGPOD_CASE_HONCHO_API_KEY_ENV=HONCHO_API_KEY`\n- `HONCHO_API_KEY=...`\n\nLogs default to `warning` and are written under the platform data directory in `agpod/logs/`, for example `~/Library/Application Support/agpod/logs/agpod.log`, `agpod-case-server.log`, and `agpod-mcp.log`.\n\n## Workspace\n\n- `crates/agpod` - CLI entrypoint\n- `crates/agpod-core` - shared configuration helpers\n- `crates/agpod-diff` - diff minimization\n- `crates/agpod-case` - exploration case tracker\n- `crates/agpod-vcs-path` - VCS path formatting\n- `crates/agpod-mcp` - MCP server for case workflows\n\n## Development\n\n```bash\ncargo build\ncargo test\ncargo clippy --all-targets --all-features -- -D warnings\ncargo fmt --all\n```\n\n## License\n\nMIT. See [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftowry%2Fagpod","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftowry%2Fagpod","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftowry%2Fagpod/lists"}