ソース情報
- リポジトリ
- hpsgd/turtlestack
- ソースの最終更新活動
- 2026年4月2日 08:38
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/hpsgd/turtlestack --skill pr-createコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Review staged or recent changes — native Claude Code review for mechanics, layered with team conventions and the team verdict contract
Perform a security-focused audit of code changes or a specific area of the codebase.
Propose a change to a marketplace repo based on learned patterns — new rules, updated skills, evolved regex patterns. Infers which upstream marketplace the learning belongs to, confirms with the user, then creates a branch, applies changes, shows diff for review, and raises a PR on approval. Use when patterns have enough evidence to share upstream.
| name | pr-create |
| description | Create a pull request following team conventions |
| argument-hint | [base branch, defaults to 'main'] |
| user-invocable | true |
| allowed-tools | Read, Grep, Glob, Bash |
Create a pull request that follows team conventions. This skill analyses ALL commits on the branch (not just the latest), drafts a conventional commit title, writes a structured description, pushes, and creates the PR.
Execute every step in order. Do not skip.
Use $ARGUMENTS if provided. Otherwise default to main.
BASE_BRANCH="${ARGUMENTS:-main}"
Verify the base branch exists:
git rev-parse --verify $BASE_BRANCH
Check for uncommitted changes:
git status --short
If there are uncommitted changes, stop and ask the user whether to commit them first or proceed without them. Do not silently ignore uncommitted work.
Check current branch:
git branch --show-current
If on main (or the base branch), stop. PRs come from feature branches.
Check remote tracking:
git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null
Note whether the branch tracks a remote. If not, you will need to push with -u.
This is the most important step. The PR description must reflect the full scope of changes, not just the last commit.
Get the full commit log:
git log --oneline $BASE_BRANCH..HEAD
Get the full diff:
git diff $BASE_BRANCH...HEAD --stat
And for the detailed diff:
git diff $BASE_BRANCH...HEAD
Read every changed file in the diff to understand the full picture. Do not skim. If there are 20 changed files, read all 20.
Categorise the changes:
feat, fix, refactor, docs, test, chore, ci, perf, build)feat that also includes test changes)The PR title becomes the squash commit message. It must follow Conventional Commits:
<type>[optional scope]: <description>
Rules:
feat!: remove legacy API or note in the footerExamples of good titles:
feat(auth): add SSO login with SAML providerfix: prevent duplicate webhook delivery on retryrefactor(api): extract validation middleware from controllersdocs: add deployment runbook for productionExamples of bad titles:
Update code (no type, vague)feat: Added new feature for user authentication and also fixed some bugs (too long, past tense, multiple concerns)fix: Fix bug (redundant, no context)Use this template. Fill every section.
## Summary
- [1-3 bullet points: WHAT changed and WHY]
- [Focus on the motivation and outcome, not the implementation details]
- [If fixing a bug, describe the bug and its impact]
## Changes
- [Grouped by area: API, UI, database, tests, config, etc.]
- [Each bullet: specific file or module and what changed]
- [Include new dependencies, migrations, config changes]
## Test plan
- [How to verify the changes work]
- [Specific commands to run, or manual steps to follow]
- [What to check in CI]
- [Edge cases to test manually]
Additional sections to include when relevant:
## Breaking changes
- [What breaks, who is affected, migration steps]
## Screenshots
[For UI changes — before and after]
## Related issues
Closes #[issue number]
Rules for the description:
Push the branch:
git push -u origin $(git branch --show-current)
Create the PR:
gh pr create --title "<title>" --body "$(cat <<'EOF'
<body content>
EOF
)"
Verify creation:
gh pr view --json url,title,state
Share the PR URL and a brief summary:
PR created: <URL>
Title: <title>
Base: <base branch>
Commits: N
Files changed: N
--draft to the gh pr create command.--repo and --head flags appropriately./code-reviewer:code-review — run a code review before creating the PR to catch issues early.