terminal-pilot 0.0.39 → 0.0.40

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.
@@ -23040,7 +23040,10 @@ function createDaemonTerminalPilotRuntime() {
23040
23040
  return {
23041
23041
  async createSession(params17, env) {
23042
23042
  const result = await request("createSession", {
23043
- params: params17,
23043
+ params: {
23044
+ ...params17,
23045
+ cwd: params17.cwd ?? process.cwd()
23046
+ },
23044
23047
  envSession: env?.get(SESSION_ENV_VAR)
23045
23048
  });
23046
23049
  return { name: result.name, session: proxySession(result.name, result.session) };
@@ -23315,7 +23318,7 @@ function sleep2(ms) {
23315
23318
  // src/cli.ts
23316
23319
  configureTheme({ brand: "green", label: "Terminal Pilot" });
23317
23320
  function getBundledPackageVersion() {
23318
- return true ? "0.0.39" : void 0;
23321
+ return true ? "0.0.40" : void 0;
23319
23322
  }
23320
23323
  function normalizeArgv(argv) {
23321
23324
  if (argv.includes("--json") && !argv.some((argument) => argument === "--output" || argument.startsWith("--output="))) {