Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Create, inspect, pause, resume, or delete recurring Office routines when work should run on a cron schedule or webhook trigger.
.claude/skills/kdlbs-kandev-routines/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | -53% | 0% |
| case-01 | ✗→✓ | ▲ Improved | -46% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 47% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -26% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -21% | 0% |
Routines fire on cron or webhook and create a fresh task each time, assigned to a specific agent. Use them when work needs to happen on a clock (daily standups, weekly reports, hourly health checks).
bash$KANDEV_CLI kandev routines list
bash$KANDEV_CLI kandev routines create \ --name "Daily standup" \ --task-title "What did each agent ship today?" \ --task-description "Summarise yesterday's commits and PRs across the team. Post to #engineering." \ --assignee A-ceo \ --cron "0 9 * * MON-FRI" \ --timezone "Europe/Lisbon"
This creates the routine and attaches a cron trigger in one command. The CLI does two API calls under the hood (routine + trigger); the response is the trigger row.
bash$KANDEV_CLI kandev routines pause --id R-1 $KANDEV_CLI kandev routines resume --id R-1 $KANDEV_CLI kandev routines delete --id R-1
--name — display name; users see this on the Routines page.--task-title — title for every task this routine creates. Supports {{name}} and {{date}} placeholders.--task-description — agent instructions for each fire.--assignee — the agent ID that receives the task. For coordinator work, this is the CEO; for distributed checks, a worker or specialist.--cron — standard 5-field cron expression.tasks create directly.Other measured skills in the registry, with their headline benchmark lift.