Build a Git product
Amendable hosts repositories. You ship the product. Typical shapes:
- Internal Git portal with your review rules
- AI coding product that creates a repo per session
- Vertical Git (CAD, packages, maker files) with your own viewer
- Git embedded in a SaaS, one repo per customer
Suggested backend loop
Section titled “Suggested backend loop”- When a customer (or agent session) starts,
POST /v1/repositorieswith a unique name. - Mint a
SELECTED_REPOtoken withGIT_HTTP_READ/GIT_HTTP_WRITEfor that repo only, or exchange OIDC from the runner. - Hand the clone URL plus credentials to the agent or to your UI.
- Register an account webhook once. On
push, run your pipeline (tests, CAD export, preview). - When the session ends,
DELETEthe repo if it was ephemeral.
What you should not rebuild
Section titled “What you should not rebuild”| Problem | Use |
|---|---|
| Git storage | Amendable HTTPS remotes |
| Auth for agents | Access tokens or OIDC exchange |
| Notify CI | Webhooks + HMAC |
| Object location | Platform S3 or BYO |
| Human glance at files | https://amendable.io/r/... while you build a nicer UI |
What you still own
Section titled “What you still own”- Accounts, billing, and permissions for your customers
- Review UI, diffs, comments
- Build runners
- Domain-specific previews (STL, packages, notebooks)
Platform plan is the catalog SKU aimed at ISVs (500 active repos, 200 GiB, 500 GiB transfer). Talk to support@amendable.io if you need SSO or committed volume.
Amendable does not train models on your repositories. You own your Content.