@rubytech/taskmaster 1.19.0 → 1.19.1
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/workspace-migrations.js +14 -0
- package/dist/build-info.json +3 -3
- package/dist/control-ui/assets/{index-BuvDuhk9.js → index-mjAT1dyG.js} +292 -290
- package/dist/control-ui/assets/index-mjAT1dyG.js.map +1 -0
- package/dist/control-ui/index.html +1 -1
- package/dist/cron/preloaded.js +33 -0
- package/dist/gateway/control-ui.js +8 -6
- package/dist/gateway/protocol/schema/logs-chat.js +2 -0
- package/dist/gateway/server-http.js +2 -1
- package/dist/gateway/server-methods/access.js +13 -0
- package/dist/gateway/server-methods/logs.js +16 -1
- package/dist/gateway/server.impl.js +40 -18
- package/dist/hooks/bundled/ride-dispatch/handler.js +161 -50
- package/dist/media-understanding/defaults.js +1 -1
- package/package.json +1 -1
- package/taskmaster-docs/USER-GUIDE.md +1 -1
- package/templates/beagle-zanzibar/agents/admin/AGENTS.md +157 -41
- package/templates/beagle-zanzibar/agents/public/AGENTS.md +27 -8
- package/templates/beagle-zanzibar/skills/beagle-zanzibar/cron-template.json +20 -0
- package/templates/beagle-zanzibar/skills/beagle-zanzibar/references/pin-qr.md +22 -9
- package/templates/beagle-zanzibar/skills/stripe/references/payment-links.md +25 -15
- package/dist/control-ui/assets/index-BuvDuhk9.js.map +0 -1
|
@@ -690,6 +690,19 @@ async function patchBeagleAdminDriverReplyExplicit(_agentsPath, content) {
|
|
|
690
690
|
}
|
|
691
691
|
return result;
|
|
692
692
|
}
|
|
693
|
+
const ADMIN_DRIVER_CONTACT_OLD = `5. Message each driver in Swahili via the \`message\` tool with route details, pickup time, passengers, and job ID`;
|
|
694
|
+
const ADMIN_DRIVER_CONTACT_NEW = `5. Message each driver in Swahili via the \`message\` tool asking for their best fare quote — frame it as a FARE ENQUIRY, not a confirmed booking
|
|
695
|
+
- You are gathering quotes from a few trusted drivers; the customer will choose based on price, vehicle type, and availability
|
|
696
|
+
- Ask for their best fare and whether they are available at the pickup time
|
|
697
|
+
- Do NOT imply the job is theirs — make clear this is a competitive quote request
|
|
698
|
+
- Include: route, pickup time, passengers, luggage, and the job ID`;
|
|
699
|
+
async function patchBeagleAdminDriverContactTone(_agentsPath, content) {
|
|
700
|
+
if (!isBeagleTaxiAdmin(content))
|
|
701
|
+
return null;
|
|
702
|
+
if (!content.includes(ADMIN_DRIVER_CONTACT_OLD))
|
|
703
|
+
return null;
|
|
704
|
+
return content.replace(ADMIN_DRIVER_CONTACT_OLD, ADMIN_DRIVER_CONTACT_NEW);
|
|
705
|
+
}
|
|
693
706
|
const MIGRATIONS = [
|
|
694
707
|
{ name: "skill-recommendations", apply: patchSkillRecommendations },
|
|
695
708
|
{ name: "owner-learning", apply: patchOwnerLearning },
|
|
@@ -706,6 +719,7 @@ const MIGRATIONS = [
|
|
|
706
719
|
{ name: "beagle-admin-dispatch-instructions", apply: patchBeagleAdminDispatchInstructions },
|
|
707
720
|
{ name: "beagle-public-tourist-phone", apply: patchBeaglePublicTouristPhone },
|
|
708
721
|
{ name: "beagle-admin-driver-reply-explicit", apply: patchBeagleAdminDriverReplyExplicit },
|
|
722
|
+
{ name: "beagle-admin-driver-contact-tone", apply: patchBeagleAdminDriverContactTone },
|
|
709
723
|
];
|
|
710
724
|
/**
|
|
711
725
|
* Run all workspace migrations for every configured agent.
|
package/dist/build-info.json
CHANGED