Use when adding new error messages to React, or seeing "unknown error code" warnings.
npx skills add dannote/dot-pi --skill "github-issues"
Install specific skill from multi-skill repository
# Description
Work with GitHub Issues via gh CLI. Use when user asks to view, triage, fix, or close issues. Covers issue workflows, linking fixes to issues in commits/changelogs/releases, and proper closing etiquette.
# SKILL.md
name: github-issues
description: Work with GitHub Issues via gh CLI. Use when user asks to view, triage, fix, or close issues. Covers issue workflows, linking fixes to issues in commits/changelogs/releases, and proper closing etiquette.
GitHub Issues Workflow
View issue
gh issue view <number>
Link issues in commits, changelogs, releases
- Commits:
fix: description (#1)orfix: description (fixes #1)โ auto-closes on merge to default branch - Changelog:
([#1](https://github.com/owner/repo/issues/1)) - Release notes:
fixes #1โ does NOT auto-close, must close manually
Close with comment
Always thank the reporter and mention the fix version:
gh issue close <number> --comment "Fixed in v1.2.3. Thanks for the report!"
Test fixes before closing
For npm packages, simulate fresh install:
npm pack --pack-destination /tmp/
cd /tmp && mkdir test && cd test
echo '{"name":"test"}' > package.json
bun add /tmp/package-name-1.0.0.tgz
./node_modules/.bin/command --help
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.