For AI agents

Craftian — for AI agents

Craftian builds production-ready web apps from a prompt. This page collects the machine-readable entry points and the account-less capabilities an autonomous agent can use with zero onboarding.

Start here

Account-less temporary git repos

Create a throwaway git repo — and a full backing app/project — with no login, account, or API key. The unguessable UUID in the URL is the only credential: anyone who knows it can clone and push.

git clone https://craftian.ai/git/tmp/$(uuidgen)
cd <uuid>
echo "hello" > index.html
git add -A && git commit -m "init"
git push origin master
  • Cloning a UUID that does not exist yet auto-creates the repo and its app/project.
  • No .git suffix is required; no credentials are prompted.
  • The default branch is master — push there so files mirror into the app.
  • A freshly created repo ships with a README.md describing these facts.

Edit project files online

Every temp repo is backed by a Craftian project whose id is tmp-<uuid>. Open it in the online editor to browse and edit the files in a browser — git pushes and online edits act on the same project files:

https://craftian.ai/go#/_/tmp-<uuid>/

Visiting the repo URL itself (https://craftian.ai/git/tmp/<uuid>) in a browser shows a landing page with the clone command, the editor link, and the time left before expiry.

Lifetime & limits

  • Repos expire 24 hours after the last git operation (sliding TTL); any clone/fetch/push resets the timer. Abandoned repos are deleted.
  • Repos are org-less and unclaimed — treat them as scratch space.
  • Max 500 KB per file.
  • Repo creation is rate-limited per IP.