AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Github Projects

skill-pfeff-claude-skills-github-projects · by pfeff

Manage GitHub Projects V2 boards — list items by sprint, set status/sprint fields, add issues to boards, query field metadata. Use when working with GitHub project boards, sprint assignments, or board status transitions.

No reviews yet
0 installs
8 views
0.0% view→install

Install

$ agentstack add skill-pfeff-claude-skills-github-projects

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pfeff-claude-skills-github-projects)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
23d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Github Projects? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

GitHub Projects V2

Consolidated operations for GitHub Projects V2 board management. Provides query and mutation operations backed by a local SQLite cache (project-board-helper) and GraphQL mutations via gh api graphql.

Prerequisites

  • project-board-helper binary: go install github.com/pfeff/project-board-helper/cmd/project-board-helper@latest
  • gh CLI with project scope: gh auth refresh -s project
  • sqlite3 (ships with macOS)
  • jq for JSON processing

Cache DB: ~/Library/Caches//project-board.db

Operations

1. Sync Cache

When: Before any query operation, or after mutations to refresh state Implementation: Load operations/sync-cache.md Quick summary: Runs project-board-helper sync to refresh the local SQLite cache from the GitHub API

2. Field Metadata

When: Need field IDs or option IDs for mutations (Status, Sprint, etc.) Implementation: Load operations/field-metadata.md Quick summary: Queries field definitions via project-board-helper field , extracts field IDs and option IDs

3. List by Sprint

When: Query board items for a specific sprint, optionally filtered by status Implementation: Load operations/list-by-sprint.md Quick summary: SQLite query against cache DB filtering by Sprint field value, with optional Status filter

4. Set Status

When: Change an item's status (e.g., to "In Progress", "Done") Implementation: Load operations/set-status.md Quick summary: GraphQL updateProjectV2ItemFieldValue mutation for the Status field. Item must already be on the board.

5. Set Sprint

When: Assign an item to a sprint Implementation: Load operations/set-sprint.md Quick summary: GraphQL updateProjectV2ItemFieldValue mutation for the Sprint field. Item must already be on the board.

6. Add to Board

When: Add a GitHub issue to the project board Implementation: Load operations/add-to-board.md Quick summary: gh project item-add with project number and owner. Idempotent — safe to call on items already on the board.

7. Lookup Item

When: Need to resolve an issue reference (owner/repo#number) to a project item ID for mutations Implementation: Load operations/lookup-item.md Quick summary: project-board-helper lookup against the local cache

Common Patterns

Read Path (cache-backed)

sync-cache → field-metadata / list-by-sprint / lookup-item

All read operations query the local SQLite cache. Call sync-cache first to ensure freshness.

Write Path (GraphQL mutations)

lookup-item → set-status / set-sprint

Mutations require the item ID (from lookup-item) and field/option IDs (from field-metadata).

Add + Configure

add-to-board → sync-cache → lookup-item → set-sprint + set-status

New items need to be added to the board first, then cache synced to pick up the new item ID.

Quick Reference

| Operation | Tool | Command | |-----------|------|---------| | Sync cache | project-board-helper | project-board-helper sync | | Field metadata | project-board-helper | project-board-helper field | | List by sprint | sqlite3 | Query against cache DB | | Set status | gh api graphql | updateProjectV2ItemFieldValue mutation | | Set sprint | gh api graphql | updateProjectV2ItemFieldValue mutation | | Add to board | gh | gh project item-add --owner --url | | Lookup item | project-board-helper | project-board-helper lookup |

Defaults

| Setting | Value | |---------|-------| | Owner | pfeff | | Project number | 4 | | Project node ID | PVT_kwHNa8POARiyqQ | | Cache DB | ~/Library/Caches//project-board.db |

For full default configuration, see references/project-defaults.md.

Error Handling

| Error | Resolution | |-------|------------| | project-board-helper not found | go install github.com/pfeff/project-board-helper/cmd/project-board-helper@latest | | Auth failure / missing project scope | gh auth refresh -s project | | Item not found on board | Use add-to-board first, then sync-cache | | Stale cache | Run sync-cache to refresh | | Unknown field name | Check available fields with project-board-helper field (no args) |

Progressive Disclosure

  • operations/*.md — Detailed implementation steps for each operation
  • references/graphql-templates.md — Reusable GraphQL mutation and query blocks
  • references/project-defaults.md — Default project IDs, field names, and configuration

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.