Files
shiftcraft/.claude/skills/pocketbase-best-practices/rules/_template.md
2026-04-17 23:26:01 +00:00

855 B

title, impact, impactDescription, tags
title impact impactDescription tags
Clear, Action-Oriented Title (e.g., "Use Cursor-Based Pagination for Large Lists") MEDIUM Brief description of performance/security impact relevant, comma-separated, tags

[Rule Title]

[1-2 sentence explanation of the problem and why it matters. Focus on impact.]

Incorrect (describe the problem):

// Comment explaining what makes this problematic
const result = await pb.collection('posts').getList();
// Problem explanation

Correct (describe the solution):

// Comment explaining why this is better
const result = await pb.collection('posts').getList(1, 20, {
  filter: 'published = true',
  sort: '-created'
});
// Benefit explanation

[Optional: Additional context, edge cases, or trade-offs]

Reference: PocketBase Docs