OpenClaw plugin for logical multi-session isolation and scoped XWorkmate artifact manifests.
XWorkmate talks to OpenClaw through xworkmate-bridge using the existing
/gateway/openclaw task contract. The bridge sends chat.send, waits for
agent.wait, then asks this plugin for a session/run-scoped artifact manifest.
The APP can then sync generated files into its local thread workspace without
changing the UI or adding provider-specific routes.
This plugin is not a scheduler. OpenClaw core owns sub-agents, multi-agent routing, queues, cron, and cross-session execution. This package only adapts those existing OpenClaw multi-task/session identities into isolated artifact directories and signed artifact reads.
It registers four Gateway methods:
xworkmate.artifacts.prepare
xworkmate.artifacts.export
xworkmate.artifacts.list
xworkmate.artifacts.read
prepare creates a per-task artifact scope under tasks/ in the resolved OpenClaw workspace. export
and read then return safe, relative artifact entries that XWorkmate Bridge can normalize
into the APP artifacts[] contract.
Install from the npm package through OpenClaw:
openclaw plugins install openclaw-multi-session-plugins
openclaw plugins enable openclaw-multi-session-pluginsOr install from a Git checkout for development:
git clone https://github.com/x-evor/openclaw-multi-session-plugins.git
openclaw plugins install --link ./openclaw-multi-session-plugins
openclaw plugins enable openclaw-multi-session-pluginsEquivalent config shape for a linked checkout:
{
"plugins": {
"load": {
"paths": [
"/path/to/openclaw-multi-session-plugins"
]
},
"entries": {
"openclaw-multi-session-plugins": {
"enabled": true
}
}
}
}Prepare request params are supplied by the OpenClaw host, bridge, or APP
runtime. On OpenClaw runtimes that expose a trusted plugin sessionScope, the
plugin uses that scope first. Otherwise it falls back to bridge/app runtime
params. The plugin treats sessionKey, runId, and workspaceDir as the
mapping into OpenClaw's built-in multi-session model; it does not parse paths
from chat text and does not invent fallback session/run identities. The optional
agent tool does not expose these fields to the model; it only uses host-injected
tool context.
{
"sessionKey": "thread-main",
"runId": "turn-1",
"workspaceDir": "/home/user/.openclaw/workspace"
}Prepare response payload:
{
"runId": "turn-1",
"sessionKey": "thread-main",
"remoteWorkingDirectory": "/home/user/.openclaw/workspace",
"remoteWorkspaceRefKind": "remotePath",
"artifactScope": "tasks/thread-main-.../turn-1-...",
"scopeKind": "task",
"artifactDirectory": "/home/user/.openclaw/workspace/tasks/thread-main-.../turn-1-...",
"relativeArtifactDirectory": "tasks/thread-main-.../turn-1-...",
"warnings": []
}Export request params:
{
"sessionKey": "thread-main",
"runId": "turn-1",
"artifactScope": "tasks/thread-main-.../turn-1-...",
"sinceUnixMs": 1770000000000,
"maxFiles": 64,
"maxInlineBytes": 10485760
}Export response payload:
{
"runId": "turn-1",
"sessionKey": "thread-main",
"remoteWorkingDirectory": "/home/user/.openclaw/workspace",
"remoteWorkspaceRefKind": "remotePath",
"artifactScope": "tasks/thread-main-.../turn-1-...",
"scopeKind": "task",
"artifacts": [
{
"relativePath": "reports/final.md",
"label": "final.md",
"contentType": "text/markdown",
"sizeBytes": 1234,
"sha256": "...",
"artifactRef": "...",
"artifactScope": "tasks/thread-main-.../turn-1-...",
"scopeKind": "task"
}
],
"warnings": []
}Files at or below maxInlineBytes also include encoding: "base64" and content.
When artifactScope is omitted, export/list defaults to the current task scope
derived from sessionKey/runId. sinceUnixMs is only a filter inside that task
scope. The plugin does not adopt files from the workspace root; agents must
write final deliverables directly into the prepared artifactDirectory.
The plugin never scans workspace root, owners/*/threads/*, or any previous
thread workspace as a fallback and does not borrow artifacts from earlier task
scopes.
Each exported artifact includes artifactRef, a plugin-signed reference over
the issued session/run scope, artifact scope, path, size, and SHA-256 digest. read accepts
artifactScope + relativePath for the current sessionKey/runId task scope.
Signed task artifactRef values are accepted only for the same sessionKey/runId
that issued them. There is no unscoped arbitrary workspace read API.
After installation, enable the optional agent tool if you want OpenClaw chat to show a quick artifact table:
{
"agents": {
"list": [
{
"id": "main",
"tools": {
"allow": ["openclaw_multi_session_artifacts"]
}
}
]
}
}Then ask OpenClaw to list artifacts in the current workspace. The tool returns a Markdown table with the workspace path, relative file paths, content types, file sizes, and hash prefixes. Files are still stored in the OpenClaw workspace, so local users can open or download them directly from that workspace path.
Gateway clients can use:
xworkmate.artifacts.preparebeforechat.sendto allocate a task artifact directory.- Keep the prepared
artifactScope/artifactDirectoryin the gateway artifact pipeline, not inchat.sendparams. Ifchat.sendreturns a different OpenClawrunId, prepare/export with that actualrunIdinstead of the bridge request id. openclaw_multi_session_agentsfrom an OpenClaw task to call XWorkmate Bridge/acp/rpcwithmultiAgent=true, while derivingsessionKey,runId, andworkspaceDirfrom the host task context instead of model-controlled tool parameters.xworkmate.agents.runfor trusted gateway callers that need the same bridge-backed multi-agent run and artifact-scope export in one method.xworkmate.artifacts.listfor a metadata-only manifest and Markdown table.xworkmate.artifacts.readwithartifactScopeandrelativePathfor one task file.xworkmate.artifacts.readwithartifactReffor a plugin-returned task file.xworkmate.artifacts.exportwithartifactScopeafteragent.waitfor the XWorkmate APP sync path.
Large files are metadata-only in the export payload, but XWorkmate Bridge can
generate its own signed download URL and call xworkmate.artifacts.read as the
only remote file access path.
- Only files inside the resolved OpenClaw workspace are exported.
.git,.openclaw,.xworkmate,.pi, transient framework state, and dependency folders are excluded from task artifact exports.dist/,build/, and other delivery directories inside the prepared task scope are exported recursively.- Export never adopts files from the workspace root or OpenClaw owner/thread workspaces; agents must write into the prepared task scope.
- Symlinks are skipped to avoid workspace escape.
- Files larger than
maxInlineBytesare listed with metadata and a warning, but are not inlined. artifactScopemust betasks/<safe-session-key>/<safe-run-id>.exportandlistdefault to the current task scope whenartifactScopeis omitted.- Direct
artifactScope + relativePathreads and scoped exports must match the suppliedsessionKey/runId. artifactRefis bound to the issued session/run and cannot be reused from another run.artifactScope,artifactRef, andrelativePathmust stay inside the workspace; absolute paths,.., empty path segments, and symlink escapes are rejected.
pnpm install
pnpm test
pnpm typecheck
pnpm pack:check