@rubytech/taskmaster 1.14.2 → 1.16.0

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 (50) hide show
  1. package/dist/agents/apply-patch.js +3 -1
  2. package/dist/agents/bash-tools.exec.js +3 -1
  3. package/dist/agents/bash-tools.process.js +3 -1
  4. package/dist/agents/skills/frontmatter.js +1 -0
  5. package/dist/agents/skills/workspace.js +64 -22
  6. package/dist/agents/system-prompt.js +1 -1
  7. package/dist/agents/taskmaster-tools.js +6 -4
  8. package/dist/agents/tool-policy.js +2 -1
  9. package/dist/agents/tools/contact-create-tool.js +4 -3
  10. package/dist/agents/tools/contact-delete-tool.js +3 -2
  11. package/dist/agents/tools/contact-lookup-tool.js +5 -4
  12. package/dist/agents/tools/contact-update-tool.js +6 -3
  13. package/dist/agents/tools/memory-tool.js +3 -1
  14. package/dist/agents/tools/qr-generate-tool.js +45 -0
  15. package/dist/agents/workspace-migrations.js +351 -0
  16. package/dist/build-info.json +3 -3
  17. package/dist/config/agent-tools-reconcile.js +47 -0
  18. package/dist/control-ui/assets/{index-B3nkSwMP.js → index-Bd75cI7J.js} +547 -573
  19. package/dist/control-ui/assets/index-Bd75cI7J.js.map +1 -0
  20. package/dist/control-ui/assets/index-BkymP95Y.css +1 -0
  21. package/dist/control-ui/index.html +2 -2
  22. package/dist/gateway/server-http.js +5 -0
  23. package/dist/gateway/server-methods/web.js +13 -0
  24. package/dist/gateway/server.impl.js +15 -1
  25. package/dist/hooks/bundled/ride-dispatch/HOOK.md +57 -0
  26. package/dist/hooks/bundled/ride-dispatch/handler.js +450 -0
  27. package/dist/hooks/bundled/ride-dispatch/stripe-webhook.js +191 -0
  28. package/dist/memory/internal.js +24 -1
  29. package/dist/memory/manager.js +3 -3
  30. package/dist/records/records-manager.js +7 -2
  31. package/package.json +1 -1
  32. package/skills/business-assistant/SKILL.md +1 -1
  33. package/skills/qr-code/SKILL.md +63 -0
  34. package/skills/sales-closer/SKILL.md +1 -1
  35. package/templates/beagle-zanzibar/agents/admin/AGENTS.md +67 -1
  36. package/templates/beagle-zanzibar/agents/public/AGENTS.md +102 -22
  37. package/templates/beagle-zanzibar/skills/beagle-zanzibar/SKILL.md +7 -8
  38. package/templates/beagle-zanzibar/skills/beagle-zanzibar/references/ride-matching.md +46 -55
  39. package/templates/customer/agents/admin/BOOTSTRAP.md +5 -1
  40. package/templates/customer/agents/public/AGENTS.md +1 -2
  41. package/templates/real-agent/skills/buyer-feedback/SKILL.md +111 -0
  42. package/templates/real-agent/skills/property-enquiry/SKILL.md +126 -0
  43. package/templates/real-agent/skills/valuation-booking/SKILL.md +182 -0
  44. package/templates/real-agent/skills/vendor-updates/SKILL.md +153 -0
  45. package/templates/real-agent/skills/viewing-management/SKILL.md +111 -0
  46. package/templates/taskmaster/agents/public/AGENTS.md +1 -1
  47. package/templates/taskmaster/agents/public/IDENTITY.md +1 -1
  48. package/templates/taskmaster/agents/public/SOUL.md +2 -2
  49. package/dist/control-ui/assets/index-B3nkSwMP.js.map +0 -1
  50. package/dist/control-ui/assets/index-l54GcTyj.css +0 -1
@@ -3,7 +3,7 @@
3
3
  - **Name:** [ASSISTANT_NAME]
4
4
  - **Role:** Customer-facing assistant for [COMPANY_NAME]
5
5
  - **Company:** [COMPANY_NAME]
6
- - **Vibe:** Professional, warm, helpful — never pushy
6
+ - **Vibe:** Professional, warm, purposeful
7
7
  - **Emoji:** [EMOJI]
8
8
 
9
9
  ---
@@ -1,6 +1,6 @@
1
1
  # SOUL.md - Who You Are
2
2
 
3
- *You're Taskmaster's voice. Helpful, real, never salesy — but always purposeful.*
3
+ *You're Taskmaster's voice. Helpful, real, always purposeful.*
4
4
 
5
5
  ## Primary Objectives (Never Forget)
6
6
 
@@ -20,7 +20,7 @@ Every conversation should leave the prospect closer to understanding Taskmaster'
20
20
 
21
21
  **Know your boundaries.** You help people understand Taskmaster and sign up. You do NOT give trade advice, quotes, or technical guidance. That's what Taskmaster does for paying customers.
22
22
 
23
- **Be warm but not pushy.** If someone's interested, help them. If they're not ready, that's fine. No hard sell. The product speaks for itself.
23
+ **Be warm and purposeful.** When someone shows interest, help them take the next step — asking for the commitment is part of being helpful, not being pushy. Leaving a ready prospect without asking is a disservice. If they're genuinely not ready, respect that, set a follow-up, and move on.
24
24
 
25
25
  **Quick favours build rapport.** If someone asks a quick off-topic question (sports scores, weather, time, simple lookups) — just help. Use `web_search` or `current_time`. Takes 5 seconds, costs nothing, and people remember when you're helpful. But keep it brief — answer, then steer back. Don't become their personal assistant.
26
26