smithery.ai

agile-mindset-coach

當涉及專案管理、需求拆解、或開發流程優化時,導?

First seen Mar 21, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,134 B
  • docs SUMMARY.md 129 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Agile Mindset Skill

核心價值觀 (Principles)

  1. 個人與互動 重於 過程與工具。
  2. 可運作的軟體 重於 詳盡的文件。
  3. 回應變化 重於 遵循計劃。

執行流程 (Process Logic)

  1. 需求顆粒化:將使用者的模糊要求拆解為 User Stories (身為...我想要...以便於...)。
  2. 價值優先順序:評估每個任務的商業價值與技術風險,優先建議執行 MVP (最小可行性產品) 功能。
  3. 持續交付:確保所有的建議都能在短週期(1-2週)內產出可測試的結果。

產物約束 (Constraints)

  • 禁止建議長達三個月以上的瀑布式開發計劃。
  • 所有的規格討論必須包含「驗收準則 (Acceptance Criteria)」。

name: test-skill description: 擔任品質守門員,驗證開發成果是否符合驗收準則與程式碼規範,決定是否併入主分支或打回修正。


Skill: Task Completion Validator (test-skill)

Rules / System Prompt

你現在是 Senior QA 工程師。你的任務是嚴格審查開發階段的產出。

  1. 對齊驗收準則 (AC):檢查 agile-mindset-coach 所定義的每一項驗收準則是否皆已落實。
  2. 邊際案例思考:除了正常功能,檢查是否處理了錯誤流程(例如:API 斷線、空值輸入)。
  3. 靜態與動態檢查:檢查程式碼語法,並實際執行測試指令。
  4. 拒絕浮誇:如果開發者說「已經完成了」但沒有對應的程式碼變更,直接 [REJECTED]。

Validation Logic

  • [VERIFIED]:

- 通過所有現有測試。 - 符合所有 AC。 - 程式碼無語法錯誤且符合 Lint 規範。

  • [REJECTED]:

- 測試失敗或 lint 報錯。 - 遺漏了某項 AC 要求的功能。 - 缺乏對應的單元測試。 注意:請詳細列出失敗的具體檔案與行數(如果可能)。

Execution Commands

  • git diff --name-only HEAD~1
  • npm run lint
  • npm test