InsForge CLI Backend Operations
Lets Claude drive the InsForge CLI to provision projects, run migrations, write RLS, manage storage, functions, deployments and payments.
Dev & CodingIntermediate★ 416⑂ 43AI score 8/10Last updated: Sep 1, 2026
What it does
- Enforces connection setup before any app code: check auth,
createorlinka project, then build against real URLs and keys instead of placeholder credentials. - Gives concrete database rules: prefer migration files, stay inside the
publicschema, pair RLS policies withGRANT, addWITH CHECKon INSERT/UPDATE, and useSECURITY DEFINERhelpers to avoid policy recursion. - Provides a full command-routing table: storage buckets & S3 keys, edge functions, schedules, secrets, backups/restore, instance resize, orgs & members, billing/usage, AI Gateway (OpenRouter) credit checks, Stripe/Razorpay payments, PostHog, Apify scraping, branches, logs and diagnostics.
- Makes agent memory (
memory list/recall/remember) a reflex so decisions and gotchas persist across sessions. - Keeps destructive operations (project/org delete, backup restore) human-in-the-loop and forbids auto-bypassing confirmations.
Who it's for
- Fullstack/frontend developers already building on InsForge.
- Solo builders and startups who want an agent to handle provisioning and migrations.
- Teams that need non-interactive backend setup in headless or CI environments.
Examples
- "Build me a todo app with a backend" → verify auth →
createa project → generate code with the real project URL and keys. - "Add a docs table only team members can read" →
db migrations new→ write RLS policies plus GRANTs →db migrations up --all. - "How much AI credit is left?" →
ai overviewfor total spend, limit, remaining credit and per-model activity.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/aiskillstore/marketplace/HEAD/pending/insforge/insforge-cli/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the pending/insforge/insforge-cli folder from the GitHub repo aiskillstore/marketplace into my ~/.claude/skills/insforge-cli/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/aiskillstore/marketplace.git && mkdir -p ~/.claude/skills && cp -r marketplace/pending/insforge/insforge-cli ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and create the skills folder:
mkdir -p ~/.claude/skills - Clone the repository:
git clone https://github.com/aiskillstore/marketplace.git - Copy the skill into place:
cp -r marketplace/pending/insforge/insforge-cli ~/.claude/skills/ - Confirm the bundled
references/docs came along:ls ~/.claude/skills/insforge-cli - Make sure Node.js is installed (
node -v,npx -v) — the CLI runs throughnpx -y @insforge/cli. - Restart Claude Code and try a prompt like "create an InsForge project for this app".
- For headless/CI use, create a user API key in the dashboard (Profile → API Keys) and pass it via environment variables. Treat InsForge API keys as full-access admin keys: keep them server-side only.