ソース情報
- リポジトリ
- dyoshikawa/skills
- ソースの最終更新活動
- 2026年8月23日 07:49
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/dyoshikawa/skills --skill clean-branchesコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Scan an entire repository for security issues and malicious code — leaked secrets, injection and code-execution flaws, supply chain and CI/CD risks, insecure configuration, and malicious instructions hidden in AI rule files. Use when the user wants a whole-repository security scan or audit, rather than the diff-scoped `security-scan-diff`.
Babysit a Dependabot dependency-bump PR all the way to merge: verify the author is the genuine Dependabot bot, diagnose and resolve any CI failure (excluding or fixing a breaking bump when needed), get every check green, and merge. Use when the user wants to shepherd a Dependabot bump PR to merge.
Resolve every open issue one at a time: fact-check each with web research, close the ones that need no action, and run the `goal-pr` skill to fix, review, and merge the ones that do — repeating until no actionable issues remain.
SKILL.md を表示中
| name | clean-branches |
| description | Clean up unnecessary local branches and prune stale remote-tracking branches |
Clean up unnecessary local branches and prune stale remote-tracking branches.
Run the following:
git branch --show-currentgit branch --format='%(refname:short)'git remote show origingit branch -vvIdentify:
main or master)After identifying the default branch, list branches already merged into it:
git branch --merged <default-branch>If you want to use the remote-tracking branch as the source of truth, use:
git branch --merged origin/<default-branch>Update remote refs and prune deleted remote branches:
git fetch --prune
If needed, also run:
git remote prune origin
Delete only branches that are clearly unnecessary.
Safe candidates include:
Never delete:
If there is any ambiguity, show the candidate branches to the user and ask for confirmation.
For merged branches, delete them safely:
git branch -d <branch-name>
Only if the user explicitly approves force deletion for unmerged branches, use:
git branch -D <branch-name>
Delete branches one by one, not with a broad wildcard command.
Summarize: