Major changes: - Renamed plugin id from harborforge-monitor to harbor-forge (TODO 4.1) - Removed sidecar server/ directory and spawn logic (TODO 4.2) - Added monitorPort to plugin config schema (TODO 4.3) - Added --install-cli flag to installer for building hf CLI (TODO 4.4) - skills/hf/ only deployed when --install-cli is present (TODO 4.5) - Plugin now serves telemetry data directly via tools - Installer handles migration from old plugin name - Bumped version to 0.2.0
18 lines
562 B
JSON
18 lines
562 B
JSON
{
|
|
"name": "harbor-forge-openclaw-plugin",
|
|
"version": "0.2.0",
|
|
"description": "OpenClaw plugin for HarborForge - project management, monitoring, and CLI integration",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "cd plugin && npm run build",
|
|
"install": "node scripts/install.mjs",
|
|
"install-cli": "node scripts/install.mjs --install-cli",
|
|
"uninstall": "node scripts/install.mjs --uninstall"
|
|
},
|
|
"keywords": ["openclaw", "plugin", "monitoring", "harborforge", "harbor-forge"],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|