Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/aromarious/aw-daily-reporter --skill commitコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | commit |
| description | 変更をコミットする |
| disable-model-invocation | false |
| allowed-tools | Bash |
現在のステージング状態と変更ファイルを確認する。
git status
git diff --staged
git diff
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> を追加する重要: 既にステージングされている変更がある場合は、git add . を実行せず、ステージングされている変更のみをコミットすること。
git commit -m "$(cat <<'EOF'
<COMMIT_MESSAGE>
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
EOF
)"
git add . && git commit -m "$(cat <<'EOF'
<COMMIT_MESSAGE>
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
EOF
)"
git log -1 --oneline