fix(heartbeat): inject current datetime into Phase 1 prompt

Phase 1 _decide() now includes "Current date/time: YYYY-MM-DD HH:MM UTC"
in the user prompt and instructs the LLM to use it for time-aware scheduling.
Without this, the LLM defaults to 'run' for any task description regardless
of whether it is actually due, defeating Phase 1's pre-screening purpose.

Closes #1929
This commit is contained in:
who96
2026-03-16 10:52:26 +08:00
committed by Xubin Ren
parent f9ba6197de
commit 0dda2b23e6
2 changed files with 55 additions and 1 deletions
+11 -1
View File
@@ -3,6 +3,7 @@
from __future__ import annotations
import asyncio
from datetime import datetime, timezone
from pathlib import Path
from typing import TYPE_CHECKING, Any, Callable, Coroutine
@@ -87,10 +88,19 @@ class HeartbeatService:
Returns (action, tasks) where action is 'skip' or 'run'.
"""
now_str = datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M UTC")
response = await self.provider.chat_with_retry(
messages=[
{"role": "system", "content": "You are a heartbeat agent. Call the heartbeat tool to report your decision."},
{"role": "system", "content": (
"You are a heartbeat agent. Call the heartbeat tool to report your decision. "
"The current date/time is provided so you can evaluate time-based conditions. "
"Choose 'run' if there are active tasks to execute. "
"Choose 'skip' if the file has no actionable tasks, if blocking conditions "
"are not yet met, or if tasks are scheduled for a future time that has not arrived yet."
)},
{"role": "user", "content": (
f"Current date/time: {now_str}\n\n"
"Review the following HEARTBEAT.md and decide whether there are active tasks.\n\n"
f"{content}"
)},