@rubytech/taskmaster 1.11.0 → 1.11.2
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/dist/agents/taskmaster-tools.js +14 -0
- package/dist/agents/tool-policy.js +18 -0
- package/dist/agents/tools/brand-settings-tool.js +101 -0
- package/dist/agents/tools/channel-settings-tool.js +116 -0
- package/dist/agents/tools/logs-read-tool.js +67 -0
- package/dist/agents/tools/public-chat-settings-tool.js +128 -0
- package/dist/agents/tools/skill-manage-tool.js +105 -0
- package/dist/agents/tools/system-status-tool.js +64 -0
- package/dist/agents/tools/usage-report-tool.js +46 -0
- package/dist/build-info.json +3 -3
- package/dist/control-ui/assets/{index-YAjVyXqJ.js → index-s8s_YKvR.js} +494 -526
- package/dist/control-ui/assets/index-s8s_YKvR.js.map +1 -0
- package/dist/control-ui/index.html +1 -1
- package/dist/gateway/public-chat/deliver-otp.js +8 -6
- package/dist/gateway/public-chat/deliver-sms.js +61 -24
- package/package.json +1 -1
- package/skills/brevo/SKILL.md +9 -8
- package/skills/brevo/references/browser-setup.md +81 -23
- package/skills/brevo/references/sms-credits.md +68 -0
- package/skills/system-admin/SKILL.md +68 -0
- package/skills/twilio/SKILL.md +14 -11
- package/skills/twilio/references/browser-setup.md +15 -24
- package/taskmaster-docs/USER-GUIDE.md +3 -3
- package/dist/control-ui/assets/index-YAjVyXqJ.js.map +0 -1
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
# Twilio
|
|
1
|
+
# Twilio Voice — Guided Setup
|
|
2
2
|
|
|
3
|
-
Walk the user through getting Twilio credentials
|
|
3
|
+
Walk the user through getting Twilio credentials for the voice-call extension. Twilio signup requires identity verification — guide with clear instructions rather than browser automation.
|
|
4
|
+
|
|
5
|
+
**Important:** This skill is for voice calling only. If the user needs SMS verification for public chat, direct them to the Brevo skill — Brevo handles both email and SMS OTP.
|
|
4
6
|
|
|
5
7
|
---
|
|
6
8
|
|
|
7
9
|
## Prerequisites
|
|
8
10
|
|
|
9
11
|
- User has an email address and phone number
|
|
12
|
+
- User wants to use Twilio as their voice-call telephony provider
|
|
10
13
|
- Chat channel for sending instructions
|
|
11
14
|
|
|
12
15
|
---
|
|
@@ -15,7 +18,7 @@ Walk the user through getting Twilio credentials themselves. Unlike Tavily or Go
|
|
|
15
18
|
|
|
16
19
|
Tell the user what Twilio is and why they need it:
|
|
17
20
|
|
|
18
|
-
> "
|
|
21
|
+
> "Twilio is a telephony provider that lets your assistant make and receive phone calls. There's a free trial with enough credit to get started — no payment needed upfront.
|
|
19
22
|
>
|
|
20
23
|
> I'll walk you through the setup. You'll need to create the account yourself since Twilio asks for some personal details, but I'll tell you exactly what to do at each step."
|
|
21
24
|
|
|
@@ -35,13 +38,13 @@ Wait for the user to confirm they've completed signup.
|
|
|
35
38
|
|
|
36
39
|
If the user asks about onboarding questions Twilio shows after signup:
|
|
37
40
|
|
|
38
|
-
> "Those are just survey questions — pick anything. You can select **
|
|
41
|
+
> "Those are just survey questions — pick anything. You can select **Voice**, **Notifications**, and **No code**. They don't affect your account."
|
|
39
42
|
|
|
40
43
|
## Step 4: Get a phone number
|
|
41
44
|
|
|
42
45
|
> "On the Twilio dashboard, you should see a **trial phone number** offered to you. Click **'Get this number'** to claim it.
|
|
43
46
|
>
|
|
44
|
-
> If you don't see one, go to **Phone Numbers → Manage → Buy a number** in the left sidebar and get one with
|
|
47
|
+
> If you don't see one, go to **Phone Numbers → Manage → Buy a number** in the left sidebar and get one with Voice capability.
|
|
45
48
|
>
|
|
46
49
|
> Copy the phone number — it should look like **+15551234567**. Send it to me."
|
|
47
50
|
|
|
@@ -60,28 +63,15 @@ Wait for the user to send the credentials.
|
|
|
60
63
|
|
|
61
64
|
## Step 6: Save to Taskmaster
|
|
62
65
|
|
|
63
|
-
Once you have all three values (Account SID, Auth Token, phone number)
|
|
64
|
-
|
|
65
|
-
> "Now open your Taskmaster setup page:
|
|
66
|
-
>
|
|
67
|
-
> 1. Make sure **Public Chat** is enabled with **Phone OTP** or **Visitor chooses** mode
|
|
68
|
-
> 2. Click **'Edit'** on the **SMS Fallback** row
|
|
69
|
-
> 3. Paste in your **Account SID**, **Auth Token**, and **From Number**
|
|
70
|
-
> 4. Click **Save**
|
|
71
|
-
>
|
|
72
|
-
> Let me know when it's done!"
|
|
73
|
-
|
|
74
|
-
## Step 7: Confirm
|
|
75
|
-
|
|
76
|
-
Once the user confirms:
|
|
66
|
+
Once you have all three values (Account SID, Auth Token, phone number), save them as Twilio credentials for the voice-call extension using the appropriate configuration tool.
|
|
77
67
|
|
|
78
|
-
> "
|
|
68
|
+
> "I've saved your Twilio credentials. The voice-call extension can now make and receive calls through Twilio."
|
|
79
69
|
|
|
80
70
|
---
|
|
81
71
|
|
|
82
72
|
## If the user already has Twilio credentials
|
|
83
73
|
|
|
84
|
-
Skip to Step 5 — just ask for the Account SID, Auth Token, and a Twilio phone number with
|
|
74
|
+
Skip to Step 5 — just ask for the Account SID, Auth Token, and a Twilio phone number with Voice capability.
|
|
85
75
|
|
|
86
76
|
---
|
|
87
77
|
|
|
@@ -89,7 +79,8 @@ Skip to Step 5 — just ask for the Account SID, Auth Token, and a Twilio phone
|
|
|
89
79
|
|
|
90
80
|
| Question | Answer |
|
|
91
81
|
|----------|--------|
|
|
92
|
-
| "Is it free?" | The trial includes credit for
|
|
93
|
-
| "Can I
|
|
82
|
+
| "Is it free?" | The trial includes credit for testing. No card required. After that it's pay-as-you-go. |
|
|
83
|
+
| "Can I use Twilio for SMS too?" | Twilio is used for voice calling only in Taskmaster. For SMS verification codes, use Brevo instead — it handles both email and SMS with one API key. |
|
|
94
84
|
| "Where do I find my credentials later?" | Always at **console.twilio.com** — the Account SID and Auth Token are on the main dashboard. |
|
|
95
|
-
| "I already have Twilio but use it for something else" | That's fine — the same credentials work. Just make sure the phone number has
|
|
85
|
+
| "I already have Twilio but use it for something else" | That's fine — the same credentials work. Just make sure the phone number has Voice capability enabled. |
|
|
86
|
+
| "Can I use a different telephony provider?" | Yes — Taskmaster also supports Plivo and Telnyx for voice calling. |
|
|
@@ -1472,10 +1472,10 @@ By default, anyone who opens the public chat can start a conversation immediatel
|
|
|
1472
1472
|
| Method | How it works | What you need |
|
|
1473
1473
|
|--------|-------------|---------------|
|
|
1474
1474
|
| **Anonymous** | No verification — visitors chat immediately | Nothing (default) |
|
|
1475
|
-
| **Email OTP** | Visitors enter their email, receive a one-time code | A [
|
|
1476
|
-
| **SMS OTP** | Visitors enter their phone number, receive a one-time code | [
|
|
1475
|
+
| **Email OTP** | Visitors enter their email, receive a one-time code | A [Brevo](https://brevo.com) API key and a verified sender (free, no credit card). The sender address is configured in Brevo, not in Taskmaster. |
|
|
1476
|
+
| **SMS OTP** | Visitors enter their phone number, receive a one-time code | Same [Brevo](https://brevo.com) API key as email, plus prepaid SMS credits in your Brevo account |
|
|
1477
1477
|
|
|
1478
|
-
5. Enter your provider credentials —
|
|
1478
|
+
5. Enter your provider credentials — add the Brevo API key in the **API Keys** section on the Setup page. The same key serves both email and SMS verification. For SMS, purchase SMS credits in your Brevo dashboard.
|
|
1479
1479
|
6. Settings auto-save when you leave each field
|
|
1480
1480
|
|
|
1481
1481
|
Once enabled, visitors must authenticate before they can send their first message. Verified contact details are stored and available to the agent via the `verify_contact` tool, so your assistant knows who it's talking to.
|