| name | github-project |
| description | Manages the Simple History GitHub project board. Use when updating issue status, querying board items, or automating project workflows. |
| allowed-tools | Bash |
GitHub Project Board
Project Configuration
Board Columns & Status Option IDs
| Column | Option ID |
|---|
| Backlog | 25e9263f |
| To do | 6c3f4438 |
| In progress | 36813ba3 |
| Experimental | 52a48e60 |
| Done | c40edce0 |
GitHub CLI Commands
gh issue list --state open
gh issue view NUMBER
gh api graphql -f query='
query {
user(login: "bonny") {
projectV2(number: 4) {
title
items(first: 50) {
nodes {
content {
... on Issue {
title
number
state
}
}
}
}
}
}
}
'