|
|
8ebc76931f
|
fix(plugin): normalize OpenClaw plugin config shapes
- Accept flat config, nested entry.config, or missing config
- Treat plugin as enabled unless explicitly disabled
- Log resolved runtime config for gateway diagnostics
|
2026-03-20 06:27:46 +00:00 |
|
|
|
eb43434e48
|
fix(plugin): correct telemetry server path for installed plugin
- Resolve telemetry.mjs relative to installed plugin root
- Update installer messaging from challengeUuid to apiKey
- Document correct OpenClaw plugin entry config structure
|
2026-03-20 06:24:40 +00:00 |
|
|
|
6d6d00437d
|
chore: add .gitignore for build artifacts
|
2026-03-19 18:20:43 +00:00 |
|
|
|
0dc824549a
|
feat: fix API Key authentication and payload alignment
- Update openclaw.plugin.json: replace challengeUuid with apiKey (optional)
- Fix tsconfig: use CommonJS module to avoid import.meta.url issues
- Fix plugin/index.ts: remove ESM-specific code, use __dirname
- Fix telemetry.mjs:
- Add loadavg to os imports, remove require() call
- Replace challengeUuid with apiKey in config
- Update endpoint to heartbeat-v2
- Add X-API-Key header when apiKey is configured
- Fix payload field names: agents, load_avg (array), uptime_seconds
- Change missing apiKey from error to warning
|
2026-03-19 18:20:29 +00:00 |
|
|
|
0debe835b4
|
feat: reorganize to standard OpenClaw plugin structure
New structure:
├── package.json # Root package
├── README.md # Documentation
├── plugin/ # OpenClaw plugin
│ ├── openclaw.plugin.json # Plugin manifest
│ ├── index.ts # Plugin entry (TypeScript)
│ ├── package.json
│ └── tsconfig.json
├── server/ # Telemetry sidecar
│ └── telemetry.mjs
├── skills/ # OpenClaw skills
└── scripts/
└── install.mjs # Installation script
Matches PaddedCell project structure.
Provides install.mjs with build/install/configure/uninstall commands.
|
2026-03-19 13:51:19 +00:00 |
|
|
|
a148c11e50
|
feat: implement HarborForge Monitor OpenClaw Plugin
Architecture:
- openclaw.plugin.json: Plugin manifest with config schema
- index.mjs: Plugin entry, lifecycle hooks (gateway:start/stop)
- sidecar/server.mjs: Independent Node process for telemetry
Features:
- Collects system metrics (CPU, memory, disk, load, uptime)
- Collects OpenClaw status (version, agents)
- HTTP heartbeat to HarborForge Monitor
- Config via ~/.openclaw/openclaw.json
- Sidecar auto-starts/stops with Gateway
Config options:
- enabled, backendUrl, identifier
- challengeUuid (required, from Monitor registration)
- reportIntervalSec, httpFallbackIntervalSec
- logLevel
Provides tool: harborforge_monitor_status
|
2026-03-19 13:37:11 +00:00 |
|
|
|
c8681af0ac
|
docs: add server connector plan
|
2026-03-11 21:35:28 +00:00 |
|