gh-project-board
Configure GitHub Projects v2 kanban boards with Ship Shit Dev defaults: Status columns, Human Review and Deferred lanes, and P0-P3 Priority. Use when setting up, copying, auditing, or normalizing GitHub project boards.
What this skill does
# GH Project Board
Set up GitHub Projects v2 boards so issues and PRs use a consistent kanban
shape.
## Contract
Inputs:
- GitHub owner login and project number, or permission to process every open
project for an owner
- Optional new board title when copying the reference board
- Optional exact Status and Priority option names
Outputs:
- Project field audit summary
- Field normalization plan or applied status
- Board-layout verification result
Creates/Modifies:
- May create or update GitHub Projects v2 single-select fields
- May copy a GitHub Project when creating a new board
- Does not delete project items
External Side Effects:
- Reads GitHub Projects metadata
- Writes GitHub Projects field configuration only after approval
- May create a new GitHub Project only after approval
Confirmation Required:
- Before running field normalization with `--apply`
- Before copying a project
- Before processing every open project for an owner
- Before using `--exact`, because removed single-select options can clear item
values that used those options
Delegates To:
- `task-prd-creator` when board setup reveals missing task structure
- `gh-fix-ci` when project automation depends on failing GitHub Actions
## Canonical Board Shape
Use GitHub Projects v2.
- Board view layout: `BOARD_LAYOUT`
- Kanban column field: `Status`
- Status options: `Backlog`, `Todo`, `In Progress`, `Human Review`, `Done`,
`Deferred`
- Priority field: `Priority`
- Priority options: `P0 ๐ฅ`, `P1`, `P2`, `P3`
The Ship Shit Dev reference board is
`https://github.com/orgs/shipshitdev/projects/1`. Treat `Human Review` as the
added approval lane even if an older copied board does not have it yet.
## Workflow
1. Verify GitHub CLI auth and project scope:
```bash
gh auth status -h github.com
gh project list --owner <owner>
```
2. Inspect the reference board or target board:
```bash
gh project view 1 --owner shipshitdev --format json
gh project field-list 1 --owner shipshitdev --format json
gh project view <number> --owner <owner> --format json
gh project field-list <number> --owner <owner> --format json
```
3. For a new board, prefer copying the reference board so the kanban view is
preserved:
```bash
gh project copy 1 \
--source-owner shipshitdev \
--target-owner <owner> \
--title "<project title>" \
--format json
```
Then normalize the copied board to add any missing approval lane:
```bash
node skills/gh-project-board/scripts/setup-gh-project-board.mjs \
--owner <owner> \
--project <number> \
--apply
```
4. For an existing board, audit first:
```bash
node skills/gh-project-board/scripts/setup-gh-project-board.mjs \
--owner <owner> \
--project <number>
```
5. Show the audit summary and get approval before applying:
```bash
node skills/gh-project-board/scripts/setup-gh-project-board.mjs \
--owner <owner> \
--project <number> \
--apply
```
6. To audit every open project for an owner:
```bash
node skills/gh-project-board/scripts/setup-gh-project-board.mjs \
--owner <owner> \
--all-open
```
Apply to every open project only when the user explicitly asks:
```bash
node skills/gh-project-board/scripts/setup-gh-project-board.mjs \
--owner <owner> \
--all-open \
--apply
```
## Normalizer Options
- `--status "Todo,In Progress,Human Review,Done,Deferred"` overrides the
Status option list.
- `--priority "P0,P1,P2,P3"` uses ASCII-only priority names.
- `--exact` removes non-canonical options after explicit approval.
- `--include-closed` includes closed projects when used with `--all-open`.
## Rules
- Treat `Human Review` as a `Status` column, not a label.
- Preserve unknown Status or Priority options unless the user explicitly asks
for exact normalization.
- Preserve existing option IDs when renaming or recoloring options so existing
item values remain attached.
- If no board view exists, report the blocker. GitHub exposes project field
mutations through the public API, but not public mutations for creating a
board view; copy the reference board or create the board view in GitHub, then
rerun verification.
- Do not apply changes to closed projects unless the user explicitly asks.
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.