Everything-react-native-expo erne-feature
ERNE — Build a focused feature unit using the feature-builder agent
install
source · Clone the upstream repo
git clone https://github.com/JubaKitiashvili/everything-react-native-expo
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/JubaKitiashvili/everything-react-native-expo "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/erne-feature" ~/.claude/skills/jubakitiashvili-everything-react-native-expo-erne-feature && rm -rf "$T"
manifest:
.claude/skills/erne-feature/SKILL.mdsource content
/erne-feature — Focused Feature Unit
You are executing the
/erne-feature command. Use the feature-builder agent to implement a discrete, scoped feature unit.
Process
- Scope the unit — Identify exactly one deliverable: a single screen, a custom hook, an API module, or a reusable component
- Check dependencies — Verify types, API contracts, and shared state are defined before starting
- Implement — Using the feature-builder agent's process:
- Write the code with all states handled (loading, error, empty, success)
- Type everything explicitly (return types, param interfaces, no
)any - Handle edges (null checks, empty arrays, network failures, platform differences)
- Deliver — Complete file with props/params interface, dependencies list, and integration point
When to Use
- Building a single screen, hook, or component in isolation
- Working in parallel with another agent on a larger feature
- Quick, scoped implementation tasks with clear boundaries
Parallel Work
When used alongside
/erne-code (senior-developer):
handles: data layer, stores, navigation skeleton, complex multi-screen flows/erne-code
handles: individual screens, isolated components, utility hooks, API wrappers/erne-feature- Coordinate via shared type definitions and agreed interfaces
Notes
- Reference the active platform rules layer for conventions
- Keep scope tight — if the task touches more than 3 files, use
instead/erne-code - Every delivered unit must include its integration point documentation