@alfe.ai/gateway 0.0.44 → 0.0.46

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.
@@ -48,7 +48,19 @@ declare const ALFE_DIR: string;
48
48
  declare const SOCKET_PATH: string;
49
49
  declare const PID_PATH: string;
50
50
  interface RuntimeConfig {
51
+ /**
52
+ * OpenClaw home directory (e.g. ~/.openclaw) — where openclaw.json,
53
+ * plugins/, and extensions/ live. Field name kept for back-compat with
54
+ * existing `~/.alfe/config.toml` `[runtimes.openclaw] workspace = ...`
55
+ * entries; semantically this is the runtime's home, not the agent CWD.
56
+ */
51
57
  workspace: string;
58
+ /**
59
+ * Agent workspace directory (e.g. ~/.openclaw/workspace) — the agent's
60
+ * CWD where SOUL.md / AGENTS.md / skills/ live. Convention-derived as
61
+ * `${workspace}/workspace` for openclaw; not configurable via TOML today.
62
+ */
63
+ agentWorkspace: string;
52
64
  }
53
65
  interface DaemonConfig {
54
66
  apiKey: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/gateway",
3
- "version": "0.0.44",
3
+ "version": "0.0.46",
4
4
  "description": "Alfe local gateway daemon — persistent control plane for agent integrations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -24,8 +24,8 @@
24
24
  "ws": "^8.18.0",
25
25
  "@alfe.ai/ai-proxy-local": "^0.0.8",
26
26
  "@alfe.ai/config": "^0.0.8",
27
- "@alfe.ai/integration-manifest": "^0.0.10",
28
- "@alfe.ai/integrations": "^0.0.28"
27
+ "@alfe.ai/integration-manifest": "^0.0.11",
28
+ "@alfe.ai/integrations": "^0.0.30"
29
29
  },
30
30
  "license": "UNLICENSED",
31
31
  "scripts": {