openpouch ๐ฆ
We never ask if you're human.
The agent-native hosting platform โ built for coding agents, not walled against them. Your coding agent says "deploy this," and it does: one command, no account, no dashboard, no CAPTCHA. openpouch runs your app on its own infrastructure and hands your human back a live URL and a plain-language summary.
Your app is the joey; openpouch carries it safely. ๐ฆ
Status: technical preview. openpouch@0.2.5 is on npm and the instant lane (npx openpouch deploy) is live on openpouch's own infrastructure โ static sites and real Node.js apps in hardened containers, with server-side build-on-deploy. Expect rough edges and changing APIs while we dogfood toward a broader launch โ feedback and issues welcome.
Why
AI coding agents already initiate >30% of weekly deployments on major platforms โ but every platform is human-first with agent features bolted on. Agents fight browser OAuth, interactive prompts, account-wide tokens, human-prose logs, and they lose deployment truth between sessions. The humans operating them have no policy layer: nothing enforces "previews are autonomous, production needs my approval."
openpouch is the missing combination: open source + agent-native + governed deployment lifecycle.
Quickstart
Deploy any folder to a live URL in one command โ no account, no provider key, no setup:
npx openpouch deploy
You get a live https://<slug>.openpouch.sh preview plus a claim link. The agent deploys autonomously; a human claims the preview via the link (unclaimed previews vanish after 72 h). openpouch writes the deployment truth (deploy.manifest.json, deploy.evidence.json, DEPLOYMENT.md) back into your repo, so any agent can pick up where the last one left off.
Prefer your own provider? openpouch can also drive Render or Vercel (BYO): openpouch init detects your project and maps the existing service, then openpouch preview / openpouch prod run the same governed pipeline (previews autonomous, production gated behind a human approval). The product itself, though, is openpouch's own hosting โ see docs/INDEX.md.
What it is
Agent-native hosting: your app runs on openpouch's own infrastructure, wrapped in a governed, agent-readable deployment lifecycle. Every surface is built for agents โ CLI, MCP, the file formats, the claim pages โ with zero human-verification walls.
- CLI (
openpouch init/inspect/plan/preview/prod/approve/verify/logs/rollback) โ zero-config detection,--jsoneverywhere, meaningful exit codes, machine-readable errors with fix hints, and a plain-languagesummaryto relay to your (possibly non-technical) human - MCP server โ the same capabilities as native tools in any MCP-capable agent harness
- Open file formats in the user's repo (the "package.json of deployment"):
deploy.manifest.jsonโ project config, environments, build/start, healthchecks, env-var manifest (names/status, never values)deploy.policy.jsonโ what agents may do per environment; approval rulesDEPLOYMENT.md+deploy.evidence.jsonโ what is live (URL, commit, time, smoke results, rollback anchor)
- Optional BYO adapters โ point openpouch at your own Render or Vercel instead, same governed lifecycle; the product is openpouch's own hosting, not a layer over other clouds
Safety, non-negotiable: read-only by default; previews can be autonomous; production requires a signed, single-use approval granted by a human in an interactive terminal; no delete operations in MVP; secret values never enter model context; full audit trail. Because we run untrusted code on our own infra, abuse is controlled with agent-compatible means (accounts/quotas, rate/resource limits, egress filtering, takedown) โ never CAPTCHAs.
The instant lane (free, ephemeral previews โ openpouch deploy) is live now as a technical preview โ static sites and dynamic Node apps both run today; durable production hosting and self-service billing under the openpouch brand follow. The open-source core (CLI, MCP, adapters, run-d) stays complete and self-hostable forever.
Monorepo layout (actual)
packages/
core/ # manifest & policy schemas, evidence writer, adapter interface
cli/ # openpouch binary (compiled dist + plain-Node launcher)
mcp/ # MCP server over the same core (stdio, 10 tools, no approve tool)
adapter-render/ # Render API adapter (live-verified)
adapter-vercel/ # Vercel API adapter (live-verified incl. redeploy)
adapter-run/ # instant-lane adapter (openpouch-run) + instantDeploy
run/ # run-d โ instant-lane host daemon + account/API-key/quota subsystem
docs/ # product & rebuild-grade documentation (start: docs/INDEX.md)
llms.txt # agent-facing entry point (llmstxt.org format)
Documentation rule (release gate)
All documentation must be complete enough that any developer or AI harness can understand and functionally rebuild the project from the docs alone: business rules, data model with units, full API reference, workflows, architecture, test gates, and a rebuild guide with acceptance criteria โ derived from actual code, with an index separating current truth from history.
License
Apache-2.0 (decided 2026-06-12; explicit patent grant โ see LICENSE and NOTICE).