claude-code-orchestrator-kit 1.4.15 → 1.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/agents/database/workers/api-builder.md +8 -0
- package/.claude/agents/database/workers/database-architect.md +8 -0
- package/.claude/agents/database/workers/supabase-fixer.md +825 -0
- package/.claude/agents/database/workers/supabase-realtime-optimizer.md +1086 -0
- package/.claude/agents/database/workers/supabase-storage-optimizer.md +1187 -0
- package/.claude/agents/development/workers/code-structure-refactorer.md +771 -0
- package/.claude/agents/development/workers/judge-specialist.md +3275 -0
- package/.claude/agents/development/workers/langgraph-specialist.md +1343 -0
- package/.claude/agents/development/workers/stage-pipeline-specialist.md +1173 -0
- package/.claude/agents/frontend/workers/fullstack-nextjs-specialist.md +10 -0
- package/.claude/agents/health/workers/bug-fixer.md +0 -1
- package/.claude/agents/infrastructure/workers/bullmq-worker-specialist.md +748 -0
- package/.claude/agents/infrastructure/workers/rag-specialist.md +799 -0
- package/.claude/agents/infrastructure/workers/server-hardening-specialist.md +1128 -0
- package/.claude/agents/integrations/workers/lms-integration-specialist.md +866 -0
- package/.claude/commands/supabase-performance-optimizer.md +73 -0
- package/.claude/commands/ultra-think.md +158 -0
- package/.claude/skills/senior-architect/SKILL.md +209 -0
- package/.claude/skills/senior-architect/references/architecture_patterns.md +755 -0
- package/.claude/skills/senior-architect/references/system_design_workflows.md +749 -0
- package/.claude/skills/senior-architect/references/tech_decision_guide.md +612 -0
- package/.claude/skills/senior-architect/scripts/architecture_diagram_generator.py +114 -0
- package/.claude/skills/senior-architect/scripts/dependency_analyzer.py +114 -0
- package/.claude/skills/senior-architect/scripts/project_architect.py +114 -0
- package/package.json +1 -1
|
@@ -8,6 +8,14 @@ color: blue
|
|
|
8
8
|
|
|
9
9
|
You are a tRPC API specialist focused on building type-safe, secure REST APIs with robust authentication and authorization. Your expertise lies in designing tRPC routers, implementing JWT-based authentication with Supabase Auth, creating role-based authorization middleware, and ensuring type safety through Zod validation schemas.
|
|
10
10
|
|
|
11
|
+
## Referenced Skills
|
|
12
|
+
|
|
13
|
+
**Use `senior-architect` Skill** for API design decisions:
|
|
14
|
+
- REST vs GraphQL decision matrix
|
|
15
|
+
- API versioning strategies
|
|
16
|
+
- Rate limiting patterns
|
|
17
|
+
- System design workflows
|
|
18
|
+
|
|
11
19
|
## MCP Server Usage
|
|
12
20
|
|
|
13
21
|
**IMPORTANT**: Supabase MCP is configured in `.mcp.json`. shadcn/playwright require additional servers (use `.mcp.full.json` if needed).
|
|
@@ -30,6 +30,14 @@ Available MCP tools:
|
|
|
30
30
|
- Project Ref: From `SUPABASE_PROJECT_REF` env or plan file
|
|
31
31
|
- Migrations: Project-specific path (e.g., `supabase/migrations/`)
|
|
32
32
|
|
|
33
|
+
### Referenced Skills
|
|
34
|
+
|
|
35
|
+
**Use `senior-architect` Skill** for architectural decisions:
|
|
36
|
+
- Database design patterns (normalization, CQRS, event sourcing)
|
|
37
|
+
- System design workflows
|
|
38
|
+
- Technology decision frameworks
|
|
39
|
+
- Architecture diagram generation
|
|
40
|
+
|
|
33
41
|
### Context7 Integration
|
|
34
42
|
|
|
35
43
|
Use Context7 for Supabase documentation and best practices:
|