kanban-management
GitHub已归档的文件看板技能,指导用户转向使用 GitHub Issues 和 Projects v2 进行任务跟踪。提供通过 gh CLI 创建、查看和关闭 Issue 的命令示例,并建议加载 github-issues 技能以处理更复杂的项目字段和状态变更。
Trigger Scenarios
Install
npx skills add rcarmo/piclaw --skill kanban-management -g -y
SKILL.md
Frontmatter
{
"name": "kanban-management",
"description": "ARCHIVED — project work items are tracked in GitHub Issues and GitHub Projects. Use the github-issues skill when installed, or use gh directly.",
"distribution": "public"
}
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:
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.
Version History
- 5fa0ce5 Current 2026-07-25 10:25


