Guides through full BDD workflow: discovery with stakeholders, Gherkin scenario formulation, test automation via TDD, and living documentation maintenance. Use /bdd for interactive sessions or feature files.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-3 --plugin asiaostrich-universal-dev-standardsThis skill is limited to using the following tools:
Guide through the Behavior-Driven Development (BDD) workflow using Given-When-Then format.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Guide through the Behavior-Driven Development (BDD) workflow using Given-When-Then format.
引導行為驅動開發(BDD)流程,使用 Given-When-Then 格式。
DISCOVERY ──► FORMULATION ──► AUTOMATION ──► LIVING DOCS
^ │
└────────────────────────────────────────────┘
Discuss with stakeholders, identify examples and edge cases, understand the "why".
Write Gherkin scenarios using ubiquitous language, make them concrete and specific.
Implement step definitions, write minimal code to pass, follow TDD within automation.
Keep scenarios current, use as shared documentation, review with stakeholders.
Feature: User Login
As a registered user
I want to log in to my account
So that I can access my dashboard
Scenario: Successful login
Given I am on the login page
When I enter valid credentials
Then I should see my dashboard
| Role | Focus | 角色 | 關注點 |
|---|---|---|---|
| Business | What & Why | 業務 | 什麼和為什麼 |
| Development | How | 開發 | 如何實現 |
| Testing | What if | 測試 | 假設情況 |
/bdd - Start interactive BDD session | 啟動互動式 BDD 會話
/bdd "user can reset password" - BDD for specific feature | 針對特定功能
/bdd login-feature.feature - Work with existing feature file | 處理現有功能檔案
After /bdd completes, the AI assistant should suggest:
BDD 場景已定義。建議下一步 / BDD scenarios defined. Suggested next steps:
- 執行
/tdd實作步驟定義 ⭐ Recommended / 推薦 — Implement step definitions- 執行
/checkin品質關卡(若功能完成)— Quality gates (if feature complete)- 與利害關係人審查場景確保業務正確性 — Review scenarios with stakeholders
完整的 AI 行為定義請參閱對應的命令文件:
/bddFor complete AI agent behavior definition, see the corresponding command file:
/bdd