ソース情報
- リポジトリ
- Abd0r/porcupineai
- ソースの最終更新活動
- 2026年8月6日 14:20
- 検出された SKILL.md の言語
- 英語
- スター
- 3
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Abd0r/porcupineai --skill github-issuesコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Write code that does not look like AI output. Reject low-evidence and low-signal TypeScript patterns (chained assertions, unknown/object widening, Reflect, runtime typeof, module mocks) in favor of typed, boundary-checked code.
Control a Home Assistant smart home through its MCP server. Query sensor and entity states read-only, then act on devices (lights, switches, climate) via call_service with explicit user approval. Use for "turn off the living room lights", "what is the thermostat set to", "set bedroom temp", or any Home Assistant entity/device task.
Produce clear, accessible diagrams and charts (architecture, flow, sequence, ER, state, org, Gantt, timeline) as Mermaid or polished self-contained SVG. Covers picking the right diagram type, a consistent visual system, and accessibility. Use whenever you need to explain a system, a flow, data, or a process in a README, doc, benchmark report, plan, or launch graphic.
| name | github-issues |
| description | List, create, triage, label, close GitHub issues with gh. |
| stack | vcs |
| tags | ["github","issues","triage","labels","bugs"] |
Mechanical issue CRUD. For "does this PR solve issue N?" use github-research.
github-auth. Inside a GitHub repo or pass --repo OWNER/REPO.
gh issue list
gh issue list --state open --label bug
gh issue list --assignee @me
gh issue list --search "auth timeout" --state all
gh issue view 42
gh issue view 42 --json title,body,state,labels,assignees,comments
gh issue create --title "Bug: short title" --body "## Summary
...
## Repro
1.
2.
## Expected
..."
Optional flags: --label bug --assignee @me
gh issue edit 42 --add-label "bug,priority/high"
gh issue edit 42 --remove-label "needs-triage"
gh issue edit 42 --add-assignee @me
gh issue comment 42 --body "Root cause looks like ..."
gh issue close 42 --reason completed
gh issue reopen 42
gh issue list --repo OWNER/REPO --search "is:open label:bug sort:updated-desc" --limit 30
curl -sS -H "Authorization: Bearer $GITHUB_TOKEN" -H "Accept: application/vnd.github+json" \
"https://api.github.com/repos/$OWNER/$REPO/issues?state=open&per_page=20"
# /issues also returns PRs — skip objects that have a pull_request key