feat(cron): add manual exec command for existing jobs#357
Open
xukp20 wants to merge 5 commits intochenhg5:mainfrom
Open
feat(cron): add manual exec command for existing jobs#357xukp20 wants to merge 5 commits intochenhg5:mainfrom
xukp20 wants to merge 5 commits intochenhg5:mainfrom
Conversation
This was referenced Apr 10, 2026
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
Add a manual
cron execentrypoint so an existing cron job can be triggered immediately by job ID.This reuses the existing cron execution path instead of introducing a separate ad-hoc runner.
Fixes #263
What changed
CronScheduler.TriggerJob(id)for manual execution of existing jobs/cron exec <id>in chat command handlingRun Nowaction buttonPOST /cron/execcc-connect cron exec <id>Why
Today cron jobs can be created, listed, edited, enabled, disabled, muted, and deleted, but they cannot be run immediately.
This makes testing and one-off triggering awkward because users have to wait for the next scheduled time.
cron execsolves that by letting an existing job run once on demand while preserving its configured project, session, prompt/exec mode, timeout, andother execution settings.
Validation
go test ./core -run 'Cron|ExecuteCronJob|HandleCronExec' -vgo test ./cmd/cc-connect -run 'Cron' -v$(go env GOPATH)/bin/staticcheck ./core/... ./cmd/cc-connect/...go build ./...go test ./...