fix(productivity): replace non-existent set_scheduled_task with file-based shortcuts#111
Open
gn00295120 wants to merge 2 commits intoanthropics:mainfrom
Open
fix(productivity): replace non-existent set_scheduled_task with file-based shortcuts#111gn00295120 wants to merge 2 commits intoanthropics:mainfrom
gn00295120 wants to merge 2 commits intoanthropics:mainfrom
Conversation
…k tool The create-shortcut skill was referencing a `set_scheduled_task` platform tool that does not exist in Cowork, causing Claude to get stuck in a loop searching for a tool it could never find. This commit introduces the create-shortcut skill to the productivity plugin with the bug fixed: shortcuts are saved as named workflows in SHORTCUTS.md and invoked manually. The skill includes a clear disclaimer that Cowork has no built-in scheduler, and provides OS-native alternatives (cron / Windows Task Scheduler) for users who need automatic recurring execution. Closes anthropics#26 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.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.
Summary
create-shortcutskill that referenced a non-existentset_scheduled_taskplatform tool, causing Claude to loop or hallucinate successcreate-shortcutskill that saves reusable workflow shortcuts toSHORTCUTS.mdChanges
productivity/skills/create-shortcut/SKILL.mdproductivity/README.mdcreate-shortcutto skill tableRoot Cause
The original built-in skill instructed Claude to
call the "set_scheduled_task" tool, which was never implemented. Claude would enter a search/retry loop and sometimes falsely claim the task was scheduled.Test Plan
SHORTCUTS.md(not via phantom tool)Fixes #26