Agent Skills for InsForge
npx skills add https://github.com/insforge/agent-skills --skill insforge-cliCLI を使用してこのスキルをインストールし、ワークスペースで SKILL.md ワークフローの使用を開始します。
Agent Skills to help developers using AI agents build applications with InsForge Backend-as-a-Service.
npx skills add insforge/insforge-skills
/install-skills insforge/insforge-skills
Build full-stack applications with InsForge. This skill provides comprehensive guidance for:
Key distinction: Backend configuration uses HTTP API calls to the InsForge project URL. Client integration uses the @insforge/sdk in application code.
Create and manage InsForge projects from the command line. This skill provides comprehensive guidance for:
Key distinction: Use this skill for infrastructure management via @insforge/cli. For writing application code with the InsForge SDK, use the insforge skill instead.
Diagnose errors, bugs, and performance issues in InsForge projects. This skill guides diagnostic command execution for:
Key distinction: This skill guides diagnostic command execution to locate problems — it does not provide fix suggestions.
Integrate third-party authentication providers with InsForge for Row Level Security (RLS). Each integration covers JWT configuration, token signing, and InsForge client setup:
getToken() flowKey distinction: Use these guides when connecting an external auth provider to InsForge. For InsForge's built-in authentication, use the insforge skill instead.
Once installed, AI agents can access InsForge-specific guidance when:
@insforge/sdk into frontend applicationsEach skill follows the Agent Skills Open Standard:
skills/
├── insforge/
│ ├── SKILL.md # Main skill manifest and overview
│ ├── database/
│ │ ├── sdk-integration.md
│ │ └── backend-configuration.md
│ ├── auth/
│ │ ├── sdk-integration.md
│ │ └── backend-configuration.md
│ ├── storage/
│ │ ├── sdk-integration.md
│ │ └── backend-configuration.md
│ ├── functions/
│ │ ├── sdk-integration.md
│ │ └── backend-configuration.md
│ ├── ai/
│ │ ├── sdk-integration.md
│ │ └── backend-configuration.md
│ ├── realtime/
│ │ ├── sdk-integration.md
│ │ └── backend-configuration.md
│ └── deployments/
│ └── workflow.md
├── insforge-cli/
│ ├── SKILL.md # CLI skill manifest and command reference
│ └── references/
│ ├── login.md
│ ├── create.md
│ ├── db-query.md
│ ├── db-export.md
│ ├── db-import.md
│ ├── functions-deploy.md
│ └── deployments-deploy.md
├── insforge-debug/
│ └── SKILL.md # Debug & diagnostics skill
└── insforge-integrations/
├── auth0/
│ └── SKILL.md # Auth0 integration guide
├── clerk/
│ └── SKILL.md # Clerk integration guide
├── kinde/
│ └── SKILL.md # Kinde integration guide
├── stytch/
│ └── SKILL.md # Stytch integration guide
└── workos/
└── SKILL.md # WorkOS integration guide
sdk-integration.md: How to use @insforge/sdk in frontend application codebackend-configuration.md: How to configure InsForge backend via HTTP APITo create or improve skills, first install the skill-creator tool:
npx skills add anthropics/skills -s skill-creator
See CONTRIBUTING.md for guidelines on adding or improving skills.
MIT License - see LICENSE for details.