erne-init
- Repo stars 36
- License MIT
- Author updated Live
- Author repo everything-react-native-expo
- Domain
- AI
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 94 / 100 · audit passed
- Author / version / license
- @JubaKitiashvili · MIT
- Token usage
- Lean
- Setup complexity
- Plug-and-play
- External API key
- Not required
- Operating systems
- macOS · Linux · Windows
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Write / modify
- Network behavior
- Local-only
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: erne-init
description: Initialize ERNE — the AI agent harness for React Native & Expo projects. Sets up 13 specialized…
category: ai
runtime: no special runtime
---
# erne-init output preview
## PART A: Task fit
- Use case: Initialize ERNE — the AI agent harness for React Native & Expo projects. Sets up 13 specialized agents, hook-based code quality enforcement, MCP server integrations, and a visual dashboard. Triggers on "set up erne", "initialize erne", "install erne", "configure agents", "add erne to project", or any first-time ERNE setup request. Always use this skill when the user wants to set up ERNE, even if they don't say "init" explicitly..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “Step 1: Ask preferences / Step 2: Run the init command / Step 3: Launch the dashboard” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Initialize ERNE — the AI agent harness for React Native & Expo projects. Sets up 13 specialized agents, hook-based code quality enforcement, MCP server integrations, and a visual dashboard. Triggers on "set up erne", "initialize erne", "install erne", "configure agents", "add erne to project", or any first-time ERNE setup request. Always use this skill when the user wants to set up ERNE, even if they don't say "init" explicitly.”.
- **02** When the source has headings, the agent prioritizes “Step 1: Ask preferences / Step 2: Run the init command / Step 3: Launch the dashboard” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files; mostly runs locally; usually needs no extra API key.
## Running Rules
- read files, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source mentions slash commands such as `/erne-plan`, `/erne-perf`, `/erne-doctor`, `/erne-code-review`, `/erne-`; use them first when your agent supports command triggers.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files.
Start with a small task and check whether the result follows “Step 1: Ask preferences / Step 2: Run the init command / Step 3: Launch the dashboard”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: erne-init
description: Initialize ERNE — the AI agent harness for React Native & Expo projects. Sets up 13 specialized…
category: ai
source: JubaKitiashvili/everything-react-native-expo
---
# erne-init
## When to use
- Initialize ERNE — the AI agent harness for React Native & Expo projects. Sets up 13 specialized agents, hook-based cod…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “Step 1: Ask preferences / Step 2: Run the init command / Step 3: Launch the dashboard” and keep inference separate from source facts.
- read files, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "erne-init" {
input -> user goal + target files + boundaries + acceptance criteria
context -> Step 1: Ask preferences / Step 2: Run the init command / Step 3: Launch the dashboard
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, write/modify files | mostly runs locally
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Initialize ERNE
ERNE is an AI agent harness for React Native and Expo. Setting it up involves choosing a few preferences and then running a single CLI command. The reason you need to ask the user before running is that the CLI's interactive prompts don't work reliably in Claude Code — so you handle the interaction here in conversation instead.
Step 1: Ask preferences
Before running anything, ask the user two things in a single message:
Profile: ERNE uses hook profiles to control how much code quality checking happens automatically. Ask which one they'd like:
- minimal — Almost no automated checks. Good for quick prototyping or when you just want the agents without guardrails.
- standard — Catches common issues (formatting, console.logs, platform-specific bugs) without slowing things down. This is what most people pick.
- strict — Adds security scanning, accessibility checks, and test gates. Good for production apps or teams.
MCP servers: ERNE can configure agent-device (controls iOS Simulator and Android Emulator for screenshots, taps, navigation) and GitHub integration. Ask if they want these set up now or later.
Wait for the user to respond before continuing.
Step 2: Run the init command
Once you have their preferences, run this in Bash:
npx erne-universal@latest init --yes --profile <profile> [--no-mcp]
Replace <profile> with their choice (minimal, standard, or strict). Add --no-mcp only if they said no to MCP servers.
The --yes flag is important — it tells the CLI to skip its own interactive prompts since you already gathered the preferences.
Step 3: Launch the dashboard
After init completes, start the dashboard:
npx erne-universal dashboard &
The dashboard runs in the background. Read the output to find which port it started on (usually 3333, but it auto-selects a free port if 3333 is taken).
If the dashboard needs to install dependencies on first run (takes about 2 minutes), tell the user it's installing and will open in the browser when ready.
Step 4: Tell the user what happened
Summarize in a clear message:
- What was set up (agents, hooks, rules, skills, MCP servers)
- The dashboard URL (e.g., http://localhost:3333)
- That they need to restart this Claude Code session for MCP servers and hooks to activate
- A few commands they can try after restart:
/erne-plan— plan a new feature/erne-perf— profile performance issues/erne-doctor— check project health/erne-code-review— review code quality- Type
/erne-and press Tab to see all commands
Decide Fit First
Design Intent
How To Use It
Boundaries And Review