feat: add heartbeat service for periodic task checking

Adds a heartbeat timer that reads /spiffs/config/HEARTBEAT.md every 30
minutes and sends a prompt to the agent if actionable tasks are found.
Skips empty lines, headers, and completed checkboxes. Includes a
heartbeat_trigger CLI command for manual testing.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
crispyberry
2026-02-09 01:23:13 +08:00
committed by Bo
parent dbab65bd47
commit ebff0ccb04
7 changed files with 224 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
#include "memory/session_mgr.h"
#include "proxy/http_proxy.h"
#include "tools/tool_web_search.h"
#include "heartbeat/heartbeat.h"
#include <string.h>
#include <stdio.h>
@@ -316,6 +317,18 @@ static int cmd_config_reset(int argc, char **argv)
return 0;
}
/* --- heartbeat_trigger command --- */
static int cmd_heartbeat_trigger(int argc, char **argv)
{
printf("Checking HEARTBEAT.md...\n");
if (heartbeat_trigger()) {
printf("Heartbeat: agent prompted with pending tasks.\n");
} else {
printf("Heartbeat: no actionable tasks found.\n");
}
return 0;
}
/* --- restart command --- */
static int cmd_restart(int argc, char **argv)
{
@@ -505,6 +518,14 @@ esp_err_t serial_cli_init(void)
};
esp_console_cmd_register(&config_reset_cmd);
/* heartbeat_trigger */
esp_console_cmd_t heartbeat_cmd = {
.command = "heartbeat_trigger",
.help = "Manually trigger a heartbeat check",
.func = &cmd_heartbeat_trigger,
};
esp_console_cmd_register(&heartbeat_cmd);
/* restart */
esp_console_cmd_t restart_cmd = {
.command = "restart",