@rubytech/taskmaster 1.0.42 → 1.0.44

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 (43) hide show
  1. package/dist/agents/skills/refresh.js +7 -1
  2. package/dist/agents/skills/workspace.js +47 -11
  3. package/dist/agents/system-prompt.js +2 -2
  4. package/dist/agents/tools/web-search.js +1 -1
  5. package/dist/build-info.json +3 -3
  6. package/dist/cli/provision-seed.js +4 -1
  7. package/dist/control-ui/assets/{index-kKBJzIuf.js → index-CpAWYZjj.js} +55 -48
  8. package/dist/control-ui/assets/index-CpAWYZjj.js.map +1 -0
  9. package/dist/control-ui/assets/{index-BfV0Mtl7.css → index-D5w5UtCL.css} +1 -1
  10. package/dist/control-ui/index.html +2 -2
  11. package/dist/gateway/server/ws-connection/message-handler.js +1 -0
  12. package/dist/gateway/server-broadcast.js +15 -1
  13. package/dist/gateway/server-constants.js +1 -1
  14. package/dist/gateway/server-methods/apikeys.js +3 -3
  15. package/dist/gateway/server.impl.js +32 -1
  16. package/dist/memory/manager.js +37 -1
  17. package/extensions/diagnostics-otel/node_modules/.bin/acorn +0 -0
  18. package/extensions/googlechat/node_modules/.bin/taskmaster +0 -0
  19. package/extensions/line/node_modules/.bin/taskmaster +0 -0
  20. package/extensions/matrix/node_modules/.bin/markdown-it +0 -0
  21. package/extensions/matrix/node_modules/.bin/taskmaster +0 -0
  22. package/extensions/memory-lancedb/node_modules/.bin/arrow2csv +0 -0
  23. package/extensions/memory-lancedb/node_modules/.bin/openai +0 -0
  24. package/extensions/msteams/node_modules/.bin/taskmaster +0 -0
  25. package/extensions/nostr/node_modules/.bin/taskmaster +0 -0
  26. package/extensions/nostr/node_modules/.bin/tsc +0 -0
  27. package/extensions/nostr/node_modules/.bin/tsserver +0 -0
  28. package/extensions/zalo/node_modules/.bin/taskmaster +0 -0
  29. package/extensions/zalouser/node_modules/.bin/taskmaster +0 -0
  30. package/package.json +54 -64
  31. package/scripts/install.sh +0 -0
  32. package/skills/google-ai/SKILL.md +29 -0
  33. package/skills/google-ai/references/browser-setup.md +90 -0
  34. package/skills/tavily/SKILL.md +28 -0
  35. package/skills/tavily/references/browser-setup.md +100 -0
  36. package/taskmaster-docs/USER-GUIDE.md +36 -10
  37. package/templates/.DS_Store +0 -0
  38. package/templates/customer/.DS_Store +0 -0
  39. package/templates/customer/agents/.DS_Store +0 -0
  40. package/templates/customer/agents/admin/BOOTSTRAP.md +20 -8
  41. package/templates/taskmaster/.gitignore +1 -0
  42. package/templates/tradesupport/agents/admin/BOOTSTRAP.md +13 -2
  43. package/dist/control-ui/assets/index-kKBJzIuf.js.map +0 -1
@@ -16,6 +16,7 @@ Explain that there's a second assistant — the **public agent** — that handle
16
16
 
17
17
  Ask conversationally, one thing at a time:
18
18
  - **Owner's name** (the person you're talking to)
19
+ - **Phone number** (international format, e.g., +44 7504 472444)
19
20
  - **Business name**
20
21
  - **Location**
21
22
  - **Working hours**
@@ -23,20 +24,20 @@ Ask conversationally, one thing at a time:
23
24
 
24
25
  ## Step 4: Save Everything
25
26
 
26
- Update these files with the collected info:
27
+ Use your `write` tool to update workspace files and `memory_write` for memory files. Never output shell commands or ask the admin to run terminal commands.
27
28
 
28
29
  **Your files (admin agent):**
29
- 1. **IDENTITY.md** — Replace `[ASSISTANT_NAME]` with your chosen name
30
- 2. **USER.md** — Fill in owner name, business name, location, working hours
30
+ 1. **IDENTITY.md** — Use `write` to replace `[ASSISTANT_NAME]` with your chosen name
31
+ 2. **USER.md** — Use `write` to fill in owner name, phone number, business name, location, working hours
31
32
 
32
33
  **Public agent files** (your counterpart at `../public/`):
33
- 3. **`../public/IDENTITY.md`** — Replace `[ASSISTANT_NAME]` with the public agent's chosen name
34
+ 3. **`../public/IDENTITY.md`** — Use `write` to replace `[ASSISTANT_NAME]` with the public agent's chosen name
34
35
 
35
36
  **Shared memory** (accessible by both agents):
