a2acalling 0.6.30 → 0.6.32

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.
Files changed (2) hide show
  1. package/bin/cli.js +25 -24
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -466,8 +466,7 @@ const commands = {
466
466
  const ownerName = args.flags.owner || args.flags.o || configAgent.owner || configAgent.name || null;
467
467
 
468
468
  // Get topics from disclosure manifest based on tier (with inheritance)
469
- const manifest = loadManifest();
470
- const tierTopics = getTopicsForTier(manifest, tier);
469
+ const tierTopics = getTopicsForTier(tier);
471
470
 
472
471
  // Parse custom topics if provided, otherwise use tier topics
473
472
  let allowedTopics;
@@ -557,44 +556,46 @@ const commands = {
557
556
  ? `**${ownerText}** invites you to connect with their agent **${myAgentName}**`
558
557
  : `You're invited to connect with **${myAgentName}**`;
559
558
 
560
- const invite = `šŸ“žšŸ—£ļø **Agent-to-Agent Call Invite**
559
+ const invite = `šŸ¤ **Agent-to-Agent Invite**
561
560
 
562
561
  ${inviteHeader}
563
562
 
564
563
  \`\`\`
565
564
  ${inviteUrl}
566
565
  \`\`\`
567
- ${topicsList ? `\n**Topics:**\n${topicsList}\n` : ''}${goalsList ? `\n**Goals:**\n${goalsList}\n` : ''}${expiresText !== 'never' ? `\nā° Expires: ${expiresText}\n` : ''}
568
- ────────────────────────────────────────────────
566
+ ${topicsList ? `\nšŸ’¬ **Topics:**\n${topicsList}\n` : ''}${goalsList ? `\nšŸŽÆ **Goals:**\n${goalsList}\n` : ''}${expiresText !== 'never' ? `ā° Expires: ${expiresText}\n` : ''}
567
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
569
568
 
570
- **Setup Instructions**
569
+ šŸ“¦ **Getting Started**
571
570
 
572
- 1. Install the A2A package:
573
- \`\`\`
574
- npm install -g a2acalling
575
- \`\`\`
571
+ **1ļøāƒ£ Install**
572
+ \`\`\`
573
+ npm install -g a2acalling
574
+ \`\`\`
576
575
 
577
- 2. Run first-time setup (configures your agent's port, hostname, and disclosure topics):
578
- \`\`\`
579
- a2a quickstart
580
- \`\`\`
576
+ **2ļøāƒ£ Quick Setup** _(first time only)_
577
+ \`\`\`
578
+ a2a quickstart
579
+ \`\`\`
581
580
 
582
- 3. Add this contact to your agent's address book:
583
- \`\`\`
584
- a2a add "${inviteUrl}" "${ownerText || 'friend'}"
585
- \`\`\`
581
+ **3ļøāƒ£ Add Contact**
582
+ \`\`\`
583
+ a2a add "${inviteUrl}" "${ownerText || 'friend'}"
584
+ \`\`\`
585
+
586
+ **4ļøāƒ£ Say Hello!**
587
+ \`\`\`
588
+ a2a call "${ownerText || 'friend'}" "Hello! My owner asked me to reach out."
589
+ \`\`\`
586
590
 
587
- 4. Start a conversation:
588
- \`\`\`
589
- a2a call "${ownerText || 'friend'}" "Hello! My owner asked me to reach out."
590
- \`\`\`
591
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
591
592
 
592
- **Quick one-liner (if already set up):**
593
+ ⚔ **One-liner** _(already set up?)_
593
594
  \`\`\`
594
595
  a2a add "${inviteUrl}" "${ownerText || 'friend'}" && a2a call "${ownerText || 'friend'}" "Hello!"
595
596
  \`\`\`
596
597
 
597
- šŸ“– Protocol docs: https://github.com/onthegonow/a2a_calling`;
598
+ šŸ”— Docs: https://github.com/onthegonow/a2a_calling`;
598
599
 
599
600
  console.log(invite);
600
601
  console.log(`\n${'─'.repeat(50)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a2acalling",
3
- "version": "0.6.30",
3
+ "version": "0.6.32",
4
4
  "description": "Agent-to-agent calling for OpenClaw - A2A agent communication",
5
5
  "main": "src/index.js",
6
6
  "bin": {