{"id":51177004,"url":"https://github.com/streamplace/atmoq","last_synced_at":"2026-06-27T05:00:14.113Z","repository":{"id":363952169,"uuid":"1265662050","full_name":"streamplace/atmoq","owner":"streamplace","description":null,"archived":false,"fork":false,"pushed_at":"2026-06-27T03:07:05.000Z","size":445,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-27T04:16:12.188Z","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/streamplace.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":"2026-06-11T01:22:45.000Z","updated_at":"2026-06-27T03:06:53.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/streamplace/atmoq","commit_stats":null,"previous_names":["streamplace/atmoq"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/streamplace/atmoq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamplace%2Fatmoq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamplace%2Fatmoq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamplace%2Fatmoq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamplace%2Fatmoq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/streamplace","download_url":"https://codeload.github.com/streamplace/atmoq/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/streamplace%2Fatmoq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34841990,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-27T02:00:06.362Z","response_time":126,"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":"2026-06-27T05:00:12.902Z","updated_at":"2026-06-27T05:00:14.063Z","avatar_url":"https://github.com/streamplace.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# atmoq: Streamplace's atproto-over-media-over-quic-transport implementation\n\nAn [atproto](https://atproto.com) relay that speaks [MoQ](https://datatracker.ietf.org/doc/draft-ietf-moq-transport/)\nto its subscribers, implementing the ideas in\n[ATOM (draft-nandakumar-atproto-atom)](https://datatracker.ietf.org/doc/draft-nandakumar-atproto-atom/).\nRust first; TypeScript (browser + server) to follow.\n\nStatus: early prototype. One binary, `atmoq`, with a\n[goat](https://github.com/bluesky-social/goat)-shaped CLI:\n\n```\natmoq firehose                                  # tail the atproto firehose over MoQ\n                                                # (default: https://streamplace.network)\natmoq firehose --ops                            # ...as individual record operations\natmoq firehose --relay-host wss://bsky.network  # plain WS consumer, like goat firehose\natmoq serve                                     # host your own: WS ingest -\u003e MoQ fanout,\n                                                # with a landing page (see docs/going-live.md)\natmoq relay --moq-host https://cdn.moq.dev/anon/\u003cscope\u003e    # bridge through a public MoQ relay\natmoq relay --moq-host https://relay.cloudflare.mediaoverquic.com \\\n            --dialect ietf-07 --broadcast \u003cscope\u003e          # ...including Cloudflare's (draft-07)\n```\n\nOn Windows (and other hosts where a wildcard IPv6 socket can't reach IPv4),\nadd `--client-bind 0.0.0.0:0` if you see `sendmsg error ... 10049` /\n`AddrNotAvailable`.\n\nFrames are republished byte-for-byte — verified against the live Bluesky\nfirehose through both kixelated's public CDN (moq-lite) and Cloudflare's\npublic relay (draft-07 dialect). Both legs auto-reconnect on the lite path,\nthe upstream cursor persists via `--cursor-file`, and consumers survive\npublisher restarts. See [docs/going-live.md](docs/going-live.md) for running\nthis as a service.\n\n```\njust live-relay      # wss://bsky.network -\u003e cdn.moq.dev/anon/atmoq-demo\njust live-tail       # cdn.moq.dev -\u003e stdout, from anywhere\njust live-relay-cf   # same, via Cloudflare's relay (draft-07)\njust live-tail-cf\njust test            # cargo test + Dockerized e2e (PLC + PDS + indigo oracle + MoQ leg)\n```\n\n- [PLAN.md](PLAN.md) — implementation plan, milestones, open questions\n- [docs/atom-spec-notes.md](docs/atom-spec-notes.md) — review of the ATOM draft against\n  the atproto specs; intended deviations\n- [docs/decisions/](docs/decisions/) — decision records (transport stack, etc.)\n- [docs/diag/](docs/diag/) — public-relay compatibility findings\n- [tests/e2e/](tests/e2e/) — Dockerized differential test harness\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstreamplace%2Fatmoq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstreamplace%2Fatmoq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstreamplace%2Fatmoq/lists"}