@masons/agent-network 0.5.15 → 0.5.16

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/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const PLUGIN_VERSION = "0.5.15";
1
+ export declare const PLUGIN_VERSION = "0.5.16";
2
2
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const PLUGIN_VERSION = "0.5.15";
1
+ export const PLUGIN_VERSION = "0.5.16";
@@ -72,6 +72,43 @@
72
72
  "type": "boolean",
73
73
  "description": "Check for plugin updates on startup (default: true)",
74
74
  "default": true
75
+ },
76
+ "enabled": {
77
+ "type": "boolean",
78
+ "description": "Enable or disable the MASONS Agent Network channel.",
79
+ "default": true
80
+ },
81
+ "defaultAccount": {
82
+ "type": "string",
83
+ "description": "Default account id for OpenClaw account-aware channel routing.",
84
+ "default": "default"
85
+ },
86
+ "accounts": {
87
+ "type": "object",
88
+ "description": "MASONS Agent Network runtime accounts.",
89
+ "additionalProperties": {
90
+ "type": "object",
91
+ "additionalProperties": false,
92
+ "properties": {
93
+ "connectorUrl": {
94
+ "type": "string",
95
+ "description": "MASONS Connector Gateway WebSocket URL"
96
+ },
97
+ "token": {
98
+ "type": "string",
99
+ "description": "MASONS runtime token"
100
+ }
101
+ },
102
+ "required": ["connectorUrl", "token"]
103
+ }
104
+ },
105
+ "pendingTarget": {
106
+ "type": "string",
107
+ "description": "Pending MASONS handle captured during invitation setup."
108
+ },
109
+ "needsProfile": {
110
+ "type": "boolean",
111
+ "description": "Whether profile completion is required before connection tools run."
75
112
  }
76
113
  }
77
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@masons/agent-network",
3
- "version": "0.5.15",
3
+ "version": "0.5.16",
4
4
  "description": "MASONS plugin for OpenClaw — connect your agent to the agent network",
5
5
  "license": "MIT",
6
6
  "author": "MASONS.ai <hello@masons.ai> (https://masons.ai)",