用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bdfinst/vsm-workshop --skill new-feature命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | new-feature |
| description | Create a new feature file for ATDD workflow - must be done BEFORE any implementation |
| user-invocable | true |
| allowed-tools | Read, Write, Edit, Grep, Glob |
Create a new feature file for ATDD workflow. This must be done BEFORE any implementation.
/new-feature <FeatureName>
features/{category}/{feature-name}.featureFeature: {Feature Name}
As a {role}
I want {capability}
So that {benefit}
Background:
Given {common preconditions}
Scenario: {Primary happy path}
Given {initial context}
When {action taken}
Then {expected outcome}
Scenario: {Alternative path or edge case}
Given {initial context}
When {different action}
Then {different outcome}
Scenario Outline: {Parameterized scenario}
Given {context with <parameter>}
When {action with <input>}
Then {outcome with <expected>}
Examples:
| parameter | input | expected |
| value1 | in1 | out1 |
| value2 | in2 | out2 |
When writing features for Norn, consider these common patterns:
Scenario: Add a process step to the value stream
Given I have an empty value stream map
When I add a step named "Development" with process time 60 minutes
Then the map should contain 1 step
And the step should display "Development"
Scenario: Calculate flow efficiency
Given a value stream with total process time of 120 minutes
And total lead time of 480 minutes
When I view the metrics dashboard
Then the flow efficiency should show "25%"
Scenario: Simulate work flowing through the stream
Given a value stream with 3 steps
And 10 work items in the queue
When I run the simulation for 100 ticks
Then I should see work items moving through each step
Before presenting for review, verify: