learnprompt/cc-harness-skills

kairos-lite

Build a lightweight proactive mode with scheduled checks, sleep intervals, concise user briefs, and expiry safeguards so an agent can work in the background without becoming an uncontrolled daemon.

First seen Apr 1, 2026

Installation

$ npx skills add learnprompt/cc-harness-skills --skill kairos-lite

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from learnprompt/cc-harness-skills.

npx skills add learnprompt/cc-harness-skills

Browse all from learnprompt/cc-harness-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 233
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,335 B
  • docs README.md 896 B
  • docs SUMMARY.md 216 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 62 installs

SKILL.md

Kairos Lite

Use this skill when you want proactive behavior, but not a full always-on autonomous platform.

Use It For

  • scheduled repo patrols
  • unattended follow-up checks
  • short user-facing briefs after background work
  • proactive jobs with expiry

Avoid It For

  • unrestricted permanent daemons
  • hidden background mutation without explicit user opt-in
  • complex host-specific notification plumbing as an MVP

Quick Start

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](./references/prompt-template.md).

Minimum Building Blocks

  • sleep or wait
  • a schedule or automation trigger
  • a brief output channel
  • expiry or renewal

Supporting Files

  • Prompt template: [references/prompt-template.md](./references/prompt-template.md)
  • Source notes: [references/source-notes.md](./references/source-notes.md)
  • Helper script: python3 {baseDir}/scripts/job_spec.py ...