スキル一覧に戻る
hohai99

implementation-boundary-guard

by hohai99

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

SKILL.md


name: implementation-boundary-guard description: Prevents implementers from crossing spec or task boundaries. Use during coding. triggers: [coding-start, mid-implementation] outputs: [boundary-validation, scope-warnings] depends_on: [controlled-task-decomposition]

Implementation Boundary Guard

Purpose

Ensures that implementation stays strictly within the defined task scope. Prevents scope creep, unauthorized changes, and deviation from the spec.

When to Use

  • At the start of any implementation task
  • Continuously during coding
  • Before committing changes

Guarding Steps

  1. Load Task Boundaries: Confirm what is IN and OUT of scope.
  2. Validate Each Change: Check every modified file and logical block against the scope.
  3. Flag Boundary Violations: Stop implementation if unrelated code is touched.
  4. Request Scope Expansion: If a boundary must be crossed, request explicit approval.

Decision Tree

flowchart TD
    A[Analyze Change] --> B{In Task Scope?}
    B -->|No| C[Flag Violation - Stop]
    B -->|Yes| D{Matches Spec?}
    D -->|No| E[Flag Spec Deviation - Stop]
    D -->|Yes| F{Minimal Change?}
    F -->|No| G[Suggest Simplification]
    F -->|Yes| H[Proceed with Implementation]

Review Checklist

  1. Scope: Do all changed files belong to the assigned task?
  2. Alignment: Does every logic change have a corresponding Spec requirement ID?
  3. Focus: Are there any "while I'm here" improvements or refactors?
  4. Purity: Are new dependencies strictly necessary and approved?

How to provide feedback

  • Be specific: "The changes to db_config.py are out of scope for the 'User Auth' task."
  • Explain why: "Touching shared config files without a task mandate risks breaking other modules."
  • Suggest alternatives: "Revert db_config.py and implement the change in a separate dedicated task."

Stay in your lane.

スコア

総合スコア

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

レビュー

💬

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