Schedule tool: scheduling as a regular Tool (replaces Scheduler)#2
Merged
Conversation
Expose scheduling as a regular ToolInterface: the agent calls 'schedule' with {after_seconds, message} and the user gets a one-shot reminder at that time. Each scheduled item is its own coroutine that awaits delay() then fires — no central timer loop, real wall-clock delays.
Removes src/Scheduler.php (logical-clock every/tick/run) and its test in favour of this. bin/claw wires the tool with the conversation's send() as the delivery sink. Reminders are in-memory and one-shot (not persisted yet).
74 tests, PHPStan level 8, php-cs-fixer — all green.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Turns scheduling into a regular
ToolInterfacethe agent invokes, instead of a separateSchedulerclass wired inbin/claw.src/Tool/ScheduleTool.php— toolschedulewith input{ after_seconds, message }. The user gets a one-shot reminder (⏰ <message>) at that time.awaitsdelay()then fires — no centralrun()/tick()loop, no logical clock, real wall-clock delays. This replaces the previous interval/tick design.src/Scheduler.phpandtests/SchedulerTest.php.bin/clawwires the tool with the conversation'ssend(...)as its delivery sink, so the tool stays decoupled from the Chat layer (it receives a\Closure(string): void).READMEstatus,ARCHITECTURE.mdfile layout).Behaviour & limits
risk = Safe(no confirmation prompt).Tests
tests/Tool/ScheduleToolTest.php: delivery after a real timed delay + input validation.74 tests pass, PHPStan level 8 clean, php-cs-fixer clean.