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.
@@ -23033,7 +23033,10 @@ function createDaemonTerminalPilotRuntime() {
23033
23033
  return {
23034
23034
  async createSession(params17, env) {
23035
23035
  const result = await request("createSession", {
23036
- params: params17,
23036
+ params: {
23037
+ ...params17,
23038
+ cwd: params17.cwd ?? process.cwd()
23039
+ },
23037
23040
  envSession: env?.get(SESSION_ENV_VAR)
23038
23041
  });
23039
23042
  return { name: result.name, session: proxySession(result.name, result.session) };
@@ -23308,7 +23311,7 @@ function sleep2(ms) {
23308
23311
  // src/cli.ts
23309
23312
  configureTheme({ brand: "green", label: "Terminal Pilot" });
23310
23313
  function getBundledPackageVersion() {
23311
- return true ? "0.0.39" : void 0;
23314
+ return true ? "0.0.40" : void 0;
23312
23315
  }
23313
23316
  function normalizeArgv(argv) {
23314
23317
  if (argv.includes("--json") && !argv.some((argument) => argument === "--output" || argument.startsWith("--output="))) {