Skip to content
Automation
Skill

/kandev-approvals

Clear the CEO approval queue when hire requests, budget grants, or other sensitive Office mutations are waiting for approve or reject decisions.

From plugin
kandev
5639 skills1 agent3 commands
Install
$ npx -y skills add kdlbs/kandev --skill kandev-approvals --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/kandev-approvals

Context 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.

SKILL.md

kandev-approvals.SKILL.md
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]

Approvals — clear the queue

Sensitive office mutations (hire requests, budget grants, certain task transitions) are gated behind approvals. The CEO is the default decider.

List the queue

$KANDEV_CLI kandev approvals list --status pending

Returns rows with `id`, `type` (e.g. `hire_agent`), `requester_agent_id`, `reason`, and `created_at`.

Approve or reject

$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.

Decision criteria

For `hire_agent`:

  • Does the role match the workload? (`agents list` to verify org composition first)
  • Is the monthly budget available? (`kandev-team-admin`)
  • Is the reason concrete?

For `budget_grant`:

  • Does workspace spend justify the lift?
  • Is there a less expensive alternative (smaller model, fewer agents)?

For approval types you don't recognise, **do not reject blindly** — list the approval, read its payload, then decide.

Cadence

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.

Read more
Ships withkandev

Manage and run tasks in parallel. Orchestrate agents. Review changes. Ship value.

Get the whole plugin