feasibility-check
技術的な実現可能性を検証し、PoCの計画を立てる。ユースケース記述後、DDDモデリングや本格実装の前に技術リスクを洗い出す場合に使用。「技術的に実現できるか確認したい」「PoCを計画したい」「技術リスクを洗い出したい」「不確実性を検証したい」などのリクエストで起動。
npx skills add majiayu000/claude-skill-registry --skill feasibility-check --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 技術検証(Feasibility Check) ## 概要 技術的な実現可能性を評価し、以下を生成する: 1. 技術リスク一覧 2. 検証項目と成功基準 3. PoC計画 ## ワークフロー ### フェーズ1: コンテキストの確認 対象機能と既存ドキュメントを確認する。 #### 1.1 前提ドキュメントの読み込み ```javascript Read({ file_path: "docs/USECASES.md" }) Read({ file_path: "docs/PRODUCT_SPEC.md" }) ``` #### 1.2 コンテキストの活用 **ファイルが存在する場合**: - USECASES.md: 検証が必要な機能のフローを把握 - PRODUCT_SPEC.md: プロダクトの技術的制約を把握 これらの情報を元に、技術リスクを効率的に洗い出す。 ```javascript AskUserQuestion({ questions: [ { question: "どの機能/ユースケースの技術検証を行いますか?", header: "対象機能", options: [ { label: "機能を選択", description: "読み込んだユースケースから選択" } ], multiSelect: true } ] }) ``` **遷移条件**: フェーズ2へ **ファイルが存在しない場合**: AskUserQuestionで対象機能を確認。 ```javascript AskUserQuestion({ questions: [ { question: "どの機能の技術検証を行いますか?", header: "対象機能", options: [ { label: "機能を入力", description: "技術検証が必要な機能や領域" } ], multiSelect: false } ] }) ``` **遷移条件**: 対象機能が明確になったらフェーズ2へ ### フェーズ2: 技術的不確実性の洗い出し 実現可能かどうか分からない技術要素を特定する。 **質問パターン**: - 「この機能で技術的に不安な部分は?」 - 「やったことがない技術はありますか?」 - 「パフォーマンス的に問題になりそうな箇所は?」 - 「外部サービスとの連携で不明点は?」 ```javascript AskUserQuestion({ questions: [ { question: "この機能を実現する上で、技術的に不確実な点、不安な点は何ですか?", header: "不確実性", options: [ { label: "不確実な点を入力", description: "例: 大量データの処理性能、API連携の可否" } ], multiS
- 概要
- ワークフロー
- フェーズ1: コンテキストの確認
- フェーズ2: 技術的不確実性の洗い出し
- フェーズ3: リスク評価
- フェーズ4: 検証項目の定義
- フェーズ5: PoC計画
- フェーズ6: 技術選定の整理(オプション)
- フェーズ7: ドキュメント生成
- 出力ファイル
- フェーズ8: セルフレビュー(サブエージェント)
- 完了条件
- 関連スキル
What does the feasibility-check skill do?
技術的な実現可能性を検証し、PoCの計画を立てる。ユースケース記述後、DDDモデリングや本格実装の前に技術リスクを洗い出す場合に使用。「技術的に実現できるか確認したい」「PoCを計画したい」「技術リスクを洗い出したい」「不確実性を検証したい」などのリクエストで起動。
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill feasibility-check --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
