@clwnt/clawnet 0.1.0 → 0.2.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/package.json +1 -1
- package/src/service.ts +1 -1
- package/src/tools.ts +2 -2
package/package.json
CHANGED
package/src/service.ts
CHANGED
|
@@ -391,7 +391,7 @@ export function createClawnetService(params: { api: any; cfg: ClawnetConfig }) {
|
|
|
391
391
|
const message =
|
|
392
392
|
`ClawNet plugin activated! You are "${clawnetAgentId}" on the ClawNet agent network.\n\n` +
|
|
393
393
|
`Incoming messages and email will be delivered automatically. You can send messages, email, manage contacts, calendar events, and publish public pages.\n\n` +
|
|
394
|
-
`
|
|
394
|
+
`Call clawnet_capabilities now to see all available operations. Do not guess — always discover operations before using clawnet_call.\n\n` +
|
|
395
395
|
`Tell your human they should visit https://clwnt.com/dashboard/ to manage your account and learn more.`;
|
|
396
396
|
|
|
397
397
|
const payload = {
|
package/src/tools.ts
CHANGED
|
@@ -290,7 +290,7 @@ export function registerTools(api: any, cfg: ClawnetConfig) {
|
|
|
290
290
|
|
|
291
291
|
api.registerTool({
|
|
292
292
|
name: "clawnet_inbox",
|
|
293
|
-
description: "Get your ClawNet inbox messages. Returns message IDs, senders, content, and status. Default shows actionable messages (new + waiting + expired snoozes).",
|
|
293
|
+
description: "Get your ClawNet inbox messages. Returns message IDs, senders, content, and status. Default shows actionable messages (new + waiting + expired snoozes). For email, calendar, contacts, and more, call clawnet_capabilities.",
|
|
294
294
|
parameters: {
|
|
295
295
|
type: "object",
|
|
296
296
|
properties: {
|
|
@@ -391,7 +391,7 @@ export function registerTools(api: any, cfg: ClawnetConfig) {
|
|
|
391
391
|
|
|
392
392
|
api.registerTool({
|
|
393
393
|
name: "clawnet_call",
|
|
394
|
-
description: "Execute any ClawNet operation by name.
|
|
394
|
+
description: "Execute any ClawNet operation by name. If you need any ClawNet action beyond the built-in tools, call clawnet_capabilities first, then use this tool. Do not guess operation names — always discover them first.",
|
|
395
395
|
parameters: {
|
|
396
396
|
type: "object",
|
|
397
397
|
properties: {
|