MCP HubMCP Hub
スキル一覧に戻る

skill

matteocervelli
更新日 Yesterday
65 閲覧
10
10
GitHubで表示
メタgeneral

について

このClaudeスキルは、製品評価の回答を構造化されたJSON形式で段階的に収集し検証します。新製品アイデアの評価、Go/No-Go判断の実施、チームからの構造化された入力収集を目的として設計されています。本スキルは4つの主要セクション(WHY、WHO、WHAT、GO/NO-GO)で質問を体系化し、検証済みのJSON回答を段階的に構築していきます。

クイックインストール

Claude Code

推奨
プラグインコマンド推奨
/plugin add https://github.com/matteocervelli/llms
Git クローン代替
git clone https://github.com/matteocervelli/llms.git ~/.claude/skills/skill

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

Answer Collector Skill

Purpose: Incrementally collect and validate product assessment responses in structured JSON format.


When to Use

  • Evaluating new product ideas with rigorous criteria
  • Conducting go/no-go assessments before committing resources
  • Building a decision audit trail for product decisions
  • Gathering structured input from teams or stakeholders
  • Progressive refinement of product hypotheses

How It Works

1. Reading Questions

Questions are organized in 4 sections (questions.md):

  • WHY (4 Q's): Problem, strategy, resources, timing
  • WHO (4 Q's): User, access, economics, scale
  • WHAT (5 Q's): Outcome, monetization, success metrics, fit, risk
  • GO/NO-GO (4 criteria): Checklist for final decision

Each question is numbered 1-17.

2. Writing JSON Incrementally

Start with a template and add answers one at a time:

{
  "metadata": {
    "product_name": "Your Product Name",
    "created_at": "2025-11-03T00:00:00Z",
    "status": "in_progress"
  },
  "answers": {
    "why_section": {
      "q1_problem_evidence": "Answer here..."
    }
  }
}

Build incrementally:

  • Add one answer per interaction
  • Preserve all previous answers
  • Update last_updated timestamp
  • Track completion_percentage in metadata

3. Validation Logic

Auto-calculate:

  • answered_questions: Count non-empty answers
  • completion_percentage: (answered_questions / 17) × 100
  • go_no_go_result: "go" if all 4 checklist items true, else "no_go" or "pending"

Validation rules:

  • All text answers must be non-empty and substantive
  • Checklist items (q14-q17) must be boolean (true/false)
  • Metadata fields (product_name) required to start
  • All timestamps in ISO 8601 format

Quick Reference

SectionQuestionsType
WHY1-4Text
WHO5-8Text
WHAT9-13Text
GO/NO-GO14-17Boolean

Usage Pattern

  1. Initialize: Create JSON with metadata and product_name
  2. Collect: Answer one question, validate, save
  3. Review: Check completion_percentage and go_no_go_result
  4. Decide: When all answers complete, review go_no_go_result

File Structure

~/.claude/skills/answer-collector/
├── SKILL.md           # This file
├── questions.md       # The 17 assessment questions
├── schema.json        # JSON validation schema
└── assessments/       # (optional) Stored assessment JSONs
    └── product-name.json

GitHub リポジトリ

matteocervelli/llms
パス: .claude/skills/answer-collector

関連スキル

algorithmic-art

メタ

This Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.

スキルを見る

subagent-driven-development

開発

This skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.

スキルを見る

executing-plans

デザイン

Use the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.

スキルを見る

cost-optimization

その他

This Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.

スキルを見る