a2acalling 0.6.30 → 0.6.31

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