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.
- package/bin/cli.js +24 -22
- 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 =
|
|
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' ?
|
|
568
|
-
|
|
567
|
+
${topicsList ? `\nš¬ **Topics:**\n${topicsList}\n` : ''}${goalsList ? `\nšÆ **Goals:**\n${goalsList}\n` : ''}${expiresText !== 'never' ? `ā° Expires: ${expiresText}\n` : ''}
|
|
568
|
+
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
|
|
569
569
|
|
|
570
|
-
**
|
|
570
|
+
š¦ **Getting Started**
|
|
571
571
|
|
|
572
|
-
1
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
572
|
+
**1ļøā£ Install**
|
|
573
|
+
\`\`\`
|
|
574
|
+
npm install -g a2acalling
|
|
575
|
+
\`\`\`
|
|
576
576
|
|
|
577
|
-
2
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
577
|
+
**2ļøā£ Quick Setup** _(first time only)_
|
|
578
|
+
\`\`\`
|
|
579
|
+
a2a quickstart
|
|
580
|
+
\`\`\`
|
|
581
581
|
|
|
582
|
-
3
|
|
583
|
-
|
|
584
|
-
|
|
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
|
-
|
|
588
|
-
\`\`\`
|
|
589
|
-
a2a call "${ownerText || 'friend'}" "Hello! My owner asked me to reach out."
|
|
590
|
-
\`\`\`
|
|
592
|
+
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
|
|
591
593
|
|
|
592
|
-
**
|
|
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
|
-
|
|
599
|
+
š Docs: https://github.com/onthegonow/a2a_calling`;
|
|
598
600
|
|
|
599
601
|
console.log(invite);
|
|
600
602
|
console.log(`\n${'ā'.repeat(50)}`);
|