スキル一覧に戻る
anntnzrb

gh-contrib

by anntnzrb

Configurations for LLM Harnesses

0🍴 0📅 2026年1月25日
GitHubで見るManusで実行

SKILL.md


name: gh-contrib description: "Create GitHub issues and PRs following contribution guidelines. Activate when user says 'contribute this', 'submit pr', 'open issue and pr', or wants to submit changes to upstream."

GitHub Contribution Workflow

Prerequisites

  • Changes committed in a feature branch
  • Duplicates already verified by user

Workflow

1. Check Contribution Guidelines

Deploy explore agent to find contribution guidelines:

  • Look for CONTRIBUTING.md, README, issue/PR templates
  • Extract: title format, target branch, required labels

2. Detect Fork & Push

git remote -v  # identify fork remote
git push -u <fork-remote> <branch>

3. Create Issue

gh issue create --repo <owner>/<repo> \
  --title "<title per guidelines>" \
  --body "<body>"

4. Create PR

gh pr create --repo <owner>/<repo> \
  --head <fork-user>:<branch> \
  --base <target-branch> \
  --title "<title>" \
  --body "## Summary

<description>

Closes #<issue-number>"

5. Comment on Issue

gh issue comment <issue-number> --repo <owner>/<repo> --body "PR: #<pr-number>"

Default Conventions

Use only if no contribution guidelines found:

TypeIssue PrefixPR Prefix
Feature[FEATURE]:feat:
Bug[BUG]:fix:
Docs[DOCS]:docs:
Chore[CHORE]:chore:

Flow

changes committed -> push to fork -> open issue -> open pr -> comment on issue

スコア

総合スコア

40/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です