{"id":32544457,"url":"https://github.com/cdzombak/ghfeed","last_synced_at":"2026-05-18T05:47:02.074Z","repository":{"id":314922136,"uuid":"1057349120","full_name":"cdzombak/ghfeed","owner":"cdzombak","description":"GitHub activity feed consolidator","archived":false,"fork":false,"pushed_at":"2026-05-01T15:25:18.000Z","size":150,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-01T16:27:14.464Z","etag":null,"topics":["atom","github","rss"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cdzombak.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-15T15:55:12.000Z","updated_at":"2026-05-01T15:25:23.000Z","dependencies_parsed_at":"2025-09-15T17:44:56.335Z","dependency_job_id":"644a0786-9b75-4fc9-922e-698e6cdb2332","html_url":"https://github.com/cdzombak/ghfeed","commit_stats":null,"previous_names":["cdzombak/ghfeed"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/cdzombak/ghfeed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Fghfeed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Fghfeed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Fghfeed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Fghfeed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cdzombak","download_url":"https://codeload.github.com/cdzombak/ghfeed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Fghfeed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33166885,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T05:43:36.989Z","status":"ssl_error","status_checked_at":"2026-05-18T05:43:19.133Z","response_time":71,"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":["atom","github","rss"],"created_at":"2025-10-28T17:59:44.171Z","updated_at":"2026-05-18T05:47:02.069Z","avatar_url":"https://github.com/cdzombak.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ghfeed\n\nA GitHub activity feed consolidator that transforms verbose GitHub Atom feeds into clean, readable summaries.\n\n## Features\n\n- **Commit Consolidation**: Groups multiple commits by repository and branch into single entries\n- **Activity Simplification**: Converts verbose GitHub HTML into clean, minimal descriptions\n- **Data Preservation**: Maintains all commit messages, links, and essential metadata\n- **HTML Output**: Generates properly formatted entries with clickable links\n\n### What It Does\n\n| Before | After |\n|--------|-------|\n| 20+ individual \"pushed\" entries cluttering your feed | Clean consolidated entries like \"cdzombak pushed 15 commits to dotfiles/master\" |\n| Verbose GitHub HTML with excessive markup | Simple entries like \"cdzombak opened PR #264 in mmcdole/gofeed\" |\n\nThe program processes these GitHub activities:\n- Push/commit consolidation by repository and branch\n- Pull request creation and merging\n- Repository forks\n- Branch and tag management\n- Other GitHub activities\n\n### Output\n\nGenerates a clean Atom/RSS/JSON feed with:\n- Consolidated commit entries showing individual commit messages and links\n- Simplified non-commit activities with essential information preserved\n\nPerfect for making GitHub activity feeds more readable in feed readers.\n\n\u003e [!NOTE]  \n\u003e Real-world output feed example: [dzombak.com/feeds/github-cdzombak.atom](https://www.dzombak.com/feeds/github-cdzombak.atom)\n\n## Usage\n\n```bash\nghfeed [options] \u003cfeed-url\u003e  \u003e /path/to/output.atom\n```\n\n### Options\n\n- `-format rss|json|atom`: Set the format of the output feed\n- `-retitle \"new title\"`: Set the title of the output feed\n\n### Docker\n\n```shell\ndocker run --rm cdzombak/ghfeed:1 \u003cfeed-url\u003e  \u003e /path/to/output.atom\n```\n\n## Installation\n\n## Debian via apt repository\n\nSet up my `oss` apt repository:\n\n```shell\nsudo mkdir -p /etc/apt/keyrings\ncurl -fsSL https://dist.cdzombak.net/keys/dist-cdzombak-net.gpg -o /etc/apt/keyrings/dist-cdzombak-net.gpg\nsudo chmod 644 /etc/apt/keyrings/dist-cdzombak-net.gpg\nsudo mkdir -p /etc/apt/sources.list.d\nsudo curl -fsSL https://dist.cdzombak.net/cdzombak-oss.sources -o /etc/apt/sources.list.d/cdzombak-oss.sources\nsudo chmod 644 /etc/apt/sources.list.d/cdzombak-oss.sources\nsudo apt update\n```\n\nThen install `ghfeed` via `apt-get`:\n\n```shell\nsudo apt-get install ghfeed\n```\n\n## Homebrew\n\n```shell\nbrew install cdzombak/oss/ghfeed\n```\n\n## Manual from build artifacts\n\nPre-built binaries for Linux and macOS on various architectures are downloadable from each [GitHub Release](https://github.com/cdzombak/ghfeed/releases). Debian packages for each release are available as well.\n\n## License\n\nGNU GPL v3; see [LICENSE](LICENSE) in this repo for details.\n\n## Author\n\nChris Dzombak\n- [dzombak.com](https://www.dzombak.com)\n- [GitHub @cdzombak](https://github.com/cdzombak)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdzombak%2Fghfeed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcdzombak%2Fghfeed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdzombak%2Fghfeed/lists"}