Official plugin for building with InsForge in Claude Code.
In Claude Code, run:
/plugin marketplace add InsForge/InsForge
Then install the plugin:
/plugin install insforge
/plugin install https://github.com/InsForge/InsForge/claude-plugin
cd ~/.claude-plugins
git clone https://github.com/InsForge/InsForge.git
ln -s InsForge/claude-plugin insforgeAutomatically activates when designing database schemas. Includes:
- Social Graph Patterns - Follows, likes, and social relationships
- Junction Tables - Many-to-many relationships with proper indexes
- Nested Comments - Self-referential hierarchical data
- Multi-Tenant Patterns - Organization-scoped data with RLS
- Best Practices - Foreign keys, indexes, Row Level Security
Once installed, the skill automatically loads when relevant:
Example:
You: "I need to build a social media app with follows and likes"
Claude: [Automatically loads insforge-schema-patterns]
"I'll use the Social Graph pattern from InsForge best practices:
CREATE TABLE follows (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
follower_id UUID REFERENCES users(id) ON DELETE CASCADE,
following_id UUID REFERENCES users(id) ON DELETE CASCADE,
created_at TIMESTAMPTZ DEFAULT NOW(),
UNIQUE(follower_id, following_id)
);
..."
No special commands needed - Claude knows when to use it based on your conversation!
Skills are folders containing instructions and examples that Claude automatically loads when they're relevant to the task. Think of them as giving Claude domain expertise in specific areas.
The insforge-schema-patterns skill teaches Claude:
- Proven database design patterns for common use cases
- How to write efficient PostgREST queries with the InsForge SDK
- Best practices for security (RLS policies)
- Performance optimization (indexes, query patterns)
We're planning to add:
insforge-fullstack-templates- Complete app templates (Instagram, Todo, Blog)insforge-edge-functions- Serverless function recipesinsforge-realtime- WebSocket and live collaboration patterns
Want to improve the skills or add new ones?
- Fork the repository
- Edit or add skills in
claude-plugin/skills/ - Test locally by installing from your fork
- Submit a PR
Skills are just Markdown files with YAML frontmatter - easy to contribute!
Found an issue or have a suggestion? Open an issue or join our Discord.
MIT - Same as InsForge