AIFCC
記事一覧へ
claude-setupclaude-workflowagent-ops

Claude $20サブスクで開発チームを構築する67スキル

Mr. Buzzoni@polydao
1,863233
ほとんどの人はClaudeを$20のオートコンプリートのように使っています。 入力する。答えを得る。移動する。 > Claudeがアーキテクト、レビュアー、デバッガー、ドキュメントライターを含む完全な開発チームを——全て同時に——動かせることを知らない > スキルの存在を知らないだけです **違いは?スキルです。** 67個のスキル。完全なインストールコマンド付き。ユースケース別に分類。 ## Claudeスキルとは実際何か スキルは、Claudeが特定の種類の作業をどのように行うかを正確に指示するSKILL.mdファイルを含むフォルダです:ステップバイステップのプロセス、制約、例、そして必要なヘルパースクリプトやテンプレート。 毎回のセッションでプロセスを再説明する代わりに、そのプロセスをスキルとして一度インストールして永遠に再利用します。 インストールコマンドはこの形式を使います: ``` npx skills@latest add mattpocock/skills/[skill-name] ``` 主要リポジトリ: - 公式Anthropicスキル:github.com/anthropics/skills - Matt Pocock個人スキル(15kスター):github.com/mattpocock/skills - コミュニティマーケットプレイス(66k以上のスキル):skillsmp.com ## メタスキル — AIワークスペースの管理 これらのスキルは他の全てのスキルを構築、テスト、整理するのに役立ちます。 **スキルクリエーター** 機能:タスクをベンチマークして、実際の実行に基づいて新しいスキルの草案と反復を支援。 使用タイミング:散らかったワークフローをクリーンな1つのSKILL.mdに変換したいとき。 Link: github.com/anthropics/skills/tree/main/skills/skill-creator **スキルを書く** 機能:適切な構造、プログレッシブディスクロージャー、バンドルリソースで新しいスキルを書くようClaudeをガイド。 Install: `npx skills@latest add mattpocock/skills/write-a-skill` Link: github.com/mattpocock/skills/tree/main/write-a-skill **スキルを探す** 機能:ユースケースに合ったスキルをSkillsMPなどの公開マーケットプレイスで検索。 マーケットプレイス例:skillsmp.com ヒント:「スキルを見つける」はパッケージ管理のように扱いましょう。新しいスキルを書く前に既存のものを検索してフォークする。 ## 計画&設計スキル これらのスキルは間違ったものを作るのを防ぎます。 **Grill Me** 目的:一度に1つの質問で、決断ツリーの全ての分岐が解決されるまで機能について執拗な質問を強制。 使用場面:新機能、リファクター、リスクの高いマイグレーション。 Install: `npx skills@latest add mattpocock/skills/grill-me` Link: github.com/mattpocock/skills/tree/main/grill-me データモデル、エッジケース、失敗モード、既存システムについての質問が出てきます。後で消火活動をする代わりに、一度辛抱強く答えましょう。 **PRDを書く** 目的:インタラクティブなインタビュー、コードベース探索、モジュール設計でPRDを作成。GitHubのIssueとして提出。 Install: `npx skills@latest add mattpocock/skills/write-a-prd` Link: github.com/mattpocock/skills/tree/main/write-a-prd **PRDからプラン** 目的:PRDをトレーサーバレットの垂直スライスを使ったマルチフェーズ実装計画に変換。これは単なるタスク分解ではなく、実際に統合リスクを減らすシーケンスを提供。 Install: `npx skills@latest add mattpocock/skills/prd-to-plan` Link: github.com/mattpocock/skills/tree/main/prd-to-plan **PRDからIssue** 目的:PRDを独立して取り組めるGitHub Issueにブロック関係付きで分解。 Install: `npx skills@latest add mattpocock/skills/prd-to-issues` Link: github.com/mattpocock/skills/tree/main/prd-to-issues **インターフェースをデザインする** 目的:並列サブエージェントを使ってモジュールの根本的に異なるインターフェースデザインを複数生成。 Install: `npx skills@latest add mattpocock/skills/design-an-interface` Link: github.com/mattpocock/skills/tree/main/design-an-interface 1つのデザインだけでなく、異なるトレードオフを持つ3〜5つの競合オプションが得られます。 **リファクタープランをリクエスト** 目的:ユーザーインタビューで細かいコミットを持つ詳細なリファクタープランを作成し、GitHubのIssueとして提出。 Install: `npx skills@latest add mattpocock/skills/request-refactor-plan` Link: github.com/mattpocock/skills/tree/main/request-refactor-plan ## コード開発スキル これらのスキルはClaudeをコードオートコンプリートのおもちゃではなく、規律あるエンジニアリングパートナーに変えます。 **TDD** 目的:厳格なテストファースト、レッド・グリーン・リファクターループを強制。一度に1つの垂直スライスで機能を構築またはバグを修正。 Install: `npx skills@latest add mattpocock/skills/tdd` Link: github.com/mattpocock/skills/tree/main/tdd 得られるもの:先に失敗するテスト、それを通すための最小限のコード、テスト下でのリファクタリングパス。 **Issueのトリアージ** 目的:コードベースを探索することでバグを調査し、根本原因を特定し、TDDベースの修正計画でGitHubのIssueを提出。 Install: `npx skills@latest add mattpocock/skills/triage-issue` Link: github.com/mattpocock/skills/tree/main/triage-issue これは「なぜ壊れているのか全く分からない」スキルです。まず探偵作業を行い、それから正しく修正するための構造化されたプランを提供。 **QA** 目的:ブロック関係を含むIssue分解で機能の完全なQAパスを実行。 Install: `npx skills@latest add mattpocock/skills/qa` Link: github.com/mattpocock/skills/tree/main/qa 全てのPRの前に使用:エッジケースを全て発見、Issueをブロック順に提出、リグレッションなしで出荷。 **コードベースアーキテクチャの改善** 目的:アーキテクチャ改善の機会についてコードベースを探索。浅いモジュールの深化とテスタビリティの向上に焦点。 Install: `npx skills@latest add mattpocock/skills/improve-codebase-architecture` **オートコミットメッセージ** 目的:ステージされた差分を読み込み、タイプ、スコープ、本文を含む規約的なコミットメッセージを生成。 Install: `npx skills@latest add anthropics/skills/auto-commit` Link: github.com/anthropics/skills/tree/main/skills/auto-commit **コードレビュー** 目的:セキュリティ、パフォーマンス、エラー処理、アーキテクチャの体系的なレビューを提供。 Link: github.com/anthropics/skills(コードレビューで検索) **体系的なデバッグ** 出典:Superpowersリポジトリ 目的:ランダムな「とりあえず変えてみる」編集を禁止する4フェーズデバッグ手法。 典型的なフロー:再現して最小の失敗テストを作成 → 根本原因を絞り込む → 単一の修正を適用 → テストとログで検証 **ブレインストーミング** 目的:ソクラテス式質問で生の機能アイデアを詳細なフローとアーキテクチャに変換。 実装前に使用:データ形状設計、APIサーフェス、失敗とロールバックのストーリー **チェンジログジェネレーター** 目的:コミットを読み込んで人間が読めるまたは開発者向けのチェンジログを生成。 使用場面:リリース、内部更新、投資家サマリー **Simplification Cascade** 目的:複雑なロジックを特定して、より小さく合成可能なピースに書き直す。 最適な用途:誰も触りたくないレガシーの「神様関数」 **Superpowers** TDD、デバッグ、リファクタリング、実行のための実戦テスト済みスキルの完全なスイート。 Link: github.com/obra/superpowers デフォルトの「エンジニアリングブレイン」レイヤーとして使用。 **React ベストプラクティス** 目的:ReactコードでVercel/Next.jsスタイルのベストプラクティスを強制。 Link: github.com/vercel-labs/agent-skills/tree/main/skills/react-best-practices ## ツーリングとセットアップスキル 「一度やって永遠に忘れる」スキル。 **プリコミットをセットアップ** 目的:lint-staged、Prettier、型チェック、テストを含むHuskyプリコミットフックをセットアップ。 Install: `npx skills@latest add mattpocock/skills/setup-pre-commit` 全ての新しいリポジトリで実行。未来の自分が感謝するでしょう。 **Claude Code向けGitガードレール** 目的:プッシュ、reset --hard、cleanなどの危険なgitコマンドを実行前にブロックするClaude Codeフックをセットアップ。 Install: `npx skills@latest add mattpocock/skills/git-guardrails-claude-code` 本番リポジトリでClaude Codeを使う場合は必須。Claudeは速くて便利ですが、そうでなくなることもあります。このスキルがセーフティネットです。 **依存関係オーディター** 目的:package.jsonで時代遅れ、脆弱性のある、または放棄されたパッケージをスキャンして優先度付きの修正リストを出力。 Install: `npx skills@latest add ComposioHQ/awesome-claude-skills/dependency-auditor` ## イシューとプロジェクト管理スキル **GitHub トリアージ** 目的:エージェントブリーフとスコープ外ドキュメントで受信GitHubのIssueをトリアージ。 Install: `npx skills@latest add mattpocock/skills/github-triage` 大規模なIssueバックログの高速処理、自動ラベル付けとカテゴリ分け、適切な人またはエピックへのルーティングに使用。 ## ライティングとナレッジスキル **記事を編集する** 目的:セクションの再構成、明確さの改善、文章の引き締めによって記事を編集・改善。 Install: `npx skills@latest add mattpocock/skills/edit-article` 「文法をクリーンアップ」ではありません。論点を再構成し、フィラーをカット、各セクションのポイントを鋭くします。 **ユビキタス言語** 目的:現在の会話からDDDスタイルのユビキタス言語用語集を抽出。 Install: `npx skills@latest add mattpocock/skills/ubiquitous-language` 全てのチームには独自の語彙があります:「イベント」「注文」「ユーザー」は人によって異なる意味を持ちます。このスキルはClaudeにコードを書く前にドメイン言語を表面化させます。 **APIドキュメントジェネレーター** 目的:ルートを読み込んでOpenAPI/Swaggerドキュメントを例、エラーコード、認証要件と共に生成。 使用タイミング:APIを出荷したがドキュメントを書いたことがないとき。 **コンテンツリサーチャー** 目的:ライティングスタイルを学習し、実際の引用でロングフォームのブログやニュースレターの下書きを作成。 **Obsidianボルト** 目的:wikiリンクとインデックスノートを使ってObsidianボルト内のノートを検索、作成、管理。 Install: `npx skills@latest add mattpocock/skills/obsidian-vault` Link: github.com/mattpocock/skills/tree/main/obsidian-vault ## UI、デザイン、フロントエンドスキル **フロントエンドデザイン** 目的:現代的でクリーンなUIを生成するようClaudeをガイド。 Link: github.com/anthropics/skills/tree/main/skills/frontend-design **テーマファクトリー** 目的:単一のテキストプロンプトから完全なカラーパレットとテーマを生成。 **キャンバスデザイン** 目的:テキストプロンプトをソーシャルメディアグラフィック、ポスター、カバーに変換。 **Webアーティファクトビルダー** 目的:自然言語からインタラクティブなダッシュボード、計算機、ツールを構築。 **ブランドガイドライン** 目的:全ての新しいコンポーネントにブランドシステムを強制。 ## ビジネス、セールス、マーケティングスキル **ドメイン名ブレインストーマー** 目的:製品名を生成してドメイン可用性を確認。 使用場面:新しいアプリやマイクロブランドのローンチ時。 **Stripe統合** 目的:初心者的なAPIミスなしでセキュアな支払いフロー、Webhook、サブスクリプションをセットアップ。 Link: github.com/wshobson/agents/tree/main/plugins/payment-processing/skills/stripe-integration **リードリサーチアシスタント** 目的:ICPに基づいてターゲット企業と意思決定者を発見。 **マーケティングスキル** 20以上のCRO、コピーライティング、メールフローなどのスキル。 Link: github.com/coreyhaines31/marketingskills **Claude SEO** 目的:完全なテクニカルSEO監査、スキーマ、オンページ最適化。 Link: github.com/AgriciDaniel/claude-seo ## メディア生成スキル **イメージジェネレーター** 写真品質の画像のためのNano Banana Proなどの外部APIに接続。 **画像オプティマイザー** 目的:Webのパフォーマンスのために画像をリサイズしてWebPに変換。 **Remotionベストプラクティス** 目的:Remotionを使ってビデオとモーショングラフィックスを生成するためのベストプラクティスをエンコード。 ## オフィス、ドキュメント、プロダクティビティスキル **PDF処理** 目的:テーブルを抽出し、フォームを埋め、PDFをマージ。 Link: github.com/anthropics/skills/tree/main/skills/pdf **DOCX** 目的:変更履歴とフォーマットを保持したままWordドキュメントを編集。 **PPTX** 目的:スライドデッキ、レイアウト、スピーカーノートを作成・編集。 **XLSX** 目的:自然言語から数式、ピボットテーブル、チャートを作成。 **Doc 共同執筆** 目的:あなたとClaudeのリアルタイムコラボライティング。 Link: github.com/anthropics/skills/tree/main/skills/doc-coauthoring **GWS(Google Workspace)** 目的:Google Calendar、Drive、Docsを自動化。 使用例:ミーティングのスケジュール変更、共有ドライブの整理、テンプレートからドキュメント生成。 ## マルチエージェントオーケストレーションとWebサーフィン **確率的マルチエージェントコンセンサス** 目的:同じ問題を解決するために多数のサブエージェントを生成して回答を集約。 使用場面:戦略的決断、アーキテクチャの選択、リスク分析。 **Model-chat(ディベート)** 目的:複数のClaudeインスタンスをディベートに参加させてアイデアをストレステスト。 使用場面:2〜3つの大きな選択肢を選んでいるとき。 **Playwright CLI** 目的:Playwrightで実際のブラウザを制御してUIリグレッションチェックとファネルウォークスルーを実行。 Link: github.com/microsoft/playwright **Firecrawlスキル** 目的:ナイーブなスクレイパーをブロックする敵対的または複雑なサイトから構造化データをスクレイプ。 Link: github.com/mendableai/firecrawl ## ワークフローへの組み込み方 1. **まずメタスキルから始める** — Write a SkillとSkill Creatorをインストールして、初日からスキルを適切に構築・修正できるようにする。 2. **まず計画スキルを追加する** — Grill Me、Write a PRD、PRD to Plan、PRD to Issues、Design an Interface。これらで作業のやり直しの80%を防ぎます。 3. **コードの安全を確保する** — Git Guardrails、Setup Pre-Commit、TDD、Systematic Debugging、Triage Issue。全てのリポジトリにインストール。 4. **Superpowersをエンジニアリングベースとして追加** — github.com/obra/superpowers 5. **ビジネススキルを上に重ねる** — Marketing Skills、Claude SEO、Lead Research、Content Researcher。 6. **SkillsMPでギャップを埋める** — skillsmp.com — 新しい問題に当たったら、構築する前に検索。 ## これを保存してください これがClaude スキルの完全なスタックです——計画、コーディング、デザイン、マーケティング、ドキュメント、メディア、マルチエージェントオーケストレーションが1か所に。 ほとんどの人はこれをざっと読んで、タブを閉じて、2024年のようにClaudeにプロンプトを入力し続けます。 そうならないでください。 今すぐこのページをブックマークしてください。リンクインデックス全体を自分のドキュメントにコピーしてください。各セクションから1つのスキルを選んで今日インストールしてください。1週間後、それなしでは働けないことに気づいたときに戻ってきてください。 これで時間が節約されたなら、リポストしてください。あなたのタイムラインには、単一のSKILL.mdが自動でやることを得るために500ワードのプロンプトを書いている人がまだいます。 Claudeについてのより多くの投稿、AIツール、予測市場、暗号通貨での本当に価値のあることについては、@polydaoをフォローしてください。
原文を表示 / Show original
Most people use Claude like a $20 autocomplete They type. They get an answer. They move on > They have no idea Claude can run an entire dev team - architect, reviewer, debugger, docs writer - all at once They just don't know skills exist > The difference? Skills. 67 of them. With full install commands. Sorted by use case. What Claude skills actually are A skill is a folder with a SKILL.md file that tells Claude exactly how to do a specific type of work: step-by-step process, constraints, examples, and any helper scripts or templates Instead of re-explaining your process every session, you install that process once as a skill and reuse it forever Install commands use this format: npx skills@latest add mattpocock/skills/[skill-name] Key repos: Official Anthropic skills: github.com/anthropics/skills Matt Pocock personal skills (15k stars): github.com/mattpocock/skills Community marketplace (66k+ skills): skillsmp.com Meta skills - managing your AI workspace These skills help you build, test, and organize every other skill Skill Creator What it does: Benchmarks Claude on your task, then helps you draft and iterate new skills based on real runs. Use it when: You want to turn a messy workflow into one clean SKILL.md. Link: github.com/anthropics/skills/tree/main/skills/skill-creator How to use: Describe your workflow in bullet points Ask Skill Creator to propose a first SKILL.md Run 3-5 test prompts, inspect failures, and let it refine the instructions Write a Skill What it does: Guides Claude to write new skills with proper structure, progressive disclosure, and bundled resources This is the right way to create skills that don't break over time Link: github.com/mattpocock/skills/tree/main/write-a-skill Install: npx skills@latest add mattpocock/skills/write-a-skill Use it when Skill Creator gives you a raw draft and you need to clean up the structure Find Skills What it does: Searches public marketplaces like SkillsMP for skills that match your use case. Example marketplace: skillsmp.com Tip: Treat "finding skills" like package management. Before you write a new skill, search for existing ones and fork them Planning and design skills These skills stop you from building the wrong thing. Grill Me Purpose: Forces Claude to ask relentless clarifying questions about your feature, one question at a time, until every branch of the decision tree is resolved. Use it for: New features, refactors, risky migrations. Install: npx skills@latest add mattpocock/skills/grill-me Link: github.com/mattpocock/skills/tree/main/grill-me You will get questions about data models, edge cases, failure modes, existing systems. Answer patiently once instead of firefighting later Write a PRD Purpose: Creates a PRD through an interactive interview, codebase exploration, and module design. Files it as a GitHub issue. Install: npx skills@latest add mattpocock/skills/write-a-prd Link: github.com/mattpocock/skills/tree/main/write-a-prd Ask it to: Capture goals, non-goals, user stories Enumerate success metrics and constraints Link to existing systems you'll touch PRD to Plan Purpose: Turns a PRD into a multi-phase implementation plan using tracer-bullet vertical slices. This is not just task breakdown - it gives you the sequence that actually reduces integration risk. Install: npx skills@latest add mattpocock/skills/prd-to-plan Link: github.com/mattpocock/skills/tree/main/prd-to-plan The difference from PRD to Issues: a plan is ordered and staged, issues are independent. Use both PRD to Issues Purpose: Breaks a PRD into independently-grabbable GitHub issues with vertical slices and blocking relationships. Install: npx skills@latest add mattpocock/skills/prd-to-issues Link: github.com/mattpocock/skills/tree/main/prd-to-issues Tell it: "Use PRD to Issues on the PRD above. Output GitHub issues grouped by epic with blockers stated explicitly" Design an Interface Purpose: Generates multiple radically different interface designs for a module using parallel sub-agents. Install: npx skills@latest add mattpocock/skills/design-an-interface Link: github.com/mattpocock/skills/tree/main/design-an-interface Not just one design - you get 3-5 competing options with different tradeoffs. Pick the one that makes sense for your constraints Request Refactor Plan Purpose: Creates a detailed refactor plan with tiny commits via user interview, then files it as a GitHub issue. Install: npx skills@latest add mattpocock/skills/request-refactor-plan Link: github.com/mattpocock/skills/tree/main/request-refactor-plan Code development skills These skills turn Claude into a disciplined engineering partner, not a code autocomplete toy. TDD Purpose: Forces a strict test-first, red-green-refactor loop. Builds features or fixes bugs one vertical slice at a time. Install: npx skills@latest add mattpocock/skills/tdd Link: github.com/mattpocock/skills/tree/main/tdd You get: Failing tests first Then minimal code to pass them Then a refactor pass, still under tests Triage Issue Purpose: Investigates a bug by exploring the codebase, identifies the root cause, and files a GitHub issue with a TDD-based fix plan. Install: npx skills@latest add mattpocock/skills/triage-issue Link: github.com/mattpocock/skills/tree/main/triage-issue This is the "I have no idea why this is broken" skill. It does the detective work first, then gives you a structured plan to fix it properly QA Purpose: Runs a full QA pass over a feature with issue breakdown that includes blocking relationships. Install: npx skills@latest add mattpocock/skills/qa Link: github.com/mattpocock/skills/tree/main/qa Use it before every PR: Surface all edge cases Get issues filed and ordered by what blocks what Ship without regressions Improve Codebase Architecture Purpose: Explores a codebase for architectural improvement opportunities, focusing on deepening shallow modules and improving testability. Install: npx skills@latest add mattpocock/skills/improve-codebase-architecture Link: github.com/mattpocock/skills/tree/main/improve-codebase-architecture Ask it to: Identify hotspots Propose 2-3 refactor strategies Detail risk, effort, and impact for each Migrate to Shoehorn Purpose: Migrates test files from as type assertions to @total-typescript/shoehorn - Matt Pocock's own TypeScript library Install: npx skills@latest add mattpocock/skills/migrate-to-shoehorn Link: github.com/mattpocock/skills/tree/main/migrate-to-shoehorn This is niche but extremely useful if you work in TypeScript and want type-safe test code. It's also a great template for writing migration skills for your own tools Scaffold Exercises Purpose: Creates exercise directory structures with sections, problems, solutions, and explainers. Install: npx skills@latest add mattpocock/skills/scaffold-exercises Link: github.com/mattpocock/skills/tree/main/scaffold-exercises Perfect for: Building course content Creating onboarding materials for your team Documenting complex systems as interactive exercises Auto-Commit Messages Purpose: Reads your staged diff and generates a conventional commit message with type, scope, and body Use it when: You're tired of writing "fix stuff" at 2am Install: npx skills@latest add anthropics/skills/auto-commit Link: github.com/anthropics/skills/tree/main/skills/auto-commit Code Review Purpose: Gives you a systematic review for security, performance, error handling, and architecture. Link: github.com/anthropics/skills (search Code Review) You can ask for: "Security-first review" "Performance-first review" Or a full checklist pass Systematic Debugging Origin: From the Superpowers repo Purpose: A 4-phase debugging methodology that forbids random "just try changing stuff" edits. Link: github.com/obra/superpowers/tree/main/skills/systematic-debugging Typical flow: Reproduce and create the smallest failing test Narrow the root cause Apply a single fix Verify with tests and logs Brainstorming Purpose: Turns raw feature ideas into detailed flows and architectures using Socratic questioning Use it pre-implementation: data shape design, API surface, failure and rollback story Link: github.com/obra/superpowers/tree/main/skills/brainstorming Change Log Generator Purpose: Reads your commits and produces human-readable or developer-focused change logs Use it for: Releases, internal updates, investor summaries Link: github.com/ComposioHQ/awesome-claude-skills/tree/master/changelog-generator Simplification Cascade Purpose: Identifies convoluted logic and rewrites it into smaller, composable pieces Best for: Legacy "god functions" that nobody wants to touch Link: mcpmarket.com/tools/skills/simplification-cascades-1 Superpowers What it is: A full suite of battle-tested skills for TDD, debugging, refactoring, and execution Link: github.com/obra/superpowers Use it as your default "engineering brain" layer React Best Practices Purpose: Enforces Vercel/Next.js style best practices in your React code Use it when: Migrating to Next, cleaning up a legacy React app, or training junior devs Link: github.com/vercel-labs/agent-skills/tree/main/skills/react-best-practices File Search Purpose: Teaches Claude to use tools like ripgrep and ast-grep to navigate large codebases fast Link: github.com/massgen/massgen Context Optimization Purpose: Reduces context size and token bills while keeping the important stuff Link: github.com/muratcankoylan/agent-skills-for-context-engineering Tooling and setup skills These are the "do this once, forget about it forever" skills Setup Pre-Commit Purpose: Sets up Husky pre-commit hooks with lint-staged, Prettier, type checking, and tests Install: npx skills@latest add mattpocock/skills/setup-pre-commit Link: github.com/mattpocock/skills/tree/main/setup-pre-commit Run this on every new repo. Your future self will thank you. Git Guardrails for Claude Code Purpose: Sets up Claude Code hooks that block dangerous git commands - push, reset --hard, clean, etc. - before they execute Install: npx skills@latest add mattpocock/skills/git-guardrails-claude-code Link: github.com/mattpocock/skills/tree/main/git-guardrails-claude-code This is not optional if you use Claude Code on production repos. Claude is fast and helpful until it isn't. This skill is your safety net Dependency Auditor Purpose: Scans your package.json for outdated, vulnerable, or abandoned packages and outputs a prioritized fix list Use it when: Your repo hasn't been touched in 6 months and you're scared to npm audit Install: npx skills@latest add ComposioHQ/awesome-claude-skills/dependency-auditor Link: github.com/ComposioHQ/awesome-claude-skills Git Work Trees Purpose: Manages safe feature development on isolated branches without breaking your main project Use it when: You need isolated experimental branches or parallel features Issue and project management skills GitHub Triage Purpose: Triages incoming GitHub issues with an agent brief and out-of-scope documentation so Claude knows exactly what to investigate and what to skip Install: npx skills@latest add mattpocock/skills/github-triage Link: github.com/mattpocock/skills/tree/main/github-triage Use it to: Process large issue backlogs fast Label and categorize automatically Route issues to the right person or epic Writing and knowledge skills Edit Article Purpose: Edits and improves articles by restructuring sections, improving clarity, and tightening prose Install: npx skills@latest add mattpocock/skills/edit-article Link: github.com/mattpocock/skills/tree/main/edit-article This is not "clean up grammar". It restructures arguments, cuts filler, and sharpens the point of each section Ubiquitous Language Purpose: Extracts a DDD-style ubiquitous language glossary from the current conversation Install: npx skills@latest add mattpocock/skills/ubiquitous-language Link: github.com/mattpocock/skills/tree/main/ubiquitous-language Why it matters: Every team has private vocabulary: "event", "order", "user" mean different things to different people This skill forces Claude to surface and define your domain language before any code is written Your codebase, docs, and conversations then share the same words for the same things API Documentation Generator Purpose: Reads your routes and generates OpenAPI / Swagger docs with examples, error codes, and auth requirements Use it when: You shipped the API but never wrote the docs Install: npx skills@latest add ComposioHQ/awesome-claude-skills/api-docs-generator Link: github.com/ComposioHQ/awesome-claude-skills Paste it into your README or host it on Swagger UI. Takes 30 seconds. Content Researcher Purpose: Learns your writing style, then drafts long-form blogs and newsletters with real citations Use it to: Clone your Twitter tone into longer posts, produce SEO blog posts Link: github.com/ComposioHQ/awesome-claude-skills/blob/master/content-research-writer/SKILL.md Obsidian Vault Purpose: Searches, creates, and manages notes in an Obsidian vault with wikilinks and index notes Install: npx skills@latest add mattpocock/skills/obsidian-vault Link: github.com/mattpocock/skills/tree/main/obsidian-vault Different from the Kepano Obsidian skill which auto-tags. This one is interactive - it navigates your vault, creates new notes, and maintains link consistency. Also available: github.com/kepano/obsidian-skills - the auto-tagging variant UI, design, and frontend skills Frontend Design Purpose: Guides Claude to produce modern, clean UI Link: github.com/anthropics/skills/tree/main/skills/frontend-design Awesome-design Purpose: Uses markdown templates inspired by Notion, Figma, etc to structure your UI thinking Use it for: Landing pages, dashboards, settings pages Link: github.com/VoltAgent/awesome-design-md Theme Factory Purpose: Generates complete color palettes and themes from a single text prompt Link: github.com/anthropics/skills/tree/main/skills/theme-factory Workflow: Describe your brand: "calm fintech, trust, dark accent" Get palette with tokens Apply to Tailwind / CSS variables Canvas Design Purpose: Turns text prompts into social media graphics, posters, and covers Link: github.com/anthropics/skills/tree/main/skills/canvas-design Web Artifacts Builder Purpose: Builds interactive dashboards, calculators, and tools from natural language Link: github.com/anthropics/skills/tree/main/skills/web-artifacts-builder Algorithmic Art Purpose: Uses p5.js for generative and algorithmic visuals Link: github.com/anthropics/skills/tree/main/skills/algorithmic-art Brand Guidelines Purpose: Enforces your brand system across all new components Link: github.com/anthropics/skills/tree/main/skills/brand-guidelines Business, sales, and marketing skills Domain Name Brainstormer Purpose: Generates product names and checks domain availability Use it when: Launching new apps or micro-brands Link: github.com/Microck/ordinary-claude-skills/tree/main/skills_all/domain-name-brainstormer Stripe Integration Purpose: Sets up secure payment flows, webhooks, and subscriptions without rookie API mistakes Link: github.com/wshobson/agents/tree/main/plugins/payment-processing/skills/stripe-integration Lead Research Assistant Purpose: Finds target companies and decision-makers based on your ICP Use it for: B2B outreach lists, partnership hunting Link: github.com/ComposioHQ/awesome-claude-skills/blob/master/lead-research-assistant/SKILL.md Marketing Skills What it is: 20+ skills for CRO, copywriting, email flows, etc Link: github.com/coreyhaines31/marketingskills Claude SEO Purpose: Full technical SEO audit, schema, and on-page optimization. Link: github.com/AgriciDaniel/claude-seo Idea Mining / YouTube Weekly Roundup Purpose: Scrapes your comments, competitor videos, and niche trends into a weekly idea bank + SWOT PDF Link: https://github.com/AgriciDaniel/claude-youtube Install: npx skills@latest add AgriciDaniel/claude-youtube Media generation skills Image Generator Purpose: Connects to external APIs like Nano Banana Pro for photo-quality images Nano Banana Pro: github.com/feedtailor/ccskill-nanobanana Nano Banana 2: github.com/kingbootoshi/nano-banana-2-skill Local Image Gen Purpose: Runs a local Python script to generate avatars and icons Link: github.com/jezweb/claude-skills/blob/main/plugins/design-assets/skills/ai-image-generator/SKILL.md Image Optimizer Purpose: Resizes and converts images to WebP for fast web performance Link: mcpmarket.com/tools/skills/image-optimizer Remotion Best Practices Purpose: Encodes best practices for using Remotion to generate video and motion graphics. Link: github.com/remotion-dev/remotion Emotion Purpose: Scripted, programmatic video animations Link: github.com/wilwaldon/Claude-Code-Video-Toolkit Office, documents, and productivity skills PDF Processing Purpose: Extracts tables, fills forms, merges PDFs Link: github.com/anthropics/skills/tree/main/skills/pdf DOCX Purpose: Edits Word docs with tracked changes and formatting intact Link: github.com/anthropics/skills/tree/main/skills/docx PPTX Purpose: Creates and edits slide decks, layouts, and speaker notes Link: github.com/anthropics/skills/tree/main/skills/pptx XLSX Purpose: Writes formulas, pivot tables, and charts from plain English Link: github.com/anthropics/skills/tree/main/skills/xlsx Excel MCP Server Purpose: Manipulates Excel files directly via MCP, no desktop Excel required Link: github.com/haris-musa/excel-mcp-server Doc Co-Authoring Purpose: Real-time collaborative writing between you and Claude Link: github.com/anthropics/skills/tree/main/skills/doc-coauthoring NotebookLM Integration Purpose: Bridges Claude with Google's NotebookLM for summaries and flashcards Link: github.com/PleasePrompto/notebooklm-skill GWS (Google Workspace) Purpose: Automates Google Calendar, Drive, Docs Use cases: Reschedule meetings, organize shared drives, generate docs from templates Link: https://github.com/googleworkspace/cli Multi-agent orchestration and web surfing Stochastic Multi-Agent Consensus Purpose: Spawns many sub-agents to solve the same problem and aggregates their answers Use it for: Strategy decisions, architecture choices, risk analysis Link: github.com/hungv47/meta-skills Model-chat (Debate) Purpose: Puts multiple Claude instances into a debate to stress-test ideas Use it when: You're choosing between 2-3 big bets Link: github.com/tommasinigiovanni/conclave Custom YT Search Purpose: Searches and analyzes YouTube content autonomously Link: github.com/ZeroPointRepo/youtube-skills/blob/main/README.md Playwright CLI Purpose: Controls a real browser via Playwright for UI regression checks and funnel walkthroughs Link: github.com/microsoft/playwright Firecrawl Skill Purpose: Scrapes structured data from hostile or complex sites that block naive scrapers Link: github.com/mendableai/firecrawl How to wire this into your workflow Start with meta skills - Install Write a Skill and Skill Creator so you can build and fix skills properly from day one. Add planning skills first - Grill Me, Write a PRD, PRD to Plan, PRD to Issues, Design an Interface. These prevent 80% of rework. Lock in code safety - Git Guardrails, Setup Pre-Commit, TDD, Systematic Debugging, Triage Issue. Install these on every repo. Add Superpowers as your engineering base - github.com/obra/superpowers Layer business skills on top - Marketing Skills, Claude SEO, Lead Research, Content Researcher. Use SkillsMP to fill gaps - skillsmp.com - when you hit a new problem, search before you build Save this before you forget You just got the full Claude skill stack - planning, coding, design, marketing, docs, media, and multi-agent orchestration in one place Most people will skim this, close the tab, and go back to prompting Claude like it's 2024 Don't be that person Bookmark this page right now Copy the full link index into your own doc Pick one skill from each section and install it today Come back in a week when you realize you can't work without them If this saved you time - repost it. Someone on your timeline is still writing 500-word prompts to get what a single SKILL.md does automatically Follow me @polydao for more posts on Claude, AI tools, prediction markets, and what's actually worth your time in crypto

AIFCC — AI Fluent CxO Club

読み書きそろばん、AI。経営者が AI を自分で動かせるようになるコミュニティ。

Claude $20サブスクで開発チームを構築する67スキル | AIFCC