スキル一覧に戻る
anton-pt

plan-spec

by anton-pt

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

SKILL.md


name: plan-spec description: Plan specification (enters plan mode) user-invocable: true

Plan Specification (Plan Mode)

Prerequisites

Run /fetch-issue <ALG-XX> first to fetch issue context and create branch.

Steps

  1. Enter plan mode: Call the EnterPlanMode tool to begin planning.

  2. Analyze fetched issue context from the conversation:

    • Issue title and description
    • Labels and status
    • Related specs (if any were found)
  3. Ask up to 5 clarifying questions using AskUserQuestion: Focus on:

    • Ambiguous or vague requirements
    • Missing acceptance criteria
    • Unclear scope boundaries
    • Priority of different user stories
    • Technical constraints not mentioned
  4. Explore related code if needed:

    • If related specs were found, read them for patterns
    • Search codebase for relevant existing implementations
    • Understand the domain context
  5. Propose spec structure in the plan file: Write to the plan file (NOT spec.md yet) with:

    • Summary: 2-3 sentences from issue description
    • User Scenarios & Testing:
      • Multiple user stories with priorities (P1, P2, P3)
      • Each with "Why this priority" explanation
      • Acceptance scenarios in Given/When/Then format
    • Edge Cases: Explicit list of edge cases
    • Functional Requirements: FR-001, FR-002, etc.
    • Dependencies: Links to related specs (e.g., @specs/alg-14-discover-chat)
    • Out of Scope: Explicit boundaries
  6. Exit plan mode: Call ExitPlanMode to get user approval of the proposed spec structure.

  7. After approval, write the spec file:

    • Get branch info: git rev-parse --abbrev-ref HEAD

    • Extract issue number from branch name (e.g., alg-27-* -> 27)

    • Write specs/alg-{NUM}-*/spec.md with the approved structure

    • Include header:

      # Feature Specification: {Title}
      
      **Feature Branch**: `{branch-name}`
      **Created**: {ISO date}
      **Status**: Draft
      **Linear Issue**: [ALG-{NUM}](https://linear.app/algojuke/issue/ALG-{NUM})
      **Input**: {Original issue description}
      
  8. Commit the spec:

    git add specs/alg-{NUM}-*/spec.md
    git commit -m "spec: ALG-{NUM} - initial specification"
    

Spec Template Reference

Follow the structure from existing specs like specs/alg-14-discover-chat/spec.md:

  • User Scenarios with priorities and acceptance scenarios
  • Functional Requirements numbered FR-001, FR-002
  • Clear scope boundaries
  • Clarifications section for Q&A

スコア

総合スコア

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

レビュー

💬

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