pixel-office-openclaw 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixel-office-openclaw",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Watch your OpenClaw AI agents work in a pixel-art virtual office",
5
5
  "type": "module",
6
6
  "bin": {
package/server.js CHANGED
@@ -242,7 +242,7 @@ app.post('/api/send', async (req, res) => {
242
242
  try {
243
243
  console.log(`[bridge] Sending to ${safeAgentId} via CLI: ${safeMessage.slice(0, 50)}...`)
244
244
  const cliResult = execFileSync('openclaw', ['agent', '--agent', safeAgentId, '--message', safeMessage, '--json'],
245
- { timeout: 120000, stdio: ['pipe', 'pipe', 'pipe'], encoding: 'utf-8' }
245
+ { timeout: 120000, stdio: ['pipe', 'pipe', 'pipe'], encoding: 'utf-8', env: { ...process.env, NODE_OPTIONS: '' } }
246
246
  )
247
247
  console.log(`[bridge] Sent to ${safeAgentId} (CLI OK)`)
248
248
  try {