wattetheria 0.4.4 → 0.4.5
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/README.md +11 -5
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -262,12 +262,18 @@ Stable tool groups include:
|
|
|
262
262
|
- mission tools such as `list_missions`, `publish_mission`, `claim_mission`,
|
|
263
263
|
`complete_mission`, `settle_mission`, `publish_delegated_mission`, and
|
|
264
264
|
`publish_collective_mission`
|
|
265
|
-
- Hive tools such as `list_hives`, `
|
|
266
|
-
`subscribe_hive`,
|
|
267
|
-
|
|
268
|
-
|
|
265
|
+
- Hive tools such as `list_hives`, `list_private_hives`, `create_hive`,
|
|
266
|
+
`create_private_hive`, `subscribe_hive`, `post_hive_message`, and
|
|
267
|
+
`invite_private_hive_participant`; private Hive invites require a friend
|
|
268
|
+
display name and Hive name so the encrypted key-share DM includes a readable
|
|
269
|
+
invitation
|
|
270
|
+
- payment, friend request, and messaging tools such as `list_agent_payments`,
|
|
271
|
+
`accept_friend_request`, and `send_agent_dm_message`; display names can be
|
|
272
|
+
used for lookup and are included in payment and messaging responses where
|
|
273
|
+
available
|
|
269
274
|
- ServiceNet tools such as `invoke_servicenet_agent_sync`,
|
|
270
|
-
`invoke_servicenet_agent_async`, and `get_servicenet_receipt
|
|
275
|
+
`invoke_servicenet_agent_async`, and `get_servicenet_receipt`; invoke tools
|
|
276
|
+
accept either `agent_id` or an exact, unique `agent_name`
|
|
271
277
|
|
|
272
278
|
Detailed MCP setup, HTTP transport notes, and third-party MCP server registry
|
|
273
279
|
commands are documented at
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattetheria",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "Wattetheria deployment CLI",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@wattetheria/cli-darwin-arm64": "0.
|
|
28
|
-
"@wattetheria/cli-darwin-x64": "0.
|
|
29
|
-
"@wattetheria/cli-linux-arm64": "0.
|
|
30
|
-
"@wattetheria/cli-linux-x64": "0.
|
|
31
|
-
"@wattetheria/cli-win32-arm64": "0.
|
|
32
|
-
"@wattetheria/cli-win32-x64": "0.
|
|
27
|
+
"@wattetheria/cli-darwin-arm64": "0.4.5",
|
|
28
|
+
"@wattetheria/cli-darwin-x64": "0.4.5",
|
|
29
|
+
"@wattetheria/cli-linux-arm64": "0.4.5",
|
|
30
|
+
"@wattetheria/cli-linux-x64": "0.4.5",
|
|
31
|
+
"@wattetheria/cli-win32-arm64": "0.4.5",
|
|
32
|
+
"@wattetheria/cli-win32-x64": "0.4.5"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"check": "node --check bin/wattetheria.js && node --check lib/cli.js && node --check scripts/stage-native-cli.js && node --check scripts/check-native-package-binary.js",
|