ソース情報
- リポジトリ
- Abd0r/porcupineai
- ソースの最終更新活動
- 2026年8月6日 14:20
- 検出された SKILL.md の言語
- 英語
- スター
- 3
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Abd0r/porcupineai --skill github-pr-workflowコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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.
SOC 職業分類に基づく
SKILL.md を表示中
| name | github-pr-workflow |
| description | PR lifecycle: branch, commit, push, open, CI, merge. |
| stack | vcs |
| tags | ["github","pr","pull-request","ci","merge","branch"] |
End-to-end feature/fix PR. Conflicts → github-pr-conflicts. Review quality → github-code-review.
github-auth. Repo with GitHub remote. Porcupine tools: bash, read, edit, write.
git fetch origin
git checkout main 2>/dev/null || git checkout master
git pull --ff-only
git checkout -b feat/short-description
Prefixes: feat/, fix/, refactor/, docs/, ci/.
Edit with read / edit / write, then:
git status
git diff
git add path/to/files
git commit -m "type: short summary
Why this change. What it does."
Do not commit secrets (.env, keys, auth.json). Avoid blind git add ..
git push -u origin HEAD
gh pr create --fill
# or:
gh pr create --title "title" --body "## Summary
...
## Mechanism
...
## Test plan
- [ ] ..."
Draft: add --draft.
gh pr checks
gh pr view --json statusCheckRollup,mergeable,url
gh run list --branch "$(git branch --show-current)" --limit 5
gh run view RUN_ID --log-failed | tail -100
Fix, commit, push. No force-push to shared branches unless the user asks.
gh pr merge --squash --delete-branch
gh pr status
gh pr list --author @me
gh pr view 123
gh pr diff 123
gh pr checkout 123