poe-code 3.0.406 → 3.0.407

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) };