ソース情報
- リポジトリ
- av1155/.dotfiles
- ソースの最終更新活動
- 2026年5月7日 18:49
- 検出された SKILL.md の言語
- 英語
- スター
- 6
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/av1155/.dotfiles --skill rebaseコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Write, shorten, or fix a real email to a real person. Use when the user says write an email, draft an email, reply to this, send this to, email my coworker/boss/client/vendor, follow up on, ask them for, make this email shorter, is this too long, review my email, or fix the tone. Applies research-backed structure (bottom line up front, length targets, skimmable formatting) and strips the narration and hedging that make drafts unreadable. Skip for marketing campaign copy, newsletters, and cold outreach sequences.
Exhaustive post-work audit for any codebase. Run after finishing a feature, sprint, bug fix, or refactoring pass to find overlooked edge cases, discarded response data, missing cross-field validations, misleading success signals, untested failure paths, and implicit assumptions. Invoke with /deep-audit or /deep-audit followed by context. Use this skill whenever the user says audit, review my changes, check my work, what did I miss, post-mortem, sanity check, edge cases, or asks to verify completeness of recent code changes.
Adversarial code review of the current branch. Launches a thorough review checking correctness, security, performance, architecture, type safety, and test coverage. Verifies findings against current library documentation via ctx7 and web sources to avoid flagging correct modern patterns as errors. Use after completing a feature, before merging any agent-generated code, when running gate checks between waves, or whenever you suspect code quality issues. Also use when asked to "review," "audit," "check," or "look over" code changes, even if the user doesn't say "adversarial."
SOC 職業分類に基づく
| name | rebase |
| description | Rebase the current branch with smart conflict resolution. |
| disable-model-invocation | true |
| allowed-tools | Read, Bash, Glob, Grep |
Rebase the current branch.
Arguments: $ARGUMENTS
Behavior:
Steps:
git fetch <remote>git rebase <target>If the rebase touched any dependency manifest or lock file, install the updated dependencies now. Otherwise subsequent builds or tests may fail against stale installed packages.
git diff HEAD@{1} HEAD --name-only
If a manifest or lock file changed, run this project's install command. If nothing relevant changed, skip.
Handling conflicts:
git log -p -n 3 <target> -- <file> to see
recent changes to that file in the target branchgit rebase --continue