@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.
@@ -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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.19.0",
3
- "commit": "3f4e52e4b96521b37a97439b7670ca9a233dd9be",
4
- "builtAt": "2026-03-06T06:52:17.993Z"
2
+ "version": "1.19.1",
3
+ "commit": "30511004b7e6a6d7a2e6bc573cacd5eedf07620c",
4
+ "builtAt": "2026-03-06T14:26:40.923Z"
5
5
  }