create-walle 0.9.10 → 0.9.11

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": "create-walle",
3
- "version": "0.9.10",
3
+ "version": "0.9.11",
4
4
  "description": "CTM + Wall-E \u2014 AI coding dashboard and personal digital twin agent. Multi-agent terminal for Claude Code, Codex, Gemini & Aider, plus prompt editor, task queue, and an agent that learns from Slack, email & calendar.",
5
5
  "bin": {
6
6
  "create-walle": "bin/create-walle.js"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "walle",
3
- "version": "0.9.10",
3
+ "version": "0.9.11",
4
4
  "private": true,
5
5
  "description": "Wall-E — your personal digital twin",
6
6
  "scripts": {
@@ -16,6 +16,7 @@ primary_region = "sjc" # Change to your nearest region: https://fly.io/docs/ref
16
16
 
17
17
  [env]
18
18
  WALL_E_DATA_DIR = "/data"
19
+ WALL_E_HOST = "0.0.0.0"
19
20
  WALL_E_PORT = "3457"
20
21
  NODE_ENV = "production"
21
22
  WALLE_TELEMETRY_SERVER = "1"
@@ -3,6 +3,7 @@
3
3
  // Public routes are intentionally limited to webhook ingestion. Everything else
4
4
  // must come from localhost or present a shared bearer token.
5
5
  const PUBLIC_ROUTES = new Set([
6
+ '/api/wall-e/health',
6
7
  '/api/wall-e/webhook',
7
8
  ]);
8
9