ソース情報
- リポジトリ
- RazoBeckett/skills
- ソースの最終更新活動
- 2026年8月11日 13:28
- 検出された 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/RazoBeckett/skills --skill atomic-commitsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
make concise pull request. Use when the user asks to open, or create a PR.
read to know instructions for uploading html when user asks for html
Use when writing persuasive copy - emails, ads, sales pages, hooks, video scripts, or any text meant to move a reader toward one action. Covers foundation research, hooks, body writing, and CTAs.
SKILL.md を表示中
| name | atomic-commits |
| description | use when asked to git commit changes. |
<type>(optional-scope): short imperative summary
<plain-prose explanation of the problem this commit solves, based on
what the changes actually do, NOT how they do it>
Rules:
BREAKING CHANGE: footer only if truly breaking.Types: feat fix refactor docs test chore perf build ci
example 1:
fix(auth): reject expired refresh tokens instead of silently renewing them
Users with expired refresh tokens were getting new access tokens
without re-authenticating, since the expiry check only looked at
access token TTL and ignored the refresh token's own expiry.
example 2:
feat(export): let users export their data as CSV
There was no way for users to get their data out of the app besides
asking support to run a manual DB query, which didn't scale.