Agent skill
atomic-organism
Create or refactor a React ORGANISM (a meaningful UI section composed of molecules/atoms). Use for nav bars, product grids, comment lists, forms, dialogs, etc. Organisms may accept data and callbacks but should remain reusable across pages.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/atomic-organism
SKILL.md
Atomic Design: ORGANISM (React Functional Components)
You are creating an ORGANISM: a larger section of UI composed of molecules and atoms.
Hard rules
- Functional components only.
- Data boundary:
- Organisms can accept data via props and emit events via callbacks.
- Avoid direct fetching inside the organism unless the project explicitly uses component-level fetching patterns (if so, isolate it and justify).
- Dependency discipline:
- Organisms may import molecules/atoms and shared utilities.
- Avoid importing page-level modules or routing concerns.
- State:
- Local state for UI coordination is fine (open/close, selected tab).
- Prefer lifting state up when it becomes cross-organism/page relevant.
- Testability:
- Prefer pure props-driven behavior; inject dependencies via props.
- Use stable selectors (
role,labelText) rather than brittle test IDs unless necessary.
Output expectations
- Provide:
Component.tsxComponent.test.tsx(behavior-driven)Component.stories.tsx(mock data variants)
Recommended folder conventions
src/components/organisms/<ComponentName>/...
Organism checklist
- Clear props contract (data in, events out)
- No routing/global singleton coupling unless standard for the repo
- Uses semantic landmarks where appropriate (
nav,main,section, headings)
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?