Upgrade to Pro — share decks privately, control downloads, hide ads and more …

AIに対する不満を無くす方法 ー いいスキルの活用方法と見つけ方

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.

AIに対する不満を無くす方法 ー いいスキルの活用方法と見つけ方

Avatar for Amine Ilidrissi

Amine Ilidrissi

May 14, 2026

More Decks by Amine Ilidrissi

Other Decks in Technology

Transcript

  1. --- name: grill-me description: Interview the user relentlessly about a

    plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me". --- Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer. Ask the questions one at a time. If a question can be answered by exploring the codebase, explore the codebase instead. mattpocock/skills より 7
  2. --- argument-hint: What will the next session be used for?

    description: Compact the current conversation into a handoff document for another agent to pick up. name: handoff --- Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save it to a path produced by `mktemp -t handoff-XXXXXX.md` (read the file before you write to it). Suggest the skills to be used, if any, by the next session. Do not duplicate content already captured in other artifacts (PRDs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead. If the user passed arguments, treat them as a description of what the next session will focus on and tailor the doc accordingly. mattpocock/skills より 12
  3. 「PR 出して」と頼んでも、最後までやってくれない commit / push / PR 作成 / CI

    監視 / 失敗修正 このうち、どれかが必ず手動になる。 16
  4. --- name: ship-it description: Take the current repo state to

    a green draft PR — branch, commit, push, open PR, watch CI, fix failures autonomously... --- # ship-it ## Preflight ## Phase 1 — Branch ## Phase 2 — Commit ## Phase 3 — Push ## Phase 4 — PR ## Phase 5 — Watch CI ## Phase 6 — Fix loop ## Phase 7 — Green 17
  5. write-a-skill でスキルを書く /grill-me /write-a-skill 次の流れを実現してくれるスキルを作りたい:ブランチを作って(デフォルトブランチやworktree 外 にいる場合) 、コミット → プッシュ

    → PR 作成(既存PR がなければ)→ CI 監視 → CI が直るまで修正。PR タイトルはプロジェクト のコミット規約、PR 説明文は既存テンプレート・パターンに従う。 21
  6. まずは、不満を一つ。 --- name: grill-me description: Interview the user relentlessly about

    a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me". --- Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer. Ask the questions one at a time. If a question can be answered by exploring the codebase, explore the codebase instead. AI に対する不満を一つ考えて、その不満を消してくれるスキルを探しましょう。 27
  7. もし、そのスキルが無ければ? --- name: ship-it description: Take the current repo state

    to a green draft PR — branch, commit, push, open PR, watch CI, fix failures autonomously... --- ## Phase 1 — Branch ## Phase 2 — Commit ## Phase 3 — Push ## Phase 4 — PR ## Phase 5 — Watch CI ## Phase 6 — Fix loop ## Phase 7 — Green 自分で書きましょう! 28