kandev-config-sync
Synchronize Office workspace configuration with the .kandev folder when exporting reviewable config, importing committed config, seeding a workspace, or…
Clear the CEO approval queue when hire requests, budget grants, or other sensitive Office mutations are waiting for approve or reject decisions.
$ npx -y skills add kdlbs/kandev --skill kandev-approvals --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/kandev-approvalsContext preview
The summary Claude sees to decide when to auto-load this skill.
Clear the CEO approval queue when hire requests, budget grants, or other sensitive Office mutations are waiting for approve or reject decisions.
name: kandev-approvals description: Clear the CEO approval queue when hire requests, budget grants, or other sensitive Office mutations are waiting for approve or reject decisions. kandev: system: true version: "0.42.0" default_for_roles: [ceo]
Sensitive office mutations (hire requests, budget grants, certain task transitions) are gated behind approvals. The CEO is the default decider.
$KANDEV_CLI kandev approvals list --status pending
Returns rows with `id`, `type` (e.g. `hire_agent`), `requester_agent_id`, `reason`, and `created_at`.
$KANDEV_CLI kandev approvals decide --id AP-1 --decision approve --note "Backlog supports the hire." $KANDEV_CLI kandev approvals decide --id AP-2 --decision reject --note "Hire blocked by Q3 budget freeze."
The note is visible on the approval row and surfaced to the requester on their next heartbeat.
For `hire_agent`:
For `budget_grant`:
For approval types you don't recognise, **do not reject blindly** — list the approval, read its payload, then decide.
Approvals don't auto-fire reminders. If the CEO leaves them sitting, the requesters block indefinitely. Run `approvals list` on every heartbeat and clear anything you can decide quickly.
Manage and run tasks in parallel. Orchestrate agents. Review changes. Ship value.
Repo: kdlbs/kandev
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…
Create, inspect, pause, resume, or delete recurring Office routines when work should run on a cron schedule or webhook trigger.
Record the current workflow step decision through the task-bound Office CLI.