@ekkos/cli 1.0.27 → 1.0.28
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/commands/run.js +1 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/commands/run.js
CHANGED
|
@@ -748,7 +748,6 @@ function launchWithDashboardWindows(options) {
|
|
|
748
748
|
runArgs.push('--skip-dna');
|
|
749
749
|
if (options.noProxy)
|
|
750
750
|
runArgs.push('--skip-proxy');
|
|
751
|
-
runArgs.push('--kickstart');
|
|
752
751
|
const ekkosCmd = process.argv[1];
|
|
753
752
|
const cwd = process.cwd();
|
|
754
753
|
// Write dashboard launch marker
|
|
@@ -766,7 +765,7 @@ function launchWithDashboardWindows(options) {
|
|
|
766
765
|
// PowerShell -EncodedCommand expects UTF-16LE Base64
|
|
767
766
|
return Buffer.from(script, 'utf16le').toString('base64');
|
|
768
767
|
}
|
|
769
|
-
// cd to original CWD first so ekkos run
|
|
768
|
+
// cd to original CWD first so ekkos run registers the correct projectPath
|
|
770
769
|
const runScript = `Set-Location '${cwdEscaped}'; & node '${ekkosCmdEscaped}' ${runArgs.join(' ')}`;
|
|
771
770
|
const dashScript = `& node '${ekkosCmdEscaped}' dashboard --wait-for-new --refresh 2000`;
|
|
772
771
|
const runEncoded = toPsEncoded(runScript);
|
|
@@ -816,7 +815,6 @@ function launchWithDashboard(options) {
|
|
|
816
815
|
runArgs.push('--skip-dna');
|
|
817
816
|
if (options.noProxy)
|
|
818
817
|
runArgs.push('--skip-proxy');
|
|
819
|
-
runArgs.push('--kickstart'); // Auto-send "test" to create session immediately for dashboard
|
|
820
818
|
const ekkosCmd = process.argv[1]; // Path to ekkos CLI
|
|
821
819
|
const cwd = process.cwd();
|
|
822
820
|
const termCols = process.stdout.columns ?? 160;
|
package/dist/index.js
CHANGED
|
@@ -249,7 +249,7 @@ commander_1.program
|
|
|
249
249
|
.option('--skip-dna', 'Deprecated no-op (legacy ccDNA patching has been removed)')
|
|
250
250
|
.option('--skip-proxy', 'Skip API proxy (use direct Anthropic API, disables seamless context eviction)')
|
|
251
251
|
.option('--dashboard', 'Launch with live usage dashboard in an isolated 60/40 tmux split (requires tmux)')
|
|
252
|
-
.option('--kickstart', 'Auto-send "test" on load to create session immediately (
|
|
252
|
+
.option('--kickstart', 'Auto-send "test" on load to create session immediately (manual/debug use)')
|
|
253
253
|
.option('--add-dir <dirs...>', 'Additional directories Claude Code can access (outside working directory)')
|
|
254
254
|
.action((options) => {
|
|
255
255
|
(0, run_1.run)({
|