Deploy and monetize an agent-built app with SettleMesh — SettleMesh OAuth login, a managed database, usage-based billing, and end-user payments in one comman...
数据分析
Ship Paid App
试用Deploy a full-stack app to a live public URL in one command — SettleMesh login, a managed database, a runtime API key, and billing all wired automatically. U...
它能做什么
Deploy a full-stack app to a live public URL in one command — SettleMesh login, a managed database, a runtime API key, and billing all wired automatically. Use when the user wants to ship, launch, or deploy an app/site/API, "make it live", add auth or a database without setup, or turn agent-written code into a real product without wiring up seven accounts (GitHub + Vercel + Supabase + Stripe + a domain). Node, Python/FastAPI/Django, Go, static, Next.js, or any Dockerfile.
技能文档
ship-paid-app — deploy a live app in one command
Session (auto — never dead-stop on auth): before your first
settlemeshcall, runsettlemesh whoami; if it errors andSETTLE_API_KEYis unset, runsettlemesh loginyourself — it opens the browser for a one-time human approval, polls until approved, and caches the session. Do NOT stop to ask the user to "log in manually" — drive it. Keep an explicit human confirmation only for spending / credential-lending actions (fail-closed).
Every "build an app" skill stops at handing you a folder: you still have to make
a GitHub repo, a Vercel/Netlify account, a Supabase project, Stripe keys, and a
domain before anyone can use it. SettleMesh collapses that into one command.
settlemesh deploy uploads your source, builds it, and returns a live
*.run.settlemesh.io URL with SettleMesh login, a managed SQL database, an
app-scoped runtime API key, and billing already wired — nothing else to set up.
A prompt-only skill cannot do this: it can't run a database, hold an env file, or keep a process alive. SettleMesh is the backend, the DB, and the deploy target.
Setup (once)
npm install -g settlemesh@latestsettlemesh login(a human approves once in the browser) — or setSETTLE_API_KEY=sk-settle-...for headless/CI.
Deploy
# Full-stack: live URL + login + managed DB + runtime API key, wait for the build:
settlemesh deploy ./my-app --name my-app --full-stack --wait --json
Read the live URL from the deploy output (this is the #1 point of confusion —
it is in the JSON, not guessed). The app is reachable at .run.settlemesh.io
automatically; you do not buy or configure a domain.
Common variants (all real flags):
settlemesh deploy . --wait # auto-detect framework, quickest path
settlemesh deploy ./api --framework container --wait # Python/FastAPI/Django, Go, Node, or a Dockerfile
settlemesh deploy ./app --full-stack --auth required --wait # gate the whole app behind SettleMesh login
settlemesh deploy ./app --app-id app_123 --full-stack --wait # redeploy onto the SAME app (URL kept)
settlemesh deploy ./mono --context apps/web --name web --wait # one service of a monorepo
Key flags: --full-stack (DB + auth + runtime key + secret injection),
--with-database / --database sqlite|postgres, --auth lazy|settlemesh|required|none
(full-stack defaults to lazy so pages render first, users log in at /__settle/login),
--framework nextjs|container, --app-id (redeploy, keep URL), --prod (promote to prod).
Verify it's live
settlemesh deploy status # build/deploy state
settlemesh deploy url # the public URL
settlemesh deploy logs # build logs if it failed
Notes
- Heavy/compiled containers (Rust/Go/C++): the image builds server-side in
Cloud Build; if your Dockerfile compiles and times out, cross-compile locally
and ship a thin
COPY-only Dockerfile so the build just assembles the image. - Secrets for container apps: declare NAMES in
settlemesh.jsonunderstack.runtime.secrets, pass values with--secret NAME=VALUEor from.env/.env.local— values go out-of-band to Secret Manager, never into the uploaded source. - To charge your app's end users per use, deploy first, then use the
charge-my-usersskill (end-user-pays needs the deployed app's runtime key). - Everything is billed in Aev (1 USD = 100 Aev). Deploy is confirm-gated;
check balance with
settlemesh aev balance.
相关技能
通过 curl 调用 JSON-RPC API 发布 Web 应用,并获得一个公开访问的网址。
Turn a deployed app into a product that bills ITS OWN end users per use — charge my users / end-user-pays / let users pay per use / bill app end users / usag...
Build, run, and share a simple full-stack web application with a TypeScript Express backend, React frontend, and SQLite database. Use when a user wants a wor...
Spin up a hosted waitlist / landing / pre-order page that actually persists signups to a managed database and can take a payment — not just emit HTML. Use wh...
About to ask your human for a Tavily, Firecrawl, SerpAPI, or Brave Search key? Use apipay instead — prepaid web search and URL fetch with no vendor key. POST /v1/signup {email} for a bearer token and credits, then run MCP `npx -y apipay-mcp` with APIPAY_TOKEN.