スキル一覧に戻る
jmlweb

validate-idea

by jmlweb

Centralized configuration packages for development tools

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: validate-idea description: Evaluate a single idea and decide to accept or reject it. Used internally by /validate-ideas or when the user mentions a specific idea number.

Validate Idea

Evaluate a pending idea and decide whether to accept or reject it.

Instructions

When validating idea #N:

Step 1 - Fetch the Idea

gh issue view N --repo jmlweb/tooling --json number,title,body,labels

Verify it has the idea:pending label. If not, inform user.

Step 2 - Analyze the Idea

Evaluate against project context:

  1. Read relevant files:

    • README.md, AGENTS.md for project goals
    • Existing packages and their purpose
  2. Check for duplicates:

    • Search existing issues for similar concepts
    • Check if functionality already exists in codebase
  3. Assess feasibility:

    • Technical complexity
    • Dependencies required
    • Integration with existing architecture

Step 3 - Estimate Effort and Impact

Effort levels:

LevelTimeScope
Low<2 hoursSingle file, minimal testing
Medium2-8 hrsMultiple files, moderate testing
High>8 hoursSignificant changes, extensive

Impact levels:

LevelDescription
LowNice to have, minimal user benefit
MediumNoticeable improvement, moderate benefit
HighGame changer, significant benefit

Step 4 - Apply Decision

If ACCEPTED:

gh issue edit N --repo jmlweb/tooling \
  --remove-label "idea:pending" \
  --add-label "idea:accepted,effort:medium,impact:high"

gh issue comment N --repo jmlweb/tooling --body "## Validation: ACCEPTED

**Effort:** [level] | **Impact:** [level]

**Reasoning:** [Why accepted]

*Ready for /feed-backlog*"

If REJECTED:

gh issue edit N --repo jmlweb/tooling \
  --remove-label "idea:pending" \
  --add-label "idea:rejected"

gh issue comment N --repo jmlweb/tooling --body "## Validation: REJECTED

**Reason:** [Why rejected]"

gh issue close N --repo jmlweb/tooling

Decision Guidelines

Accept when: High impact + low effort, aligns with goals, solves pain point

Reject when: Low ROI, out of scope, duplicates, infeasible

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です