Bootstrap toolkit for new Supabase projects. Use when: (1) Setting up a new Supabase project, (2) Configuring sqlfluff for SQL formatting, (3) Setting up mise task runner, (4) Configuring MCP server for schema access, (5) Initializing project structure
/plugin marketplace add ninyawee/armed-claude/plugin install supabase-skills@armed-claudeThis skill inherits all available tools. When active, it can use any tool Claude has access to.
assets/mise.tomlToolkit for setting up new Supabase projects with proper tooling.
Copy template files to your Supabase project:
cp assets/mise.toml assets/.sqlfluff assets/.mcp.json /path/to/supabase/
Then configure .mcp.json with your project reference.
| File | Purpose |
|---|---|
assets/mise.toml | Task runner (lint, format, psql install) |
assets/.sqlfluff | SQL formatting config |
assets/.mcp.json | MCP server for schema access |
cd your-project/supabase
cp /path/to/skill/assets/* .
Edit .mcp.json and replace PROJECT_REF_PLACEHOLDER with your Supabase project reference:
{
"mcpServers": {
"supabase": {
"type": "http",
"url": "https://mcp.supabase.com/mcp?project_ref=YOUR_PROJECT_REF?read_only=true"
}
}
}
Find your project ref in Supabase Dashboard → Project Settings → General.
# Install mise if not already installed
curl https://mise.run | sh
# Install project tools (sqlfluff, psql)
mise install
# Check sqlfluff
mise run lint
# Check MCP connection (requires Claude Code)
# MCP will auto-connect when querying schema
After bootstrap, your project should have:
supabase/
├── .mcp.json # MCP server config
├── .sqlfluff # SQL formatter config
├── mise.toml # Task runner
├── migrations/ # Schema migrations
└── seed/ # Seed data files
After setup, use mise to run tasks:
mise run lint # Lint SQL files
mise run format # Format SQL files
mise run fix # Lint and auto-fix
mise run install-psql # Install PostgreSQL client
Create employment contracts, offer letters, and HR policy documents following legal best practices. Use when drafting employment agreements, creating HR policies, or standardizing employment documentation.
Implement GDPR-compliant data handling with consent management, data subject rights, and privacy by design. Use when building systems that process EU personal data, implementing privacy controls, or conducting GDPR compliance reviews.