@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.
Files changed (44) hide show
  1. package/dist/capture/jsonl-rewriter.js +72 -7
  2. package/dist/commands/dashboard.js +186 -557
  3. package/dist/commands/init.js +3 -15
  4. package/dist/commands/run.js +222 -256
  5. package/dist/commands/setup.js +0 -47
  6. package/dist/commands/swarm-dashboard.js +4 -13
  7. package/dist/deploy/instructions.d.ts +2 -5
  8. package/dist/deploy/instructions.js +8 -11
  9. package/dist/deploy/settings.js +21 -15
  10. package/dist/deploy/skills.d.ts +0 -8
  11. package/dist/deploy/skills.js +0 -26
  12. package/dist/index.js +2 -2
  13. package/dist/lib/usage-parser.js +1 -2
  14. package/dist/utils/platform.d.ts +0 -3
  15. package/dist/utils/platform.js +1 -4
  16. package/dist/utils/session-binding.d.ts +1 -1
  17. package/dist/utils/session-binding.js +2 -3
  18. package/package.json +1 -1
  19. package/templates/agents/README.md +182 -0
  20. package/templates/agents/code-reviewer.md +166 -0
  21. package/templates/agents/debug-detective.md +169 -0
  22. package/templates/agents/ekkOS_Vercel.md +99 -0
  23. package/templates/agents/extension-manager.md +229 -0
  24. package/templates/agents/git-companion.md +185 -0
  25. package/templates/agents/github-test-agent.md +321 -0
  26. package/templates/agents/railway-manager.md +179 -0
  27. package/templates/hooks/assistant-response.ps1 +26 -94
  28. package/templates/hooks/lib/count-tokens.cjs +0 -0
  29. package/templates/hooks/lib/ekkos-reminders.sh +0 -0
  30. package/templates/hooks/session-start.ps1 +224 -61
  31. package/templates/hooks/session-start.sh +1 -1
  32. package/templates/hooks/stop.ps1 +249 -103
  33. package/templates/hooks/stop.sh +1 -1
  34. package/templates/hooks/user-prompt-submit.ps1 +519 -129
  35. package/templates/hooks/user-prompt-submit.sh +2 -2
  36. package/templates/plan-template.md +0 -0
  37. package/templates/spec-template.md +0 -0
  38. package/templates/windsurf-hooks/before-submit-prompt.sh +238 -0
  39. package/templates/windsurf-hooks/install.sh +0 -0
  40. package/templates/windsurf-hooks/lib/contract.sh +0 -0
  41. package/templates/windsurf-hooks/post-cascade-response.sh +0 -0
  42. package/templates/windsurf-hooks/pre-user-prompt.sh +0 -0
  43. package/templates/windsurf-skills/ekkos-memory/SKILL.md +219 -0
  44. package/README.md +0 -57
@@ -332,28 +332,16 @@ async function deployForCursor(apiKey, userId) {
332
332
  }
333
333
  }
334
334
  async function deployForWindsurf(apiKey, userId) {
335
- let success = false;
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
- success = true;
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