kandev-approvals
Clear the CEO approval queue when hire requests, budget grants, or other sensitive Office mutations are waiting for approve or reject decisions.
Escalate to a human when required information, access, credentials, or a product decision blocks completion and no reasonable default is available.
$ npx -y skills add kdlbs/kandev --skill kandev-escalation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/kandev-escalationContext preview
The summary Claude sees to decide when to auto-load this skill.
Escalate to a human when required information, access, credentials, or a product decision blocks completion and no reasonable default is available.
name: kandev-escalation description: Escalate to a human when required information, access, credentials, or a product decision blocks completion and no reasonable default is available. kandev: system: true version: "0.42.0" default_for_roles: [worker, specialist, assistant, reviewer]
Use this pattern when you cannot proceed without human input: a design decision, missing credentials, ambiguous requirements, or access you do not have.
Escalate when ALL of the following are true: 1. You cannot make the decision yourself based on available context. 2. The decision is required to complete your task. 3. You have already checked comments and memory for prior guidance.
Do NOT escalate for routine technical choices you can make independently.
Create a new task with a clear question as the title. Leave it unassigned (or assign to `$KANDEV_HUMAN_USER_ID` if that variable is set in your environment).
HUMAN_TASK=$(
$KANDEV_CLI kandev task create \
--title "Decision needed: <your specific question here>" \
--description "Context: <1-2 sentences of background>
Question: <the specific decision the human needs to make>
Options considered:
- Option A: <brief description>
- Option B: <brief description>
Blocked task: $KANDEV_TASK_ID" \
2>/dev/null
)
HUMAN_TASK_ID=$(echo "$HUMAN_TASK" | jq -r '.task_id')$KANDEV_CLI kandev tasks message --id "$KANDEV_TASK_ID" \ --prompt "Escalated to human task $HUMAN_TASK_ID. Waiting for decision on: <question>"
The Office CLI does not currently expose a secure operation for adding a blocker relationship. The human task description links back to the blocked task, and the comment above links the blocked task to the human task. Do not comment on the new human task: a run may only message tasks granted by its signed runtime scope. These references do not create a task dependency.
$KANDEV_CLI kandev task update --status blocked
Your session ends. Because this flow does not create a blocker relationship, the `task_blockers_resolved` wake reason will NOT occur for this manual cross-reference flow. The human or coordinator must post the decision on the blocked task or update it through the normal task workflow.
Resume from the normal task comment or task update event. Parse `$KANDEV_WAKE_PAYLOAD_JSON` first; if it is absent, read the JSON file at `$KANDEV_WAKE_PAYLOAD_PATH`. Confirm the decision is present on the blocked task, move it back to the appropriate active status, and continue the work.
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…
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.