# Kanban Management

> ARCHIVED — project work items are tracked in GitHub Issues and GitHub Projects. Use the github-issues skill when installed, or use gh directly.

- Skill: `rcarmo/kanban-management` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add rcarmo/kanban-management`
- Raw SKILL.md: https://api.skillmd.com/api/skills/rcarmo/kanban-management/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: rcarmo (https://skillmd.com/u/rcarmo)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/rcarmo/kanban-management

---


# Kanban management — archived

The file-based `workitems/` board is archived. Do not create or move Markdown work-item files unless this workspace explicitly adopts the legacy file-board workflow.

## Current workflow

Use the current Git repository's GitHub Issues and GitHub Projects v2. Confirm the repository before changing it:

```bash
repo=$(gh repo view --json nameWithOwner -q .nameWithOwner)

# Create an issue
gh issue create -R "$repo" --title "..." --body "..."

# List open issues
gh issue list -R "$repo" --state open

# Close a completed issue
gh issue close <number> -R "$repo" --reason completed
```

If the `github-issues` skill is installed, load it for project-field IDs, status changes, labels, and board queries. Otherwise inspect the repository with `gh issue` and `gh project` before changing it.

The local `workitems/` directory remains compatibility scaffolding for older workspaces and project templates. It is not the active tracker unless the workspace says otherwise.

