Skip to content
Automation
Skill

/kandev-projects

List and create Office projects, then place new tasks in the correct project when organizing workspace work by repository.

From plugin
kandev
5639 skills1 agent3 commands
Install
$ npx -y skills add kdlbs/kandev --skill kandev-projects --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-projects

Context preview

The summary Claude sees to decide when to auto-load this skill.

List and create Office projects, then place new tasks in the correct project when organizing workspace work by repository.

SKILL.md

kandev-projects.SKILL.md
name: kandev-projects
description: List and create Office projects, then place new tasks in the correct project when organizing workspace work by repository.
kandev:
  system: true
  version: "0.42.0"
  default_for_roles: [ceo]

Projects

Use project IDs returned by the CLI. Project access is scoped to the current Office workspace, and project creation is permission checked.

Inspect projects

$KANDEV_CLI kandev projects list

Create a project

`--name` is required. Repeat `--repository` for each repository URL or local path the project owns.

$KANDEV_CLI kandev projects create \
  --name "Payments" \
  --description "Payment services and checkout" \
  --repository "https://github.com/acme/payments" \
  --repository "/workspace/checkout"

Optional project fields are `--lead-agent-profile-id`, `--color`, `--budget-cents`, and `--executor-config`.

Create work in a project

Pass the returned project ID when creating a task:

$KANDEV_CLI kandev task create \
  --title "Add payment retry policy" \
  --project "$PROJECT_ID" \
  --assignee "$AGENT_ID"

Do not create a duplicate project when an existing project already owns the repository. Office runs do not administer workspaces.

Ships withkandev

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

Get the whole plugin