ソース情報
- リポジトリ
- ww-w-ai/marketplace
- ソースの最終更新活動
- 2026年5月10日 00:50
- 検出された 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/ww-w-ai/marketplace --skill validate-gitコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Plan and execute multi-feature roadmaps as sequential, concurrent, or mixed sprint clusters. Trigger on sprint planning, run sprints, plan then build, /cowork-sprint, or requests to break an initiative into sprints. Do not use for trivial edits, one-shot fixes, or one feature (use pdca-wf).
USE for ANY single-feature build request. Trigger when the user asks to implement, build, add, or rework one feature end-to-end, supplies a feature Plan or Design for execution, explicitly requests PDCA, or asks to verify implementation completeness. Runs the shared Research, Brief, Plan review, Design review, Do, targeted Check/Act, and Report lifecycle. Also runs execution-only when cowork-sprint supplies reviewed planning artifacts. Do not use for multi-feature initiatives (use cowork-sprint), trivial edits under about 30 minutes, or pure research with no build.
Max plan hit the wall? Report your 5h window data — we're mapping the rate limit formula Anthropic won't publish
| name | validate-git |
| description | Validates Git branch naming, commit messages, and protection rule compliance |
| triggers | ["validate git","check git"] |
| user-invocable | true |
| allowed-tools | ["Read","Write","Glob","Grep","Bash"] |
Corresponding rule: docs/specs/git.md
Requires read-only git commands such as git branch and git log. Only queries Git history; no modification commands are executed.
Check current branch (git branch --show-current)
main, master, developValidate branch naming
feature/, fix/, hotfix/, refactor/, chore/, docs/Validate the last 5 commit messages (git log -5 --format="%s")
{type}({scope}): {subject} formatfeat, fix, refactor, docs, style, test, chore, perf{type}: {subject} form without scope is accepted (with warning)Check for committed secret files (git log --all --diff-filter=A --name-only)
.env, .env.*, credentials*, *.pem, *.key, secrets*Output the following matrix before generating the final report. Do not proceed until every item has been checked.
| Item | Status | Result | Detail | Evidence |
|---|---|---|---|---|
| Current branch | ? | PASS/WARN | branch name | {Bash: git branch} |
| Branch naming | ? | PASS/WARN | prefix check | {Bash: git branch -a} |
| Commit 1 | ? | PASS/WARN/FAIL | message | {Bash: git log -5} |
| Commit 2 | ? | PASS/WARN/FAIL | message | |
| Commit 3 | ? | PASS/WARN/FAIL | message | |
| Commit 4 | ? | PASS/WARN/FAIL | message | |
| Commit 5 | ? | PASS/WARN/FAIL | message | |
| Secret files | ? | PASS/FAIL | detection result | {Bash: git log --diff-filter=A} |
Status values: PASS (verified clean), NOT_APPLICABLE (not a git repository), SKIPPED (git not used), SHALLOW (partial check)
Verify every item before drafting the report. If any item is unchecked, go back and complete it.
Verify the JSON output before writing to .ww-w-ai/standards/validate-git/:
Produce the validation report in the user's conversation language.
Output the validation results in the following format:
Git Rule Compliance Report
==================================================
| Item | Status | Detail |
|------|:------:|--------|
| Current branch | PASS | feature/user-auth |
| Branch prefix | PASS | feature/ prefix confirmed |
| Commit message 1 | PASS | feat(auth): add token renewal logic |
| Commit message 2 | WARN | fix: bug fix -- scope missing |
| Commit message 3 | FAIL | fixed stuff -- does not follow Conventional Commits |
| Secret files | PASS | no secret files detected |
--------------------------------------------------
Total: 4/6 passed | 1 warning | 1 failure
After generating the Git validation report, persist results to .ww-w-ai/standards/validate-git/:
.ww-w-ai/standards/validate-git/ directory if it does not existlatest.json -- structured result following templates/schema.jsonlatest.md -- human-readable report following templates/report.template.mdhistory/ -- copy latest.json to .ww-w-ai/standards/validate-git/history/{timestamp}.jsonlatest.md is produced in the user's conversation language. JSON field names remain in English regardless of language.
The JSON output enables machine-parseable history tracking and cross-run comparison.
The history/ directory preserves prior runs for trend analysis.
.ww-w-ai/standards/ output persistence. No modification of project source.Detailed verification criteria, evidence tables, examples:
../../docs/specs/git.md../../docs/evidence/evidence-registry.md