@hachej/boring-agent 0.1.60 → 0.1.61

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.
@@ -8510,6 +8510,10 @@ function bwrapSpawnHook(workspaceRoot, runtime, sandboxRoot = "/workspace") {
8510
8510
  const bwrapPrefix = ["bwrap", ...args].map(shellEscape2).join(" ");
8511
8511
  return (context) => ({
8512
8512
  ...context,
8513
+ // The inner command runs at sandboxRoot inside bwrap, but the host-side
8514
+ // process must spawn from a real host path. GitHub runners do not have a
8515
+ // /workspace directory, so keep the outer cwd on the mounted storage root.
8516
+ cwd: workspaceRoot,
8513
8517
  command: `${bwrapPrefix} bash -lc ${shellEscape2(context.command)}`,
8514
8518
  env: withWorkspacePythonEnv({
8515
8519
  workspaceRoot,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hachej/boring-agent",
3
- "version": "0.1.60",
3
+ "version": "0.1.61",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Pane-embeddable coding agent. Ships direct/local/vercel-sandbox execution modes behind one interface.",
@@ -74,7 +74,7 @@
74
74
  "use-stick-to-bottom": "^1.1.3",
75
75
  "yaml": "^2.8.3",
76
76
  "zod": "^3.25.76",
77
- "@hachej/boring-ui-kit": "0.1.60"
77
+ "@hachej/boring-ui-kit": "0.1.61"
78
78
  },
79
79
  "devDependencies": {
80
80
  "@antithesishq/bombadil": "0.5.0",