36
- 4. **`memory/shared/business.md`** — Write the key business details: owner name, business name, location, working hours, and anything else relevant. **This is essential** — the public agent doesn't have USER.md and relies on shared memory to know the business owner's name, what the business does, and where it's based. Without this file, the public agent can't answer basic customer questions.
37
+ 4. **`memory/shared/business.md`** — Use `memory_write` to save the key business details: owner name, business name, location, working hours, and anything else relevant. **This is essential** — the public agent doesn't have USER.md and relies on shared memory to know the business owner's name, what the business does, and where it's based. Without this file, the public agent can't answer basic customer questions.
37
38
 
38
39
  **Website summary** (if a website was provided):
39
- 5. **`memory/public/website.md`** — Use `document_read` to fetch the website and write a comprehensive summary covering: what the business does, services offered, pricing (if public), location and coverage area, contact details, opening hours, and any other customer-relevant information. This becomes a key knowledge source for the public agent when answering customer enquiries.
40
+ 5. **`memory/public/website.md`** — Use `document_read` to fetch the website, then `memory_write` to save a comprehensive summary covering: what the business does, services offered, pricing (if public), location and coverage area, contact details, opening hours, and any other customer-relevant information. This becomes a key knowledge source for the public agent when answering customer enquiries.
40
41
 
41
42
  All other files (SOUL.md, AGENTS.md, etc.) are already generic and reference USER.md or shared memory — no changes needed.
42
43
 
@@ -46,7 +47,18 @@ The paired device (self-chat) already has admin access. Ask if they want to add
46
47
 
47
48
  If yes, use the `authorize_admin` tool with their phone number (international format, e.g., +447504472444).
48
49
 
49
- ## Step 6: Explain What's Next
50
+ ## Step 6: Help with API Keys
51
+
52
+ Two free API keys unlock important capabilities. Offer to help the admin get them — use the browser to walk through signup and show screenshots so the user can follow along.
53
+
54
+ - **Tavily** (web search) — load the `tavily` skill's `references/browser-setup.md` and follow its steps
55
+ - **Google AI** (voice notes + video) — load the `google-ai` skill's `references/browser-setup.md` and follow its steps
56
+
57
+ If the admin prefers to do it themselves, direct them to their Taskmaster setup page (API Keys section) and explain where to sign up: [app.tavily.com](https://app.tavily.com) for Tavily, [aistudio.google.com](https://aistudio.google.com) for Google AI.
58
+
59
+ These keys are optional — the assistant works without them. Don't pressure. If the admin wants to skip this and come back later, that's fine.
60
+
61
+ ## Step 7: Explain What's Next
50
62
 
51
63
  Tell them:
52
64
  - They can message anytime to update business info
@@ -54,7 +66,7 @@ Tell them:
54
66
  - They (admin) get full access to configure everything
55
67
  - You'll learn their business as you go
56
68
 
57
- ## Step 7: Delete This File
69
+ ## Step 8: Delete This File
58
70
 
59
71
  Once setup is complete, create a file called `.bootstrap-done` in this directory (empty content is fine), then delete this file. The `.bootstrap-done` marker prevents this onboarding from reappearing.
60
72
 
@@ -0,0 +1 @@
1
+ .DS_Store
@@ -47,7 +47,18 @@ The paired device (self-chat) already has admin access. Ask if they want to add
47
47
 
48
48
  If yes, use the `authorize_admin` tool with their phone number (international format, e.g., +447504472444).
49
49
 
50
- ## Step 6: Explain What's Next
50
+ ## Step 6: Help with API Keys
51
+
52
+ Two free API keys unlock important capabilities. Offer to help the admin get them — use the browser to walk through signup and show screenshots so the user can follow along.
53
+
54
+ - **Tavily** (web search) — load the `tavily` skill's `references/browser-setup.md` and follow its steps
55
+ - **Google AI** (voice notes + video) — load the `google-ai` skill's `references/browser-setup.md` and follow its steps
56
+
57
+ If the admin prefers to do it themselves, direct them to their Taskmaster setup page (API Keys section) and explain where to sign up: [app.tavily.com](https://app.tavily.com) for Tavily, [aistudio.google.com](https://aistudio.google.com) for Google AI.
58
+
59
+ These keys are optional — the assistant works without them. Don't pressure. If the admin wants to skip this and come back later, that's fine.
60
+
61
+ ## Step 7: Explain What's Next
51
62
 
52
63
  Tell them:
53
64
  - They can message anytime to update business info
@@ -55,7 +66,7 @@ Tell them:
55
66
  - They (admin) get full access to configure everything
56
67
  - You'll learn their business as you go
57
68
 
58
- ## Step 7: Delete This File
69
+ ## Step 8: Delete This File
59
70
 
60
71
  Once setup is complete, create a file called `.bootstrap-done` in this directory (empty content is fine), then delete this file. The `.bootstrap-done` marker prevents this onboarding from reappearing.
61
72