kandev-approvals
Clear the CEO approval queue when hire requests, budget grants, or other sensitive Office mutations are waiting for approve or reject decisions.
Create, inspect, pause, resume, or delete recurring Office routines when work should run on a cron schedule or webhook trigger.
$ npx -y skills add kdlbs/kandev --skill kandev-routines --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/kandev-routinesContext preview
The summary Claude sees to decide when to auto-load this skill.
Create, inspect, pause, resume, or delete recurring Office routines when work should run on a cron schedule or webhook trigger.
name: kandev-routines description: Create, inspect, pause, resume, or delete recurring Office routines when work should run on a cron schedule or webhook trigger. kandev: system: true version: "0.42.0" default_for_roles: [ceo]
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).
$KANDEV_CLI kandev routines list
$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.
$KANDEV_CLI kandev routines pause --id R-1 $KANDEV_CLI kandev routines resume --id R-1 $KANDEV_CLI kandev routines delete --id R-1
Manage and run tasks in parallel. Orchestrate agents. Review changes. Ship value.
Repo: kdlbs/kandev
Clear the CEO approval queue when hire requests, budget grants, or other sensitive Office mutations are waiting for approve or reject decisions.
Synchronize Office workspace configuration with the .kandev folder when exporting reviewable config, importing committed config, seeding a workspace, or…
Escalate to a human when required information, access, credentials, or a product decision blocks completion and no reasonable default is available.
List and create Office projects, then place new tasks in the correct project when organizing workspace work by repository.
Follow the core Office agent protocol on wakeup, including parsing KANDEV_* context, checking blockers, commenting progress, updating status, and using the CLI…
Record the current workflow step decision through the task-bound Office CLI.