kandev-projects
SolidList and create Office projects, then place new tasks in the correct project when organizing workspace work by repository.
AI & Automation 502 stars
69 forks Updated today AGPL-3.0
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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
```bash
$KANDEV_CLI kandev projects list
```
## Create a project
`--name` is required. Repeat `--repository` for each repository URL or local
path the project owns.
```bash
$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:
```bash
$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.
Details
- Author
- kdlbs
- Repository
- kdlbs/kandev
- Created
- 6 months ago
- Last Updated
- today
- Language
- Go
- License
- AGPL-3.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
kandev-protocol
Follow the core Office agent protocol on wakeup, including parsing KANDEV_* context, checking blockers, commenting progress, updating status, and using the CLI safely.
502 Updated today
kdlbs AI & Automation Solid
kandev-team-admin
Manage the Office roster when delegating work, hiring agents, changing budgets or concurrency, retiring agents, or checking spend before approvals.
502 Updated today
kdlbs AI & Automation Solid
kandev-routines
Create, inspect, pause, resume, or delete recurring Office routines when work should run on a cron schedule or webhook trigger.
502 Updated today
kdlbs