story-kit: queue 202_story_make_agent_watchdog_interval_configurable_via_project_toml for QA

This commit is contained in:
Dave
2026-02-26 14:11:21 +00:00
parent 6a389d86ee
commit d44648e169

View File

@@ -0,0 +1,19 @@
---
name: "Make agent watchdog interval configurable via project.toml"
---
# Story 202: Make agent watchdog interval configurable via project.toml
## User Story
As a developer, I want to configure the agent watchdog polling interval in project.toml, so that I can tune the orphan-detection frequency for my environment.
## Acceptance Criteria
- [ ] project.toml supports an optional watchdog_interval_secs field (default 30s matching current hardcoded value)
- [ ] AgentPool::spawn_watchdog reads the configured interval instead of using a hardcoded constant
- [ ] Existing tests pass and new unit tests cover default and custom config values
## Out of Scope
- TBD