erne-universal 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
|
|
16
16
|
## ⚡ Quick Start
|
|
17
17
|
|
|
18
|
+
> **Prerequisite:** [Claude Code](https://claude.ai/claude-code) is required for the full experience (11 agents, pipeline orchestration, dashboard, hooks). Other IDEs receive adaptive rules and configuration — see [IDE Support](#%EF%B8%8F-ide--editor-support).
|
|
19
|
+
|
|
18
20
|
```bash
|
|
19
21
|
npx erne-universal init
|
|
20
22
|
```
|
|
@@ -157,19 +159,30 @@ Change profile: set `ERNE_PROFILE` env var, add `<!-- Hook Profile: standard -->
|
|
|
157
159
|
|
|
158
160
|
## 🖥️ IDE & Editor Support
|
|
159
161
|
|
|
160
|
-
ERNE
|
|
162
|
+
ERNE generates adaptive config files for multiple IDEs, but the **full agent experience requires Claude Code**:
|
|
163
|
+
|
|
164
|
+
| Feature | Claude Code | Cursor / Windsurf / Copilot / Codex |
|
|
165
|
+
|---------|:-----------:|:------------------------------------:|
|
|
166
|
+
| Adaptive rules & config | ✅ | ✅ |
|
|
167
|
+
| Stack detection (15 dimensions) | ✅ | ✅ |
|
|
168
|
+
| 19 slash commands | ✅ | ❌ |
|
|
169
|
+
| 11 specialized agents | ✅ | ❌ |
|
|
170
|
+
| Pipeline orchestration | ✅ | ❌ |
|
|
171
|
+
| Hook profiles | ✅ | ❌ |
|
|
172
|
+
| Agent dashboard | ✅ | ❌ |
|
|
173
|
+
| Cross-session memory | ✅ | ❌ |
|
|
174
|
+
|
|
175
|
+
**Generated config files:**
|
|
161
176
|
|
|
162
177
|
| File | IDE / Tool |
|
|
163
178
|
|------|-----------|
|
|
164
|
-
| `CLAUDE.md` | Claude Code |
|
|
179
|
+
| `CLAUDE.md` | Claude Code (full experience) |
|
|
165
180
|
| `AGENTS.md` | Codex, Windsurf, Cursor, GitHub Copilot |
|
|
166
|
-
| `GEMINI.md` |
|
|
181
|
+
| `GEMINI.md` | Gemini CLI |
|
|
167
182
|
| `.cursorrules` | Cursor |
|
|
168
183
|
| `.windsurfrules` | Windsurf |
|
|
169
184
|
| `.github/copilot-instructions.md` | GitHub Copilot |
|
|
170
185
|
|
|
171
|
-
All config files are generated adaptively based on your project's detected stack.
|
|
172
|
-
|
|
173
186
|
---
|
|
174
187
|
|
|
175
188
|
## 🏗️ Architecture
|