Agent skill
justicehub-reviewer
Platform audit for JusticeHub pages, API routes, Supabase patterns, and Empathy Ledger integration.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/justicehub-reviewer
SKILL.md
JusticeHub Platform Reviewer
When to Use
- Audit pages/routes for data fetching issues
- Verify Supabase connection patterns
- Check Empathy Ledger integration
- Review API route security
- Generate platform health reports
Invocation
/justicehub-review [scope]
| Scope | What It Checks |
|---|---|
full |
Complete platform audit |
pages |
All Next.js pages |
api |
All API routes |
supabase |
Connection patterns |
empathy-ledger |
Integration health |
functions |
Utility services |
Quick Patterns
Correct Server Component
typescript
import { createServiceClient } from '@/lib/supabase/service';
export const dynamic = 'force-dynamic';
export default async function Page() {
const supabase = createServiceClient();
const { data } = await supabase.from('table').select('*');
return <Component data={data} />;
}
Correct API Route
typescript
import { createServiceClient } from '@/lib/supabase/service';
export async function GET() {
const supabase = createServiceClient();
const { data, error } = await supabase.from('table').select('*');
if (error) return NextResponse.json({ error: error.message }, { status: 500 });
return NextResponse.json(data);
}
Red Flags
createClientin server component (should becreateServiceClient)- Missing
force-dynamicfor dynamic data - Server cookie client without await
- No error handling in API routes
File References
| Need | Reference |
|---|---|
| Page patterns | references/page-patterns.md |
| API patterns | references/api-patterns.md |
| Supabase patterns | references/supabase-patterns.md |
| Empathy Ledger | references/empathy-ledger.md |
Didn't find tool you were looking for?