← Back to list

backend-context-loader
by RedBoardDev
⭐ 0🍴 0📅 Jan 19, 2026
SKILL.md
name: backend-context-loader description: "Load the minimal Cookmate backend context fast. Use only for backend tasks to avoid repeated discovery: Prisma schema, domain modules, repositories, route patterns, shared route helpers."
Context Loader (Cookmate backend)
Goal: cut token/time spent rediscovering the repo. Load these in order, skim only what’s needed.
Quick sequence
- Prisma model source:
apps/api/prisma/schema.prisma. - Domain modules:
packages/domain/src/**(check entity folders +index.tsexports). - Repositories:
apps/api/src/infra/db/repositories/**(map to models/domains). - Route patterns:
apps/api/src/interfaces/http/routes/collections/**(+collections/membersfor sub-entity prefixing). - Shared libs:
apps/api/src/shared/lib/route/**,apps/api/src/shared/utils/handle-error.ts,apps/api/src/shared/enums/http-status.enum.ts.
Fast commands (prefer to keep context small)
- List files quickly:
rg --files apps/api/src/interfaces/http/routes/collections - Search patterns:
rg "CollectionEntity" apps/api/src - Preview:
sed -n '1,160p' path
Notes
- Sub-entities: use
collections/membersas the reference for prefixes (/:parentId/...). - Stay concise: only open files relevant to the task; avoid full dumps.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon