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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poe-code",
3
- "version": "3.0.406",
3
+ "version": "3.0.407",
4
4
  "description": "CLI tool to configure Poe API for developer workflows.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -23030,7 +23030,10 @@ function createDaemonTerminalPilotRuntime() {
23030
23030
  return {
23031
23031
  async createSession(params17, env) {
23032
23032
  const result = await request("createSession", {
23033
- params: params17,
23033
+ params: {
23034
+ ...params17,
23035
+ cwd: params17.cwd ?? process.cwd()
23036
+ },
23034
23037
  envSession: env?.get(SESSION_ENV_VAR)
23035
23038
  });
23036
23039
  return { name: result.name, session: proxySession(result.name, result.session) };