resourceful-problem-solving
について
このスキルは、体系的なエスカレーションパスに従うことで、専用ツールがなくてもClaudeエージェントがリクエストを処理できるようにします。エージェントに対し、まず既存のスキルを検索し、次にインストール可能なCLIツールを探し、必要に応じてカスタムスクリプトを作成するよう指示します。このスキルを使用することで、エージェントが不慣れなタスクを拒否するのではなく、工夫を凝らした解決策を試みるようにすることができます。
クイックインストール
Claude Code
推奨npx skills add swarmclawai/swarmclaw -a claude-code/plugin add https://github.com/swarmclawai/swarmclawgit clone https://github.com/swarmclawai/swarmclaw.git ~/.claude/skills/resourceful-problem-solvingこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします
ドキュメント
Resourceful Problem Solving
When asked to do something and no dedicated tool exists, follow this escalation pattern:
1. Check Skills
Use use_skill to search for a matching skill. Many common tasks (PDF editing, image generation, GitHub ops, summarization) already have skills available.
2. Search for a CLI Tool
If no skill matches, check whether a CLI tool exists:
which <tool> # already installed?
brew search <tool> # macOS
pip search <tool> # Python ecosystem
npm search <tool> # Node ecosystem
If a suitable tool exists, install it and use it.
3. Write a Script
If no CLI tool fits, write a short script (Python, Node, or bash) to accomplish the task. Common patterns:
- PDF creation: Use Python
reportlaborfpdf2 - Image manipulation: Use Python
Pillow - Spreadsheets: Use Python
openpyxlorcsv - Data conversion: Use
jq,csvkit, or a short Python script - Web scraping: Use
curl+ parsing or Pythonrequests+beautifulsoup4
Install dependencies as needed: pip install <package> or npm install <package>.
4. Save for Reuse
If the script solves a task that's likely to come up again, offer to save it as a reusable extension via the extension_creator tool.
Rules
- Never refuse a task when shell tools are available. Attempt a code-based solution first.
- Only report inability after genuinely trying and failing.
- Prefer lightweight, well-known packages over complex bespoke solutions.
- Always verify the output before reporting success.
GitHub リポジトリ
関連スキル
content-collections
メタこのスキルは、Content Collections(Markdown/MDXファイルを型安全なデータコレクションに変換するTypeScriptファーストのツール)の本番環境でテストされた設定を提供します。Zodバリデーションによる型安全性を実現し、ブログ、ドキュメントサイト、コンテンツ重視のVite + Reactアプリケーション構築時にご利用ください。Viteプラグインの設定、MDXコンパイルから、デプロイ最適化、スキーマバリデーションまで、すべてを網羅しています。
polymarket
メタこのスキルは、開発者がPolymarket予測市場プラットフォームを活用したアプリケーション構築を可能にします。API統合による取引や市場データの取得に加え、WebSocketを介したリアルタイムデータストリーミングにより、ライブ取引や市場活動を監視できます。取引戦略の実装や、ライブ市場更新を処理するツールの作成にご利用ください。
creating-opencode-plugins
メタこのスキルは、開発者がコマンド、ファイル、LSP操作など25種類以上のイベントタイプにフックするOpenCodeプラグインを作成することを支援します。JavaScript/TypeScriptモジュール向けに、プラグイン構造、イベントAPI仕様、および実装パターンを提供します。カスタムイベント駆動ロジックでOpenCode AIアシスタントのライフサイクルをインターセプト、監視、または拡張する必要がある場合にご利用ください。
sglang
メタSGLangは、高性能なLLMサービングフレームワークであり、RadixAttentionプレフィックスキャッシュを活用したJSON、正規表現、エージェントワークフロー向けの高速で構造化された生成を特長とします。特にプレフィックスが繰り返されるタスクにおいて、大幅に高速な推論を実現し、複雑な構造化出力やマルチターン対話に最適です。制約付きデコードが必要な場合や、広範なプレフィックス共有を伴うアプリケーションを構築する場合は、vLLMなどの代替案ではなくSGLangを選択してください。
