docs(skill): correct schedule firing claim in self-configuration skill - #4352
Draft
amelia-letta wants to merge 1 commit into
Draft
docs(skill): correct schedule firing claim in self-configuration skill#4352amelia-letta wants to merge 1 commit into
amelia-letta wants to merge 1 commit into
Conversation
Scheduled tasks no longer fire only while a session/listener runs: since LET-9692, cloud schedules are durable and are the default for cloud agents. The claim now distinguishes local-runner schedules (session-bound) from cloud schedules, matching the scheduling-tasks skill and src/cli/subcommands/cron-runner.ts. Builtin-skill-watch: self-configuration@9ead5f0480b2-d0e37ab61fdb329d Co-Authored-By: Letta Code <noreply@letta.com>
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.
Builtin-skill-watch: self-configuration@9ead5f0480b2-d0e37ab61fdb329d
Selected skill:
self-configuration(src/skills/builtin/self-configuration)Stale claim: SKILL.md said "Scheduled tasks fire only while a Letta session/listener is running." Since LET-9692,
letta cronhas two runners: local schedules (~/.letta/crons.json, executed by the WS listener on this device) and durable cloud schedules fired by a cloud worker, which are the default for cloud agents. The siblingscheduling-tasksskill already documents the distinction.Current owning source:
src/cli/subcommands/cron-runner.ts(runner resolution, cloud default for cloud agents) andsrc/cli/subcommands/cron.ts(runner docs);src/skills/builtin/scheduling-tasks/SKILL.mdstates "Local schedules only fire while a Letta session is running on their computer ... Cloud schedules fire from the cloud regardless."Change: one sentence in the Schedules section now distinguishes local-runner schedules (session-bound) from cloud schedules and defers placement rules to
scheduling-tasks.Validation:
bun run check(12/12 pass) on the branch; no tests assert the old prose.Generated with Letta Code