← スキル一覧に戻る

frontend-context-loader
by RedBoardDev
⭐ 0🍴 0📅 2026年1月19日
SKILL.md
name: frontend-context-loader description: "Load the minimal Cookmate frontend context fast. Use only for frontend tasks to avoid repeated discovery: Next.js app structure, shared layouts, modules, and UI patterns."
Frontend Context Loader (Cookmate)
Goal: cut token/time spent rediscovering the web app. Load these in order, skim only what’s needed.
Quick sequence
- App entry/layouts:
apps/web/src/app/layout.tsx,apps/web/src/app/(app)/layout.tsx, main pages underapps/web/src/app/(app)/**,apps/web/src/app/page.tsx(redirect). - Layout/navigation patterns:
apps/web/src/shared/layouts/app/*(AppShell, Topbar, BottomNav, navigation.ts). - Providers:
apps/web/src/shared/providers/query-provider.tsx. - Modules:
apps/web/src/modules/**(Recipes, RecipeDetail, Search, NewRecipes, etc.) — check domain/application/ui and seeds. - UI/shared:
apps/web/src/shared/ui/**andapps/web/src/shared/lib/**for utilities/primitives;tailwind.config.ts,SHADCN_THEME.cssif theme matters.
Fast commands
- List files quickly:
rg --files apps/web/src/app,rg --files apps/web/src/modules - Search patterns:
rg "RecipesView" apps/web/src,rg "AppShell" apps/web/src - Preview:
sed -n '1,160p' path
Notes
- Navigation uses
navigation.tswithuseSelectedLayoutSegments; ignore segment groups(...). - Default UI pattern: AppShell with Topbar (desktop) + BottomNav (mobile), background radial accent.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です