Agent skill
project-context
Loads project structure, tech stack, and coding conventions for the Photography Order Management ERP. Use when understanding the codebase, onboarding, or needing project context.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/project-context-eug-subscription-erp-v3-e4c7c1c3
SKILL.md
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?