clawmatrix 0.5.0 → 0.6.0
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/cli/bin/clawmatrix.mjs +411 -12
- package/cli/skills/clawmatrix/SKILL.md +49 -0
- package/package.json +1 -1
- package/src/api.ts +476 -3
- package/src/automation.ts +90 -1
- package/src/cluster-service.ts +24 -9
- package/src/config.ts +22 -16
- package/src/connection.ts +20 -0
- package/src/device-info.ts +10 -0
- package/src/health-tracker.ts +25 -5
- package/src/index.ts +285 -0
- package/src/knowledge-sync.ts +7 -0
- package/src/peer-manager.ts +38 -15
- package/src/router.ts +21 -3
- package/src/sentinel.ts +1 -1
- package/src/types.ts +1 -0
package/src/types.ts
CHANGED
|
@@ -388,6 +388,7 @@ export interface DeviceInfo {
|
|
|
388
388
|
totalMemoryMB: number; // total system memory in MB
|
|
389
389
|
hostname: string; // machine hostname
|
|
390
390
|
openclawVersion?: string; // e.g. "2026.3.7"
|
|
391
|
+
clawmatrixVersion?: string; // e.g. "0.5.0"
|
|
391
392
|
cwd?: string; // process.cwd() at gateway startup
|
|
392
393
|
workspace?: string; // OpenClaw workspace dir (agents.defaults.workspace)
|
|
393
394
|
}
|