← ClaudeAtlas

initlisted

Initialize iEvo in the current project — discover relevant skills and agents from skills.sh and the broader GitHub ecosystem (via own discover.mjs script, no prereq install), audit them for safety via senior-security-engineer review, install through an interactive interview. Composes two lower-level skills (index-repos, security-check) plus discover.mjs + repo-indexer + security-auditor sub-agents into a complete setup pipeline. Use when the user runs `/ievo:init`, opens a new project that does not yet have `.ievo/`, or asks "set up iEvo here" / "find skills for this project".
ievo-ai/skills · ★ 0 · Code & Development · score 72
Install: claude install-skill ievo-ai/skills
# Init ## ⚠️ Critical execution directive — read first **Execute the entire pipeline continuously, without pausing.** Do NOT wait for user input between steps. The ONLY user-facing pauses are: 1. **Step 1** (permission check) — `AskUserQuestion` 2. **Step 7a** (resolve ambiguous categories) — `AskUserQuestion`, only if any categories were marked `/ambiguous` 3. **Step 7b** (per-candidate interview) — `AskUserQuestion` 4. **Step 8** (RED security verdict) — `AskUserQuestion`, only for RED candidates 5. **Step 13** (final feedback prompt) — `AskUserQuestion` Between every other step, **proceed immediately** to the next step. If you find yourself thinking "should I confirm with the user before doing X?" — the answer is NO. Just do it. Write to the log so the user can monitor via `tail -f`. Especially: between Step 5 (discover.mjs result) and Step 6 (index-repos) → **no pause, no confirmation, no summary checkpoint**. Just chain straight through. ## Pipeline Set up iEvo in the current project. Pipeline (v0.6.0+): ``` discover.mjs (Node, parallel skills.sh API queries) ↓ index-repos (parallel repo-indexer sub-agents, local scan) ↓ categorical rank — top-N per category ↓ interview (per candidate, AskUserQuestion) ↓ security-auditor (parallel sub-agents, antivirus deep scan) ↓ install (vendor or plugin, project-scope, copy + source SHA metadata) ``` **v0.6.0 — zero-prereq architecture**: dropped `find-skills` manual install. Discovery happens via own `di