kandev-approvals
Clear the CEO approval queue when hire requests, budget grants, or other sensitive Office mutations are waiting for approve or reject decisions.
Record the current workflow step decision through the task-bound Office CLI.
$ npx -y skills add kdlbs/kandev --skill kandev-step-decision --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/kandev-step-decisionContext preview
The summary Claude sees to decide when to auto-load this skill.
Record the current workflow step decision through the task-bound Office CLI.
name: kandev-step-decision description: Record the current workflow step decision through the task-bound Office CLI. kandev: system: true version: "0.42.0"
Use the task-bound CLI command when you hold the current review or approval seat and the run prompt advertises the decision action.
The only accepted verdicts are `approved` and `rejected`. Use a non-empty reason that explains the evidence for the verdict.
$KANDEV_CLI kandev task decision --decision approved --reason "..."
Use `approved` as shown, or replace it with `rejected` when rejecting. Replace the reason with the evidence for the current workflow step. Make this command the final action for the turn, then stop. A repeated decision supersedes the previous decision for that participant and step.
The command returns structured JSON with these fields:
{
"decision": "approved",
"role": "reviewer",
"step_id": "step-1",
"decision_id": "decision-1",
"decided_at": "2026-01-01T00:00:00Z",
"transition_applied": false,
"guards": []
}Posting comments do not count as a workflow step decision. Approval-inbox commands do not count either. Do not use either operation instead of the task decision command.
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…
Create, inspect, pause, resume, or delete recurring Office routines when work should run on a cron schedule or webhook trigger.