@rubytech/taskmaster 1.0.40 → 1.0.42

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.
@@ -37,7 +37,11 @@ function buildUserIdentitySection(ownerLine, isMinimal) {
37
37
  function buildTimeSection(params) {
38
38
  if (!params.userTimezone)
39
39
  return [];
40
- return ["## Current Date & Time", `Time zone: ${params.userTimezone}`, ""];
40
+ const lines = ["## Current Date & Time"];
41
+ if (params.userTime)
42
+ lines.push(`Now: ${params.userTime}`);
43
+ lines.push(`Time zone: ${params.userTimezone}`, "");
44
+ return lines;
41
45
  }
42
46
  function buildReplyTagsSection(isMinimal) {
43
47
  if (isMinimal)
@@ -378,6 +382,7 @@ export function buildAgentSystemPrompt(params) {
378
382
  ...buildUserIdentitySection(ownerLine, isMinimal),
379
383
  ...buildTimeSection({
380
384
  userTimezone,
385
+ userTime: params.userTime,
381
386
  }),
382
387
  "## Workspace Files (injected)",
383
388
  "These user-editable files are loaded by Taskmaster and included below in Project Context.",
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.40",
3
- "commit": "69794973c6f57b5a4ea0dcf020c84f8a3256394f",
4
- "builtAt": "2026-02-16T20:47:22.549Z"
2
+ "version": "1.0.42",
3
+ "commit": "0bb7245bb438755c6fcb527a5459e21f3c214692",
4
+ "builtAt": "2026-02-16T22:06:31.514Z"
5
5
  }