
insforge/agent-skills
4 skills43.1k installs108 starsGitHub
Install
npx skills add https://github.com/insforge/agent-skillsSkills in this repo
1InsforgeInsForge (audio guide) is a phase-specific agent skill for solo builders adding voice features to InsForge-backed apps. It explains how to align user-facing naming with OpenRouter’s Speech-to-Text, Text-to-Speech, and chat-completion audio input, then implement the InsForge pattern: upload source audio to Storage first, transcribe or synthesize from server-side code, and persist URLs, keys, transcripts, and provider metadata in your schema. You avoid leaking API details in client bundles and keep long-running transcription jobs auditable. Use it when scaffolding podcasts, voice notes, accessibility playback, or agent tools that need durable audio assets—not when you only need a one-off curl test without storage or rows.12.8kinstalls2Insforge CliInsForge CLI is an agent skill for managing InsForge Backend-as-a-Service projects entirely through the command line. Solo builders install it when they want agents to provision projects, run SQL and migrations, tune RLS policies, deploy frontends, set secrets, configure Stripe, or spin isolated backend branches without mixing global CLI versions. The skill stresses always invoking npx @insforge/cli, verifying whoami and current at session start, and using declarative insforge.toml for auth redirects applied via config apply. It explicitly defers application code using @insforge/sdk to the companion insforge skill, keeping this package focused on infrastructure operations and risky change isolation through branch merge workflows. Version metadata in the skill points to 1.5.0-era capabilities across schedules, logs, diagnostics, and import/export.12.7kinstalls3Insforge DebugInsForge Debug guides solo builders through structured diagnosis on InsForge-backed projects when something breaks in production, staging, or local dev, or when you want a proactive audit before launch. It combines observability surfaces—logs, metrics, db-health, advisor, policies, metadata, error objects, deploy state, and AI assist—with Symptom Recipes that tell you which primitive to run next for common patterns like gateway timeouts, edge function failures, login errors, or RLS blocks. The fastest path for a concrete error message or URL is CLI diagnose with AI suggestions, but the skill expects you to verify recommendations against the cited primitives before changing policy or schema. Reactive use fits Operate when users report failures; proactive recipes fit Ship security review and pre-launch readiness. Requires InsForge in the stack and comfort running npx CLI commands against your project.9.2kinstalls4Insforge IntegrationsInsForge Integrations is an agent skill that documents how solo builders connect Auth0 and InsForge in a Next.js app without guessing token shapes or RLS hooks. Auth0 signs an InsForge-compatible JWT inside a Post Login Action, embeds it as a custom claim on the ID token, and the app passes that value to the InsForge client as edgeFunctionToken so server-side rules can read sub for Row Level Security. The guide names concrete packages—@auth0/nextjs-auth0 v4+ and @insforge/sdk—and sequences dashboard steps that cannot be automated alongside CLI project link or create flows. You install dependencies, configure .env.local, implement middleware and layout boundaries, and stand up InsForge tables with requesting_user_id() before building CRUD features. It is aimed at indie SaaS builders who want managed auth plus a InsForge-backed data layer in one stack. Expect manual Auth0 Dashboard work for callbacks, secrets, and the custom Action code the skill supplies.8.5kinstalls