← スキル一覧に戻る

project-context
by eug-subscription
⭐ 0🍴 0📅 2026年1月23日
SKILL.md
name: project-context description: Loads project structure, tech stack, and coding conventions for the Photography Order Management ERP. Use when understanding the codebase, onboarding, or needing project context.
Project Context Skill
Provides quick access to project structure and conventions without reading full documentation.
Tech Stack
| Layer | Technology | Version |
|---|---|---|
| Framework | React | 19.x |
| Build | Vite | 7.x |
| Styling | Tailwind CSS | 4.x |
| UI Library | HeroUI v3 Beta 5 | @heroui/react |
| Routing | TanStack Router | 1.x |
| Data | TanStack Query | 5.x |
| Icons | Iconify (lucide) | latest |
Directory Structure
src/
├── components/ # PascalCase: OrderInfo.tsx, ServiceConfigCard.tsx
├── data/ # kebab-case: mock-order.ts
├── hooks/ # camelCase: useOrder.ts, useProjectPage.ts
├── providers/ # QueryProvider.tsx
├── router.tsx # TanStack Router configuration
├── App.tsx # Entry point
└── index.css # Tailwind v4 + HeroUI styles
Key Conventions
- Named exports only:
export function ComponentName() {} - HeroUI compound components:
<Card.Content>,<Modal.Body> - Use
onPressfor interactions (notonClick) - Direct imports from
@heroui/react— no wrappers - TanStack Router for navigation:
<Link to="/path"> - TanStack Query for data:
useQuery({ queryKey, queryFn })
MCP Tools
Before creating any UI component or implementing new logic, use these tools:
- HeroUI:
mcp_heroui-react_list_components— Check availabilitymcp_heroui-react_get_component_docs— Full anatomy, props, and examplesmcp_heroui-react_get_component_source_code— Understand internal logic
- Documentation:
mcp_context7_resolve-library-id— Find library ID (e.g., TanStack, React 19)mcp_context7_query-docs— Query latest documentation and code snippets
References
For full details, read these files:
dev_instruction_v3.md— Primary source of truthpackage.json— All dependencies.agent/workflows/onboarding.md— Onboarding process
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です