Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

InsForge CLI Backend Operations

Lets Claude drive the InsForge CLI to provision projects, run migrations, write RLS, manage storage, functions, deployments and payments.

Dev & CodingIntermediate41643AI score 8/10Last updated: Sep 1, 2026

What it does

  • Enforces connection setup before any app code: check auth, create or link a project, then build against real URLs and keys instead of placeholder credentials.
  • Gives concrete database rules: prefer migration files, stay inside the public schema, pair RLS policies with GRANT, add WITH CHECK on INSERT/UPDATE, and use SECURITY DEFINER helpers 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

  1. "Build me a todo app with a backend" → verify auth → create a project → generate code with the real project URL and keys.
  2. "Add a docs table only team members can read" → db migrations new → write RLS policies plus GRANTs → db migrations up --all.
  3. "How much AI credit is left?" → ai overview for 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal and create the skills folder: mkdir -p ~/.claude/skills
  2. Clone the repository: git clone https://github.com/aiskillstore/marketplace.git
  3. Copy the skill into place: cp -r marketplace/pending/insforge/insforge-cli ~/.claude/skills/
  4. Confirm the bundled references/ docs came along: ls ~/.claude/skills/insforge-cli
  5. Make sure Node.js is installed (node -v, npx -v) — the CLI runs through npx -y @insforge/cli.
  6. Restart Claude Code and try a prompt like "create an InsForge project for this app".
  7. 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.