Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
$ git log --oneline --stat
stars:108
forks:18
updated:2026年4月11日 17:32
SKILL.md
| name | github-research |
| description | Search GitHub issues, PRs, and code using the gh CLI. |
Search GitHub for prior art, implementation patterns, and maintainer decisions.
# Search issues
gh search issues "topic" --repo owner/repo --limit 20 \
--json number,title,state,url
# Search merged PRs (highest signal)
gh search prs "topic" --repo owner/repo --merged --limit 20 \
--json number,title,url
# Search code (use query syntax for path filtering)
gh search code "pattern path:src/" --repo owner/repo --limit 20 \
--json path,textMatches
# Get full issue or PR details
gh issue view 123 --repo owner/repo --json number,title,body,comments
gh pr view 456 --repo owner/repo --json number,title,body,reviews,files
gh api rate_limit --jq '.resources.search'## Research: [Topic]
### Summary
- Key finding 1 [#123]
- Key finding 2 [PR #456]
### Findings
1. **#123: [Title]** — [summary]. URL: https://...
2. **PR #456: [Title]** — [what it changed]. URL: https://...
### Gaps
- [What you looked for but didn't find]
Always include URLs. If nothing relevant exists, say so.