This skill should be used when the user asks about "MakerKit patterns", "CLAUDE.md files", "what MCP tools are available", "how does MakerKit structure", "personal vs team accounts", "RLS patterns in MakerKit", or needs quick reference for MakerKit conventions.
Provides quick reference for MakerKit patterns, CLAUDE.md files, account types, and MCP tools.
/plugin marketplace add membranaestudio/claude-plugins/plugin install makerkit-planner@membranaestudioThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/claude-md-index.mdreferences/makerkit-consolidado.mdreferences/mcp-tools.mdQuick reference for MakerKit project patterns and conventions.
MakerKit includes CLAUDE.md files with patterns for each package:
| File | Purpose | Key Content |
|---|---|---|
CLAUDE.md (root) | Project overview | Commands, technologies, architecture |
apps/web/CLAUDE.md | Web app patterns | Routes, async params, data fetching |
apps/web/supabase/CLAUDE.md | Database patterns | Schema workflow, migrations, RLS |
packages/features/CLAUDE.md | Feature patterns | Personal vs Team accounts |
packages/supabase/CLAUDE.md | Supabase helpers | RLS functions, triggers |
packages/ui/CLAUDE.md | UI components | Available components, form patterns |
packages/next/CLAUDE.md | Next.js patterns | enhanceAction, enhanceRouteHandler |
For detailed content, read references/claude-md-index.md.
user_id → auth.users.idauth.uid() = user_idaccount_id → accounts.idhas_role_on_account(account_id) - verifica membresía en cuentaget_database_summary() → All tables, enums, functions
get_table_info(table) → Schema details
get_all_enums() → Existing enum types
find_complete_features() → Reference features
analyze_feature_pattern(feature) → Implementation pattern
get_app_routes() → Route structure
get_server_actions() → Action patterns
generate_rls_policy({table, access_type, pattern})
validate_rls_policies({table})
For complete MCP reference, read references/mcp-tools.md.
export const myAction = enhanceAction(
async (data, { user }) => {
const client = getSupabaseServerClient();
// ... operation
return { success: true, data: result };
},
{ schema: MySchema }
);
import 'server-only';
export async function loadPageData(
client: SupabaseClient<Database>,
accountId: string,
) {
const { data, error } = await client
.from('table')
.select('*')
.eq('account_id', accountId);
if (error) throw error;
return data ?? [];
}
-- 1. Enable RLS
ALTER TABLE public.my_table ENABLE ROW LEVEL SECURITY;
-- 2. Revoke defaults
REVOKE ALL ON public.my_table FROM authenticated, service_role;
-- 3. Grant specific
GRANT SELECT, INSERT, UPDATE, DELETE ON public.my_table TO authenticated;
-- 4. Create policies
CREATE POLICY my_table_select ON public.my_table
FOR SELECT TO authenticated
USING (public.has_role_on_account(account_id));
Para patrones conceptuales que el MCP no cubre, usa el skill makerkit-docs:
| Usar MCP cuando... | Usar makerkit-docs cuando... |
|---|---|
| Necesitas estructura actual del codigo | Necesitas entender conceptos |
| Que tablas/enums existen | Como funciona billing/auth conceptualmente |
| Patrones de codigo real | Documentacion oficial de configuracion |
| Introspeccion del proyecto | Troubleshooting, guias paso a paso |
Como invocar: "Usa el skill makerkit-docs para consultar [tema]"
Secciones mas utiles:
/development/database-architecture - Arquitectura DB/billing/overview - Sistema de billing/security/row-level-security - RLS patterns/troubleshooting/* - Resolucion de problemasreferences/makerkit-consolidado.md - Quick reference con templates copy-paste ready (PREFERIDO)references/claude-md-index.md - Complete CLAUDE.md file contentsreferences/mcp-tools.md - All MCP tools with examplesmakerkit-consolidado.md (PRIMERO)claude-md-index.mdmcp-tools.mdThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.