erne-universal 0.10.16 → 0.10.17
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/lib/claude-md.js +8 -0
- package/package.json +1 -1
package/lib/claude-md.js
CHANGED
|
@@ -215,6 +215,11 @@ function generateFullClaudeMd(cwd, detection, ruleLayers, profile) {
|
|
|
215
215
|
'## Available Commands',
|
|
216
216
|
AVAILABLE_COMMANDS,
|
|
217
217
|
'',
|
|
218
|
+
'## Dashboard',
|
|
219
|
+
'ERNE includes a visual dashboard for monitoring agents, project health, worker status, and documentation.',
|
|
220
|
+
'Launch: `npx erne-universal dashboard`',
|
|
221
|
+
'The dashboard shows 6 tabs: HQ (pixel-art agent office), Worker (autonomous tickets), Health (doctor score), Docs (generated documentation), Project (stack & MCP), Insights (analytics).',
|
|
222
|
+
'',
|
|
218
223
|
'## Rules',
|
|
219
224
|
);
|
|
220
225
|
|
|
@@ -264,6 +269,9 @@ function generateAppendSection(ruleLayers, profile) {
|
|
|
264
269
|
'## Available Commands',
|
|
265
270
|
AVAILABLE_COMMANDS,
|
|
266
271
|
'',
|
|
272
|
+
'## Dashboard',
|
|
273
|
+
'ERNE includes a visual dashboard. Launch: `npx erne-universal dashboard`',
|
|
274
|
+
'',
|
|
267
275
|
);
|
|
268
276
|
|
|
269
277
|
return lines.join('\n');
|