Install
openclaw skills install app-builderClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Build, edit, and deploy Instant-backed apps using npx instant-cli, create-instant-app (Next.js + Codex), GitHub (gh), and Vercel (vercel). Use when asked to create a new app, modify an existing app, fix bugs, add features, or deploy/update an app. Projects live under ~/apps; always work inside the relevant app folder.
openclaw skills install app-builderYou have access to:
npx instant-clighvercelIf you use these tools, and find out that you don't have them or are not logged in, prompt the user to install them and log in.
All apps live in: ~/apps
~/apps/<app-name>.AGENTS.md in the repo root; also read ~/apps/<app-name>/AGENTS.md if it exists.main.Pick an app folder name
~/apps exists.~/apps/<app-name>.Create an Instant appId + token
npx instant-cli init-without-filesappId and token.Generate the Next.js app
~/apps (because the command creates the project folder):
cd ~/appsnpx create-instant-app <app-name> --next --codex --app <appId> --token <token>Initialise git + GitHub repo (if needed)
~/apps/<app-name>:
git init (if not already)git add -A && git commit -m "Init" (if needed)gh repo create <repo-name> --private --source . --remote origin --push
--public if the user requests.Vercel: create/link project and deploy
~/apps/<app-name>:
vercel link (or vercel project add / vercel depending on prompts)vercel --prodImplement requested changes
Commit + push (main)
git add -Agit commit -m "<clear message>"git push -u origin mainDeploy update
vercel --prodcd ~/apps/<app-name>AGENTS.md.git checkout main && git pullmain.vercel --prod).When you first push to vercel, it likely won't have environment variables. Use the CLI to push the environment variables you do have in the local .env file.
create-instant-app created the repo + remote already, do not re-create it—just ensure origin exists and main is pushed.When you start using this skill, send a message saying "Okay, getting ready to use my app builder skill".
Then send period updates as you make progress. Building an app takes a while. Make it fun for the user.