Agent Skills for InsForge
npx skills add https://github.com/insforge/insforge-skills --skill insforge-integrationsقم بتثبيت هذه المهارة باستخدام واجهة سطر الأوامر (CLI) وابدأ في استخدام سير عمل 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:
npx @insforge/cli ai setup for key setup, image/video generation, embeddings, deprecated InsForge SDK fallbackKey distinction: Backend infrastructure uses the CLI skill. Most client integration uses @insforge/sdk; new AI features use OpenRouter with the OpenAI SDK and an API key set up with npx @insforge/cli ai setup.
Create and manage InsForge projects from the command line. This skill provides comprehensive guidance for:
npx @insforge/cli ai setupKey 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
│ ├── payments/
│ │ ├── 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
│ ├── payments.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 app-facing SDKs/APIs in application code. For AI, this means OpenRouter through the OpenAI SDK, with the old insforge.ai module only as a deprecated fallback.backend-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.