@prefactor/openclaw 0.0.5 → 0.0.6

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/README.md CHANGED
@@ -2,6 +2,44 @@
2
2
 
3
3
  OpenClaw lifecycle event monitoring and instrumentation for Prefactor.
4
4
 
5
+ ## Overview
6
+
7
+ This plugin provides lifecycle event monitoring and instrumentation for OpenClaw agents. It automatically collects agent runtime operations and sends them to Prefactor.
8
+
9
+ ## Getting Started
10
+
11
+ To get started with `@prefactor/openclaw`, follow these steps:
12
+
13
+ 1. Install the plugin:
14
+
15
+ ```bash
16
+ openclaw plugins install @prefactor/openclaw
17
+ ```
18
+
19
+ **Note**: As of OpenClaw 2026.2.9 (33c75cb) installing the plugin will raise the following error:
20
+
21
+ > [openclaw] Failed to start CLI: Error: Config validation failed: plugins.entries.openclaw: plugin not found: openclaw
22
+
23
+ For now this is related to the following bug: https://github.com/openclaw/openclaw/pull/7090
24
+
25
+ You should continue with the following steps.
26
+
27
+
28
+ 2. Enable the plugin:
29
+
30
+ ```bash
31
+ openclaw plugins enable prefactor
32
+ ```
33
+
34
+ 3. Get your Prefactor agent credentials from the Prefactor dashboard.
35
+
36
+ 4. Configure the plugin to use your agent credentials with following commands:
37
+ ```bash
38
+ openclaw config set plugins.entries.prefactor.config.agentId "${PREFACTOR_AGENT_ID}"
39
+ openclaw config set plugins.entries.prefactor.config.apiToken "${PREFACTOR_API_TOKEN}"
40
+ openclaw config set plugins.entries.prefactor.config.apiUrl "${PREFACTOR_API_URL}"
41
+ ```
42
+
5
43
  ## Configuration
6
44
 
7
45
  Enable the plugin in `~/.openclaw/.openclaw.json`:
@@ -48,10 +86,6 @@ openclaw config set plugins.entries.prefactor.config.apiToken "${PREFACTOR_API_T
48
86
  openclaw config set plugins.entries.prefactor.config.apiUrl "${PREFACTOR_API_URL}"
49
87
  ```
50
88
 
51
- ## Overview
52
-
53
- This plugin provides lifecycle event monitoring and instrumentation for OpenClaw agents. It automatically collects agent runtime operations and sends them to Prefactor.
54
-
55
89
 
56
90
  ## License
57
91
 
package/dist/index.cjs CHANGED
@@ -4945,7 +4945,7 @@ function createSessionStateManager(agent, logger, config) {
4945
4945
  // packages/openclaw/package.json
4946
4946
  var package_default = {
4947
4947
  name: "@prefactor/openclaw",
4948
- version: "0.0.4",
4948
+ version: "0.0.7",
4949
4949
  description: "OpenClaw lifecycle event monitoring and instrumentation for Prefactor",
4950
4950
  type: "module",
4951
4951
  main: "./dist/index.cjs",
@@ -5246,4 +5246,4 @@ Timestamp: ${new Date(startTime).toISOString()}`
5246
5246
  });
5247
5247
  }
5248
5248
 
5249
- //# debugId=D4B18AF97BDA921864756E2164756E21
5249
+ //# debugId=A57DF2B62F488B0B64756E2164756E21
package/dist/index.js CHANGED
@@ -4925,7 +4925,7 @@ function createSessionStateManager(agent, logger, config) {
4925
4925
  // packages/openclaw/package.json
4926
4926
  var package_default = {
4927
4927
  name: "@prefactor/openclaw",
4928
- version: "0.0.4",
4928
+ version: "0.0.7",
4929
4929
  description: "OpenClaw lifecycle event monitoring and instrumentation for Prefactor",
4930
4930
  type: "module",
4931
4931
  main: "./dist/index.cjs",
@@ -5229,4 +5229,4 @@ export {
5229
5229
  register as default
5230
5230
  };
5231
5231
 
5232
- //# debugId=E04062F21E7C9CFC64756E2164756E21
5232
+ //# debugId=BD459D824B46AA1D64756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prefactor/openclaw",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "OpenClaw lifecycle event monitoring and instrumentation for Prefactor",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",