docs: Artifacts repos live on Cloudflare, not GitHub#47
Merged
jonnyparris merged 1 commit intomainfrom Apr 24, 2026
Merged
Conversation
The README and architecture diagrams described per-session Artifacts repos as GitHub repos/forks. They're actually Cloudflare Artifacts (hosted at artifacts.cloudflare.net) — a separate beta product from Cloudflare, git-compatible but not GitHub-hosted. Also clarified that auto-draft-PRs on GitHub are a separate feature scoped to orchestrated dispatch runs against user-configured GitHub repos, not Artifacts. - README.md: fix both mentions of 'GitHub' around Artifacts - docs/architecture.svg: 'Per-session GitHub repo' -> Cloudflare repo - docs/how-it-works.svg: 'flushed to GitHub' -> flushed to Cloudflare - docs/use-cases.svg: 'GitHub repo' card text -> Cloudflare git repo
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ❌ Deployment failed View logs |
dodo | e5ba521 | Apr 24 2026, 09:05 PM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The README and architecture diagrams mis-described per-session Artifacts repos as GitHub repos or GitHub forks. They're actually Cloudflare Artifacts — a git-compatible storage product hosted at
artifacts.cloudflare.net, separate from GitHub.What changed
Why
The code in `src/coding-agent.ts` uses `env.ARTIFACTS.create(name)` — Cloudflare's beta Artifacts binding — to create a per-session repo. These repos live at `artifacts.cloudflare.net` and are cloneable via standard git with a repo-scoped token. No GitHub involvement at all.
The GitHub auto-draft-PR code path is entirely separate (`src/github-pr.ts`), only fires during orchestrated dispatch runs (`dispatch_repo_prompt`), and explicitly parses `github.com` URLs from a user-configured repo.
beep-boop-🤖