clawmon 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.
@@ -1,11 +1,12 @@
1
1
  {
2
+ "id": "clawmon",
2
3
  "name": "clawmon",
3
4
  "version": "0.1.0",
4
5
  "description": "Local task monitor with web UI — tracks running, stale, and failed tasks",
5
6
  "entry": "src/index.ts",
6
- "config": {
7
- "port": 7070,
8
- "db_dir": "~/.openclaw/monitor",
9
- "retention_days": 7
7
+ "configSchema": {
8
+ "port": { "type": "number", "default": 7070 },
9
+ "db_dir": { "type": "string", "default": "~/.openclaw/monitor" },
10
+ "retention_days": { "type": "number", "default": 7 }
10
11
  }
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmon",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Local task monitor plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",