ソース情報
- リポジトリ
- dlants/dotfiles
- ソースの最終更新活動
- 2026年7月17日 17:00
- 検出された SKILL.md の言語
- 英語
- スター
- 9
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/dlants/dotfiles --skill planコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | plan |
| description | Guide for creating plans for tackling complex work. |
Before writing the plan, ground yourself in the project as it actually is rather than guessing about the shape of things.
When architecting your solution:
Write the plan to plans/YYYY-MM-DD-<planName>.md (using the current date).
# Objective and Context
[The user's request, captured verbatim.]
[The key types, interfaces, and entities involved, and how they relate.]
[The relevant files, each with a one-line description of its role.]
# Design
[A high-level description of the algorithm or system. The main components, how they interact, and the data flow between them. The reasoning behind the approach and any alternatives considered.]
Invariants:
- [Property that must hold, e.g. "the cache must never return stale entries after an invalidation"]
- [Assumption the current code depends on that we must preserve]
- [Edge case the design must handle]
# Stages
## [stage name that summarizes it in a few words like "backend" or "preparing type system"]
- Goal: [what works once this stage is done]
- Tests:
- When we do x, y should happen.
- Unit tests that just restate what the code is doing are insufficient.
- Consider where the complexity of this implementation lives.
- If the hard part is in how the existing code integrates with the surrounding context, then verify the integration directly.
## [stage name]
- Goal: [...]
- Tests: [...]