Help us improve
Share bugs, ideas, or general feedback.
From cc-harness
Builds a lightweight proactive mode with scheduled checks, sleep intervals, concise user briefs, and expiry safeguards for background agent work.
npx claudepluginhub learnprompt/cc-harness-skills --plugin cc-harnessHow this skill is triggered — by the user, by Claude, or both
Slash command
/cc-harness:kairos-liteThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when you want proactive behavior, but not a full always-on autonomous platform.
Schedules recurring prompts or one-time reminders with /loop and cron tools to poll deployments, check builds, review PRs, or set session alerts in Claude Code.
Schedules recurring or one-off tasks via local OS entries (cron/Task Scheduler) or remote CronCreate. Automates periodic commands and session-scoped schedules.
Schedules autonomous flywheel ticks inside a Claude Code session using cron tools or /schedule routines. Re-enqueues prompts on a wall-clock cadence for drive loops.
Share bugs, ideas, or general feedback.
Use this skill when you want proactive behavior, but not a full always-on autonomous platform.
Create a portable proactive job spec:
python3 {baseDir}/scripts/job_spec.py \
--name "daily-repo-check" \
--prompt "Summarize risky changes in the repo" \
--schedule "0 9 * * 1-5"
Then use the prompt in references/prompt-template.md.
python3 {baseDir}/scripts/job_spec.py ...