@ekkos/cli 1.0.34 → 1.0.36
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/dist/capture/jsonl-rewriter.js +72 -7
- package/dist/commands/dashboard.js +186 -557
- package/dist/commands/init.js +3 -15
- package/dist/commands/run.js +222 -256
- package/dist/commands/setup.js +0 -47
- package/dist/commands/swarm-dashboard.js +4 -13
- package/dist/deploy/instructions.d.ts +2 -5
- package/dist/deploy/instructions.js +8 -11
- package/dist/deploy/settings.js +21 -15
- package/dist/deploy/skills.d.ts +0 -8
- package/dist/deploy/skills.js +0 -26
- package/dist/index.js +2 -2
- package/dist/lib/usage-parser.js +1 -2
- package/dist/utils/platform.d.ts +0 -3
- package/dist/utils/platform.js +1 -4
- package/dist/utils/session-binding.d.ts +1 -1
- package/dist/utils/session-binding.js +2 -3
- package/package.json +1 -1
- package/templates/agents/README.md +182 -0
- package/templates/agents/code-reviewer.md +166 -0
- package/templates/agents/debug-detective.md +169 -0
- package/templates/agents/ekkOS_Vercel.md +99 -0
- package/templates/agents/extension-manager.md +229 -0
- package/templates/agents/git-companion.md +185 -0
- package/templates/agents/github-test-agent.md +321 -0
- package/templates/agents/railway-manager.md +179 -0
- package/templates/hooks/assistant-response.ps1 +26 -94
- package/templates/hooks/lib/count-tokens.cjs +0 -0
- package/templates/hooks/lib/ekkos-reminders.sh +0 -0
- package/templates/hooks/session-start.ps1 +224 -61
- package/templates/hooks/session-start.sh +1 -1
- package/templates/hooks/stop.ps1 +249 -103
- package/templates/hooks/stop.sh +1 -1
- package/templates/hooks/user-prompt-submit.ps1 +519 -129
- package/templates/hooks/user-prompt-submit.sh +2 -2
- package/templates/plan-template.md +0 -0
- package/templates/spec-template.md +0 -0
- package/templates/windsurf-hooks/before-submit-prompt.sh +238 -0
- package/templates/windsurf-hooks/install.sh +0 -0
- package/templates/windsurf-hooks/lib/contract.sh +0 -0
- package/templates/windsurf-hooks/post-cascade-response.sh +0 -0
- package/templates/windsurf-hooks/pre-user-prompt.sh +0 -0
- package/templates/windsurf-skills/ekkos-memory/SKILL.md +219 -0
- package/README.md +0 -57
package/dist/commands/init.js
CHANGED
|
@@ -332,28 +332,16 @@ async function deployForCursor(apiKey, userId) {
|
|
|
332
332
|
}
|
|
333
333
|
}
|
|
334
334
|
async function deployForWindsurf(apiKey, userId) {
|
|
335
|
-
|
|
336
|
-
// MCP configuration
|
|
337
|
-
let spinner = (0, ora_1.default)('Deploying Windsurf MCP configuration...').start();
|
|
335
|
+
const spinner = (0, ora_1.default)('Deploying Windsurf MCP configuration...').start();
|
|
338
336
|
try {
|
|
339
337
|
(0, mcp_1.deployWindsurfMcp)(apiKey, userId);
|
|
340
338
|
spinner.succeed('Windsurf MCP configuration');
|
|
341
|
-
|
|
339
|
+
return true;
|
|
342
340
|
}
|
|
343
341
|
catch (error) {
|
|
344
342
|
spinner.fail('Windsurf MCP configuration failed');
|
|
343
|
+
return false;
|
|
345
344
|
}
|
|
346
|
-
// Skills (Agent Skills spec — 6 Golden Loop skills)
|
|
347
|
-
spinner = (0, ora_1.default)('Deploying Windsurf skills...').start();
|
|
348
|
-
try {
|
|
349
|
-
const result = (0, skills_1.deployWindsurfSkills)();
|
|
350
|
-
spinner.succeed(`Windsurf skills (${result.count} skills: ${result.skills.join(', ')})`);
|
|
351
|
-
success = true;
|
|
352
|
-
}
|
|
353
|
-
catch (error) {
|
|
354
|
-
spinner.fail('Windsurf skills deployment failed');
|
|
355
|
-
}
|
|
356
|
-
return success;
|
|
357
345
|
}
|
|
358
346
|
// ═══════════════════════════════════════════════════════════════════════════
|
|
359
347
|
// MAIN INIT COMMAND
|