github-project
GitHub Project Board
Project Configuration
- Project: Simple History Kanban
- URL: https://github.com/users/bonny/projects/4/views/1
- Project ID:
PVT_kwHOAANhgs4AidMq - Project number:
4 - Owner:
bonny - Status field ID:
PVTSSF_lAHOAANhgs4AidMqzga-LME
Board Columns & Status Option IDs
| Column | Option ID |
|---|---|
| Backlog | 25e9263f |
| To do | 6c3f4438 |
| In progress | 36813ba3 |
| Experimental | 52a48e60 |
| Done | c40edce0 |
GitHub CLI Commands
# List open issues
gh issue list --state open
# View specific issue
gh issue view NUMBER
# Access project board (requires read:project scope)
gh api graphql -f query='
query {
user(login: "bonny") {
projectV2(number: 4) {
title
items(first: 50) {
nodes {
content {
... on Issue {
title
number
state
}
}
}
}
}
}
}
'
More from bonny/wordpress-simple-history
changelog
Adds changelog entries to readme.txt following keepachangelog format. Use when updating the Unreleased section or documenting changes for a release.
23wordpress-org-compliance
Reviews plugin code for WordPress.org compliance and trialware violations. Use when checking premium features, upsells, or license keys before submission.
17logger-messages
Enforces active voice (verb-first) for all Simple History logger messages and the Event Details API for details output. Triggers: creating a new logger class, writing or modifying a 'messages' array in get_info()/getInfo(), calling notice_message/warning_message/info_message, or implementing get_log_row_details_output().
13release
Release checklist for core and premium plugins. Covers version bumping, changelog finalization, tagging, and deployment. Triggers when user says "release", "publish", "deploy", "bump version", "prepare release".
10code-quality
Runs linting and static analysis on PHP/CSS/JS using phpcs, phpstan, and rector. Use when checking code style, fixing lint errors, or running static analysis.
10sql
Run SQL queries against the WordPress development database. Use when querying database tables, inspecting Simple History events, checking WordPress data, debugging database issues, or when the user says "run query" or "check database".
7