@schilling.mark.a/software-methodology 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/copilot-instructions.md +159 -0
- package/README.md +172 -6
- package/docs/story-map/backbone.md +141 -0
- package/docs/story-map/releases/r1-walking-skeleton.md +152 -0
- package/docs/story-map/user-tasks/ACT-001-task-001.md +45 -0
- package/docs/story-map/user-tasks/ACT-001-task-002.md +48 -0
- package/docs/story-map/user-tasks/ACT-002-task-001.md +47 -0
- package/docs/story-map/user-tasks/ACT-002-task-002.md +47 -0
- package/docs/story-map/user-tasks/ACT-002-task-003.md +46 -0
- package/docs/story-map/user-tasks/ACT-003-task-001.md +47 -0
- package/docs/story-map/user-tasks/ACT-003-task-002.md +46 -0
- package/docs/story-map/user-tasks/ACT-003-task-003.md +49 -0
- package/docs/story-map/user-tasks/ACT-003-task-004.md +47 -0
- package/docs/story-map/user-tasks/ACT-004-task-001.md +48 -0
- package/docs/story-map/user-tasks/ACT-004-task-002.md +49 -0
- package/docs/story-map/user-tasks/ACT-004-task-003.md +47 -0
- package/docs/story-map/user-tasks/ACT-005-task-001.md +47 -0
- package/docs/story-map/user-tasks/ACT-005-task-002.md +48 -0
- package/docs/story-map/user-tasks/ACT-005-task-003.md +48 -0
- package/docs/story-map/user-tasks/ACT-005-task-004.md +48 -0
- package/docs/story-map/user-tasks/ACT-006-task-001.md +47 -0
- package/docs/story-map/user-tasks/ACT-006-task-002.md +46 -0
- package/docs/story-map/user-tasks/ACT-006-task-003.md +47 -0
- package/docs/story-map/user-tasks/ACT-006-task-004.md +46 -0
- package/docs/story-map/user-tasks/ACT-007-task-001.md +48 -0
- package/docs/story-map/user-tasks/ACT-007-task-002.md +47 -0
- package/docs/story-map/user-tasks/ACT-007-task-003.md +47 -0
- package/docs/story-map/user-tasks/ACT-007-task-004.md +48 -0
- package/docs/story-map/user-tasks/ACT-008-task-001.md +48 -0
- package/docs/story-map/user-tasks/ACT-008-task-002.md +48 -0
- package/docs/story-map/user-tasks/ACT-008-task-003.md +47 -0
- package/docs/story-map/user-tasks/ACT-008-task-004.md +48 -0
- package/docs/story-map/walking-skeleton.md +95 -0
- package/docs/value-proposition-canvas.md +171 -0
- package/features/mcp-server/query-vpc.feature +48 -0
- package/features/mcp-server/read-reference.feature +41 -0
- package/features/mcp-server/read-skill.feature +33 -0
- package/features/mcp-server/search-guidance.feature +42 -0
- package/features/mcp-server/suggest-next-step.feature +61 -0
- package/features/mcp-server/validate-gherkin.feature +54 -0
- package/mcp-server/QUICKSTART.md +172 -0
- package/mcp-server/README.md +171 -0
- package/mcp-server/dist/index.d.ts +12 -0
- package/mcp-server/dist/index.js +296 -0
- package/mcp-server/dist/repository.d.ts +59 -0
- package/mcp-server/dist/repository.js +211 -0
- package/mcp-server/dist/tools/gherkin-validator.d.ts +16 -0
- package/mcp-server/dist/tools/gherkin-validator.js +152 -0
- package/mcp-server/dist/tools/guidance-searcher.d.ts +11 -0
- package/mcp-server/dist/tools/guidance-searcher.js +34 -0
- package/mcp-server/dist/tools/next-step-suggester.d.ts +16 -0
- package/mcp-server/dist/tools/next-step-suggester.js +210 -0
- package/mcp-server/dist/tools/reference-reader.d.ts +17 -0
- package/mcp-server/dist/tools/reference-reader.js +57 -0
- package/mcp-server/dist/tools/skill-reader.d.ts +17 -0
- package/mcp-server/dist/tools/skill-reader.js +38 -0
- package/mcp-server/dist/tools/vpc-querier.d.ts +37 -0
- package/mcp-server/dist/tools/vpc-querier.js +158 -0
- package/mcp-server/package.json +42 -0
- package/mcp-server/src/index.ts +331 -0
- package/mcp-server/src/repository.ts +254 -0
- package/mcp-server/src/tools/gherkin-validator.ts +206 -0
- package/mcp-server/src/tools/guidance-searcher.ts +42 -0
- package/mcp-server/src/tools/next-step-suggester.ts +243 -0
- package/mcp-server/src/tools/reference-reader.ts +71 -0
- package/mcp-server/src/tools/skill-reader.ts +47 -0
- package/mcp-server/src/tools/vpc-querier.ts +201 -0
- package/mcp-server/tsconfig.json +17 -0
- package/package.json +8 -2
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# Walking Skeleton — Minimum Viable Journey
|
|
2
|
+
|
|
3
|
+
**Created:** February 16, 2026
|
|
4
|
+
**Product:** Software Methodology
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Goal
|
|
9
|
+
|
|
10
|
+
Enable a developer to go from "I have a feature idea" to "I have working, tested code in production" using the methodology for the first time.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## User Journey
|
|
15
|
+
|
|
16
|
+
### 1. Define Business Value — Simplified
|
|
17
|
+
- ✅ **ACT-001-task-002**: Create Value Proposition Canvas
|
|
18
|
+
- **Included:** One customer segment, core jobs/pains/gains, basic pain relievers and gain creators
|
|
19
|
+
- **Excluded:** Business Model Canvas (can use VPC alone for single-feature validation), multiple segments, unaddressed pains/gains analysis
|
|
20
|
+
|
|
21
|
+
### 2. Understand User Needs — Deferred
|
|
22
|
+
- ❌ **Reason:** Can start with VPC customer jobs. Personas and journey maps add depth but aren't required for minimum viable methodology usage.
|
|
23
|
+
|
|
24
|
+
### 3. Plan Features — Simplified
|
|
25
|
+
- ✅ **ACT-003-task-001**: Create story map backbone
|
|
26
|
+
- **Included:** 2-4 core activities derived from VPC customer jobs, basic task breakdown
|
|
27
|
+
- **Excluded:** Walking skeleton document itself (meta!), detailed release planning, MoSCoW prioritization
|
|
28
|
+
|
|
29
|
+
### 4. Specify Behavior — Simplified
|
|
30
|
+
- ✅ **ACT-004-task-002**: Write Gherkin scenarios
|
|
31
|
+
- **Included:** One feature file with 2-3 happy path scenarios, basic Given-When-Then structure
|
|
32
|
+
- **Excluded:** Example mapping workshop, comprehensive edge cases, multiple stakeholder reviews
|
|
33
|
+
|
|
34
|
+
### 5. Design User Experience — Deferred
|
|
35
|
+
- ❌ **Reason:** Not all features require UX design (e.g., APIs, CLIs, backend services). Can be added when needed for UI-heavy features.
|
|
36
|
+
|
|
37
|
+
### 6. Implement Features — Simplified
|
|
38
|
+
- ✅ **ACT-006-task-001**: Write failing acceptance test (RED)
|
|
39
|
+
- **Included:** Automated test that verifies one Gherkin scenario fails
|
|
40
|
+
- **Excluded:** Full test strategy document, comprehensive test coverage, multiple test types
|
|
41
|
+
|
|
42
|
+
- ✅ **ACT-006-task-002**: Make test pass with minimum code (GREEN)
|
|
43
|
+
- **Included:** Simplest implementation that passes the test
|
|
44
|
+
- **Excluded:** Production-ready error handling, edge cases, optimization
|
|
45
|
+
|
|
46
|
+
- ✅ **ACT-006-task-003**: Refactor for maintainability
|
|
47
|
+
- **Included:** Apply one SOLID principle, extract one method/class for clarity
|
|
48
|
+
- **Excluded:** Comprehensive design pattern application, full clean code review
|
|
49
|
+
|
|
50
|
+
### 7. Deploy Safely — Simplified
|
|
51
|
+
- ✅ **ACT-007-task-001**: Set up pipeline stages
|
|
52
|
+
- **Included:** Build → Test → Deploy to one environment, basic success/failure reporting
|
|
53
|
+
- **Excluded:** Multiple environments, blue-green deployment, automated rollback, performance testing
|
|
54
|
+
|
|
55
|
+
### 8. Measure and Improve — Deferred
|
|
56
|
+
- ❌ **Reason:** Requires multiple delivery cycles to collect meaningful data. Add after establishing baseline workflow.
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## What's NOT in the Walking Skeleton
|
|
61
|
+
|
|
62
|
+
- **UX Research artifacts** (personas, journey maps, mental models) — deferred to R2
|
|
63
|
+
- **Business Model Canvas** — VPC sufficient for feature-level work
|
|
64
|
+
- **Example mapping workshops** — can write scenarios directly for simple features
|
|
65
|
+
- **UI design workflow** — add when building UI-heavy features
|
|
66
|
+
- **Comprehensive test strategy** — start with acceptance tests, expand in R2
|
|
67
|
+
- **Multiple deployment environments** — single environment sufficient to prove value
|
|
68
|
+
- **Continuous improvement data collection** — requires established baseline first
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## Success Criteria
|
|
73
|
+
|
|
74
|
+
Developer can:
|
|
75
|
+
1. ✅ Define business value for a feature using VPC
|
|
76
|
+
2. ✅ Identify 2-4 user activities from VPC customer jobs
|
|
77
|
+
3. ✅ Write 2-3 Gherkin scenarios that trace to VPC gains
|
|
78
|
+
4. ✅ Write failing acceptance test for one scenario
|
|
79
|
+
5. ✅ Implement minimum code to pass the test
|
|
80
|
+
6. ✅ Refactor code with one SOLID principle
|
|
81
|
+
7. ✅ Deploy to production via automated pipeline
|
|
82
|
+
8. ✅ Trace deployed code back to VPC gain
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## Rationale
|
|
87
|
+
|
|
88
|
+
This skeleton is intentionally minimal. It:
|
|
89
|
+
- Proves the methodology works end-to-end
|
|
90
|
+
- Delivers real value (working code in production)
|
|
91
|
+
- Establishes muscle memory for RED-GREEN-REFACTOR
|
|
92
|
+
- Creates traceability from business value to code
|
|
93
|
+
- Takes hours, not days, to complete first time through
|
|
94
|
+
|
|
95
|
+
Depth and sophistication come in subsequent releases.
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# Value Proposition Canvas
|
|
2
|
+
|
|
3
|
+
**Created:** February 16, 2026
|
|
4
|
+
**Last updated:** February 16, 2026
|
|
5
|
+
**Product:** Software Methodology
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Segment: Individual Developer
|
|
10
|
+
|
|
11
|
+
**BMC reference:** Customer Segments → Individual developers and engineers who want to ship quality software
|
|
12
|
+
|
|
13
|
+
### Customer Profile
|
|
14
|
+
|
|
15
|
+
#### Customer Jobs
|
|
16
|
+
1. **Ship working software that delivers business value** — Build features that solve real problems and get used by actual users.
|
|
17
|
+
2. **Write maintainable code that others can understand** — Create code that teammates can read, extend, and modify without extensive handoff.
|
|
18
|
+
3. **Validate that built features solve real problems** — Confirm that what's being built addresses actual user needs before investing significant time.
|
|
19
|
+
4. **Collaborate effectively with product and design stakeholders** — Communicate clearly about what's being built, why, and how it maps to user needs.
|
|
20
|
+
5. **Make confident changes without breaking existing functionality** — Refactor and extend code knowing that regressions will be caught early.
|
|
21
|
+
6. **Improve software engineering craft** — Develop skills and practices that transfer across projects, teams, and domains.
|
|
22
|
+
|
|
23
|
+
#### Pains
|
|
24
|
+
1. **Unclear or changing requirements lead to rework** — Spend days building a feature only to discover it's not what was actually needed. Wastes 30-40% of development time on rework and clarification cycles.
|
|
25
|
+
2. **No shared language between developers, product, and stakeholders** — Conversations turn into translations. Product says "users need to feel confident," developers ask "what button do I add?" Misalignment is only discovered after deployment.
|
|
26
|
+
3. **Writing tests after code feels like extra work and is often skipped** — Under deadline pressure, tests are cut first. Technical debt accumulates. Fear of changing existing code grows over time.
|
|
27
|
+
4. **Hard to know what to build first or how to prioritize** — Every feature seems equally important. No clear framework for deciding what delivers most value with least effort.
|
|
28
|
+
5. **Code becomes messy over time without clear patterns** — Initial implementation is clean, but as features accumulate, structure degrades. No consistent approach to applying design patterns or SOLID principles.
|
|
29
|
+
6. **Disconnect between "what we built" and "what users needed"** — Features ship on time but get poor adoption or negative feedback. Unclear how to trace delivered code back to original user problem.
|
|
30
|
+
7. **Context switching between different methodologies per project** — Each team uses different approaches. Skills and muscle memory don't transfer. Every new project requires relearning how things work.
|
|
31
|
+
|
|
32
|
+
#### Gains
|
|
33
|
+
1. **Deliver features users actually want and use** — See adoption metrics and user feedback validate that built features solve real problems.
|
|
34
|
+
2. **Spend less time debugging and more time building** — Catch issues during development instead of in production. Reduce time spent firefighting.
|
|
35
|
+
3. **Have clear criteria for "done" before starting work** — Know exactly what success looks like before writing the first line of code. Avoid scope creep and ambiguity.
|
|
36
|
+
4. **Ship smaller increments more frequently** — Break large features into valuable slices that deliver partial value quickly. Reduce time between user feedback cycles.
|
|
37
|
+
5. **Feel confident refactoring and extending code** — Make changes with safety nets in place. Improve code structure without fear of breaking hidden dependencies.
|
|
38
|
+
6. **Build transferable skills that work across projects** — Develop a consistent approach that applies whether building mobile apps, web services, or enterprise systems.
|
|
39
|
+
7. **Trace code back to business value** — Explain why any line of code exists and what user problem it solves. Justify technical decisions with business context.
|
|
40
|
+
|
|
41
|
+
### Value Proposition
|
|
42
|
+
|
|
43
|
+
#### Products & Services
|
|
44
|
+
- **11-skill methodology chain:** End-to-end process from product strategy through continuous improvement. Maps to all Customer Jobs.
|
|
45
|
+
- **Reference documents:** On-demand guidance for patterns, principles, and practices. Supports "Write maintainable code" and "Improve craft" jobs.
|
|
46
|
+
- **Artifact templates:** Pre-structured formats for story maps, feature files, test strategies. Supports "Collaborate effectively" and "Have clear criteria" jobs.
|
|
47
|
+
- **Integration guidance:** Shows how skills connect and feed each other. Supports "Validate features solve problems" and "Trace code to business value" jobs.
|
|
48
|
+
|
|
49
|
+
#### Pain Relievers
|
|
50
|
+
- **Relieves "Unclear or changing requirements"** by starting with Value Proposition Canvas that defines customer jobs, pains, and gains before any code is written. BDD specifications use concrete examples that become shared understanding between all roles.
|
|
51
|
+
- **Relieves "No shared language"** by establishing ubiquitous language from product strategy through code. Gherkin scenarios use domain terms that appear in both stakeholder conversations and variable names.
|
|
52
|
+
- **Relieves "Writing tests after code"** by using ATDD workflow with RED-GREEN-REFACTOR cycle. Tests define "done" before implementation starts, making them essential rather than extra.
|
|
53
|
+
- **Relieves "Hard to prioritize"** by using story mapping to organize features by user journey backbone and release planning to identify Must Have vs Should Have features based on pain severity.
|
|
54
|
+
- **Relieves "Code becomes messy"** by providing clean-code references during REFACTOR phase. Design patterns and SOLID principles applied at the right time with clear guidance on when to use which pattern.
|
|
55
|
+
- **Relieves "Disconnect between built vs needed"** by tracing every feature file back to specific gains in the VPC. Continuous improvement skill measures actual outcomes and feeds findings back upstream.
|
|
56
|
+
- **Relieves "Context switching between methodologies"** by providing a single consistent approach that works across all project types. Once learned, the methodology transfers to every new project.
|
|
57
|
+
|
|
58
|
+
#### Gain Creators
|
|
59
|
+
- **Creates "Deliver features users want"** by starting with UX research (personas, journey maps) that identify real user needs before any design or code. Story mapping organizes work by user activities, not technical components.
|
|
60
|
+
- **Creates "Spend less time debugging"** by catching issues at multiple stages: acceptance tests (RED phase), automation tests, and CI/CD pipeline validation. Issues found in minutes, not days.
|
|
61
|
+
- **Creates "Clear criteria for done"** by writing Gherkin scenarios via example mapping before implementation. Each scenario becomes acceptance criteria and executable specification.
|
|
62
|
+
- **Creates "Ship smaller increments"** by using walking skeleton pattern and release planning that identifies smallest valuable delivery. Story map tasks represent testable slices, not full features.
|
|
63
|
+
- **Creates "Confident refactoring"** by providing test coverage from acceptance tests and unit tests. Clean-code references guide improvements with specific before/after patterns.
|
|
64
|
+
- **Creates "Transferable skills"** by teaching principles, not tools. SOLID principles, BDD thinking, and user-centered design work in any language or framework.
|
|
65
|
+
- **Creates "Trace code to business value"** by maintaining direct links: VPC gains → Gherkin "So that" clauses → test names → production code. Every method can be traced to a specific user need.
|
|
66
|
+
|
|
67
|
+
### Unaddressed
|
|
68
|
+
- **Pain: Learning curve for full methodology** — Out of scope for v1. Mitigated by: skills can be adopted incrementally; each SKILL.md is self-contained; quickstart guide provides entry point.
|
|
69
|
+
- **Gain: Automated tooling integration** — Aspirational for future release. Current state: human-readable markdown files that can be read by AI assistants. Future: CLI tools, IDE integrations, automated validation.
|
|
70
|
+
- **Gain: Team adoption and coaching support** — Out of scope. Methodology provides the content; organizational change management is separate concern.
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## Segment: Development Team
|
|
75
|
+
|
|
76
|
+
**BMC reference:** Customer Segments → Teams that need a shared approach and consistent practices
|
|
77
|
+
|
|
78
|
+
### Customer Profile
|
|
79
|
+
|
|
80
|
+
#### Customer Jobs
|
|
81
|
+
1. **Align on what "done" means across team members** — Ensure everyone understands acceptance criteria and quality standards before and during work.
|
|
82
|
+
2. **Onboard new team members quickly** — Get new developers productive without extensive pairing or knowledge transfer sessions.
|
|
83
|
+
3. **Make collective technical decisions** — Choose patterns, practices, and architecture with shared understanding of tradeoffs.
|
|
84
|
+
4. **Review code efficiently** — Evaluate pull requests against consistent standards and patterns.
|
|
85
|
+
5. **Maintain consistent quality across the codebase** — Prevent code quality from varying based on which team member wrote it.
|
|
86
|
+
|
|
87
|
+
#### Pains
|
|
88
|
+
1. **Different team members use different approaches** — One developer writes tests first, another writes tests last. One uses design patterns, another doesn't. Code review becomes subjective opinion.
|
|
89
|
+
2. **Long onboarding time for new team members** — Takes 2-3 months for new developers to become productive. Heavy burden on experienced team members to explain implicit practices.
|
|
90
|
+
3. **Debates about "the right way" consume time** — Every technical decision becomes a discussion. No shared reference for when to use which pattern or practice.
|
|
91
|
+
4. **Inconsistent artifact quality** — Some features have detailed specs, others have one-line tickets. Some have test coverage, others don't. Depends entirely on who picked up the work.
|
|
92
|
+
|
|
93
|
+
#### Gains
|
|
94
|
+
1. **New team members productive in days, not months** — Provide clear process and references that new developers can follow independently.
|
|
95
|
+
2. **Code reviews focus on logic, not style** — Shared methodology means structural choices are consistent. Reviews evaluate business logic and edge cases.
|
|
96
|
+
3. **Technical decisions reference shared vocabulary** — Discussions use common language and principles. Decisions are documented with methodology references.
|
|
97
|
+
4. **Predictable delivery velocity** — Consistent practices mean less variability in estimation and delivery. Team throughput stabilizes.
|
|
98
|
+
|
|
99
|
+
### Value Proposition
|
|
100
|
+
|
|
101
|
+
#### Products & Services
|
|
102
|
+
- **Shared skill references:** Single source of truth for how the team works. All team members access same guidance.
|
|
103
|
+
- **Consistent artifact templates:** Story maps, feature files, test strategies use same structure regardless of author.
|
|
104
|
+
- **Common vocabulary:** Ubiquitous language established in product-strategy skill and used throughout all skills.
|
|
105
|
+
|
|
106
|
+
#### Pain Relievers
|
|
107
|
+
- **Relieves "Different approaches"** by defining the methodology as team agreement. All team members follow RED-GREEN-REFACTOR. All test files follow patterns in test-strategy.md.
|
|
108
|
+
- **Relieves "Long onboarding"** by providing SKILL.md entry points and reference documents new team members can read. Practices are documented, not tribal knowledge.
|
|
109
|
+
- **Relieves "Debates consume time"** by providing default answers in reference documents. "When do I use Strategy pattern?" → clean-code/references/behavioral-patterns.md has decision criteria.
|
|
110
|
+
- **Relieves "Inconsistent artifacts"** by providing templates and examples. Every feature file follows gherkin-patterns.md. Every story map follows task-template.md structure.
|
|
111
|
+
|
|
112
|
+
#### Gain Creators
|
|
113
|
+
- **Creates "New members productive quickly"** by providing self-service learning path. Read SKILL.md → follow references → produce artifact matching template.
|
|
114
|
+
- **Creates "Reviews focus on logic"** by establishing methodology compliance as baseline. Reviewer can assume SOLID principles were considered; review evaluates specific implementation choices.
|
|
115
|
+
- **Creates "Shared vocabulary"** by establishing ubiquitous language in VPC and BMC that flows through all artifacts. Team speaks same language as product and users.
|
|
116
|
+
- **Creates "Predictable velocity"** by reducing variation in how work is approached. Consistent RED-GREEN-REFACTOR cycle means estimates become more accurate over time.
|
|
117
|
+
|
|
118
|
+
### Unaddressed
|
|
119
|
+
- **Gain: Collective ownership and pair programming guidance** — Out of scope. Methodology defines what artifacts exist and how to create them, not team working agreements about pairing or mob programming.
|
|
120
|
+
- **Pain: Resistance to process change** — Out of scope. Change management is separate from methodology content.
|
|
121
|
+
|
|
122
|
+
---
|
|
123
|
+
|
|
124
|
+
## Segment: Engineering Leader / Coach
|
|
125
|
+
|
|
126
|
+
**BMC reference:** Customer Segments → Leaders responsible for team effectiveness and software quality
|
|
127
|
+
|
|
128
|
+
### Customer Profile
|
|
129
|
+
|
|
130
|
+
#### Customer Jobs
|
|
131
|
+
1. **Ensure team delivers business value, not just features** — Verify that engineering effort aligns with actual user needs and business outcomes.
|
|
132
|
+
2. **Improve team practices without disrupting delivery** — Introduce better approaches incrementally without halting current work.
|
|
133
|
+
3. **Make quality visible and measurable** — Show stakeholders and leadership that quality practices produce business results.
|
|
134
|
+
4. **Scale team skills as organization grows** — Transfer knowledge and practices to new teams and new hires efficiently.
|
|
135
|
+
5. **Reduce technical debt accumulation** — Prevent quality degradation over time while maintaining delivery pace.
|
|
136
|
+
|
|
137
|
+
#### Pains
|
|
138
|
+
1. **Hard to prove ROI of quality practices** — Stakeholders see testing and refactoring as "slowing down delivery." Difficult to demonstrate that quality practices accelerate long-term velocity.
|
|
139
|
+
2. **Piecemeal methodology adoption creates confusion** — Team adopts TDD but not BDD. Uses story mapping but skips UX research. Partial adoption misses integration points and reduces effectiveness.
|
|
140
|
+
3. **No clear starting point for improvement** — Team has problems but unclear where to start. Which practice to introduce first? How to sequence changes?
|
|
141
|
+
4. **Coaching is repetitive and doesn't scale** — Explaining same concepts to each new team member. Limited by availability to sit with developers and guide them.
|
|
142
|
+
|
|
143
|
+
#### Gains
|
|
144
|
+
1. **Demonstrate that quality practices increase delivery speed** — Show data connecting test coverage, refactoring, and velocity. Make business case for investing in quality.
|
|
145
|
+
2. **Provide self-service learning resources** — Team members can learn and improve without requiring coaching hours.
|
|
146
|
+
3. **See consistent practices across all teams** — All teams use same approach. Knowledge transfer between teams is frictionless.
|
|
147
|
+
4. **Connect engineering practices to business outcomes** — Trace deployed features back to VPC gains. Show executives how engineering choices support business strategy.
|
|
148
|
+
|
|
149
|
+
### Value Proposition
|
|
150
|
+
|
|
151
|
+
#### Products & Services
|
|
152
|
+
- **Complete methodology chain:** Shows how all skills integrate from strategy through deployment. Prevents piecemeal adoption gaps.
|
|
153
|
+
- **Skill sequencing:** INTEGRATION.md and SKILLS.md show dependencies and recommended order. Provides clear starting point.
|
|
154
|
+
- **Traceability model:** Documents how VPC flows through story mapping, BDD, ATDD, and into code. Makes business value visible.
|
|
155
|
+
|
|
156
|
+
#### Pain Relievers
|
|
157
|
+
- **Relieves "Hard to prove ROI"** by establishing traceability from VPC gains through Gherkin scenarios to production code. Every feature has documented business value.
|
|
158
|
+
- **Relieves "Piecemeal adoption"** by showing skill dependencies and integration points. INTEGRATION.md explains what breaks when skills are skipped.
|
|
159
|
+
- **Relieves "No clear starting point"** by providing QUICKSTART.md with recommended entry points. Product-strategy skill is always first; subsequent skills depend on project context.
|
|
160
|
+
- **Relieves "Coaching doesn't scale"** by externalizing coaching content into SKILL.md and reference documents. Coach points developers to specific references rather than repeating explanations.
|
|
161
|
+
|
|
162
|
+
#### Gain Creators
|
|
163
|
+
- **Creates "Quality practices increase speed"** by using continuous-improvement skill to measure cycle time, defect rates, and rework. Data collection built into methodology.
|
|
164
|
+
- **Creates "Self-service learning"** by structuring each skill with SKILL.md entry point and on-demand references. Developers learn independently while coach provides review and feedback.
|
|
165
|
+
- **Creates "Consistent practices across teams"** by providing single methodology that all teams adopt. Same vocabulary, same artifacts, same quality standards.
|
|
166
|
+
- **Creates "Engineering connects to business"** by starting with product-strategy skill (BMC and VPC). Every downstream skill maintains traceability to business value.
|
|
167
|
+
|
|
168
|
+
### Unaddressed
|
|
169
|
+
- **Gain: Customization for specific tech stacks** — Partially addressed. Green-implementation skill has Angular, RxJS, and Playwright patterns. Additional framework-specific guidance aspirational for future releases.
|
|
170
|
+
- **Pain: Organizational resistance to methodology adoption** — Out of scope. Methodology provides the content; organizational change strategy is separate.
|
|
171
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Story Map: MCP-003
|
|
2
|
+
# Value Prop: Individual Developer - Gain: "Trace code back to business value"
|
|
3
|
+
|
|
4
|
+
Feature: Query Value Proposition Canvas
|
|
5
|
+
As a developer implementing a feature
|
|
6
|
+
I want to query the VPC to understand business value
|
|
7
|
+
So that I can make decisions aligned with user needs
|
|
8
|
+
|
|
9
|
+
Background:
|
|
10
|
+
Given the software-methodology MCP server is running
|
|
11
|
+
And the VPC exists at "/docs/value-proposition-canvas.md"
|
|
12
|
+
And the VPC has 3 customer segments
|
|
13
|
+
|
|
14
|
+
Scenario: Get all customer segments
|
|
15
|
+
Given I need to understand who the users are
|
|
16
|
+
When I request all customer segments from the VPC
|
|
17
|
+
Then I should receive 3 segments
|
|
18
|
+
And the segments should include "Individual Developer"
|
|
19
|
+
And the segments should include "Development Team"
|
|
20
|
+
And the segments should include "Engineering Leader / Coach"
|
|
21
|
+
|
|
22
|
+
Scenario: Get customer jobs for a segment
|
|
23
|
+
Given I am building features for individual developers
|
|
24
|
+
When I request customer jobs for "Individual Developer" segment
|
|
25
|
+
Then I should receive 6 customer jobs
|
|
26
|
+
And the first job should be "Ship working software that delivers business value"
|
|
27
|
+
And each job should be ordered by importance
|
|
28
|
+
|
|
29
|
+
Scenario: Get pains for a segment
|
|
30
|
+
Given I need to understand user frustrations
|
|
31
|
+
When I request pains for "Individual Developer" segment
|
|
32
|
+
Then I should receive at least 5 pains
|
|
33
|
+
And the pains should include specific magnitude where available
|
|
34
|
+
And the first pain should be the most severe
|
|
35
|
+
|
|
36
|
+
Scenario: Get gains for a segment
|
|
37
|
+
Given I want to validate feature value
|
|
38
|
+
When I request gains for "Individual Developer" segment
|
|
39
|
+
Then I should receive at least 5 gains
|
|
40
|
+
And the gains should include success criteria
|
|
41
|
+
And the first gain should be the most important
|
|
42
|
+
|
|
43
|
+
Scenario: Search for specific pain or gain
|
|
44
|
+
Given I am working on test-first development
|
|
45
|
+
When I search the VPC for "tests"
|
|
46
|
+
Then I should find pain "Writing tests after code feels like extra work"
|
|
47
|
+
And I should find gain "Spend less time debugging and more time building"
|
|
48
|
+
And each result should indicate which segment it belongs to
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Story Map: MCP-002
|
|
2
|
+
# Value Prop: Individual Developer - Pain relieved: "Code becomes messy over time without clear patterns"
|
|
3
|
+
|
|
4
|
+
Feature: Read Reference Documentation
|
|
5
|
+
As a developer needing design pattern guidance
|
|
6
|
+
I want to retrieve specific reference documents from a skill
|
|
7
|
+
So that I can apply the right pattern at the right time
|
|
8
|
+
|
|
9
|
+
Background:
|
|
10
|
+
Given the software-methodology MCP server is running
|
|
11
|
+
And the "clean-code" skill has 4 reference documents
|
|
12
|
+
|
|
13
|
+
Scenario: Retrieve specific reference document
|
|
14
|
+
Given I need to understand SOLID principles
|
|
15
|
+
When I request "clean-code/solid.md" reference
|
|
16
|
+
Then I should receive the SOLID principles content
|
|
17
|
+
And the content should include Single Responsibility Principle
|
|
18
|
+
And the content should include examples for each principle
|
|
19
|
+
|
|
20
|
+
Scenario: List references for a skill
|
|
21
|
+
Given I want to see what guidance is available
|
|
22
|
+
When I request references for the "clean-code" skill
|
|
23
|
+
Then I should receive a list of 4 references
|
|
24
|
+
And the list should include "solid.md"
|
|
25
|
+
And the list should include "creational-patterns.md"
|
|
26
|
+
And the list should include "structural-patterns.md"
|
|
27
|
+
And the list should include "behavioral-patterns.md"
|
|
28
|
+
|
|
29
|
+
Scenario: Retrieve behavioral pattern guidance
|
|
30
|
+
Given I am implementing a feature with complex state transitions
|
|
31
|
+
When I request "clean-code/behavioral-patterns.md" reference
|
|
32
|
+
Then I should receive the behavioral patterns content
|
|
33
|
+
And the content should include State pattern
|
|
34
|
+
And the content should include Strategy pattern
|
|
35
|
+
And the content should include when to use each pattern
|
|
36
|
+
|
|
37
|
+
Scenario: Request reference from skill without references
|
|
38
|
+
Given I request a reference for a skill with no reference documents
|
|
39
|
+
When I request "nonexistent-skill/reference.md" reference
|
|
40
|
+
Then I should receive an error message
|
|
41
|
+
And the error should indicate the skill or reference doesn't exist
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Story Map: MCP-001
|
|
2
|
+
# Value Prop: Individual Developer - Gain: "Build transferable skills that work across projects"
|
|
3
|
+
|
|
4
|
+
Feature: Read Skill Documentation
|
|
5
|
+
As a developer using an AI assistant
|
|
6
|
+
I want to retrieve specific skill documentation from the methodology
|
|
7
|
+
So that I get focused guidance without loading entire files
|
|
8
|
+
|
|
9
|
+
Background:
|
|
10
|
+
Given the software-methodology MCP server is running
|
|
11
|
+
And the methodology contains 11 skills
|
|
12
|
+
|
|
13
|
+
Scenario: Retrieve main skill documentation
|
|
14
|
+
Given I am working on a feature implementation
|
|
15
|
+
When I request the "atdd-workflow" skill documentation
|
|
16
|
+
Then I should receive the SKILL.md content
|
|
17
|
+
And the content should include the workflow overview
|
|
18
|
+
And the content should reference the RED-GREEN-REFACTOR cycle
|
|
19
|
+
|
|
20
|
+
Scenario: List all available skills
|
|
21
|
+
Given I need to understand what skills are available
|
|
22
|
+
When I request the list of all skills
|
|
23
|
+
Then I should receive 11 skill names
|
|
24
|
+
And each skill should include its description
|
|
25
|
+
And the list should include "product-strategy"
|
|
26
|
+
And the list should include "atdd-workflow"
|
|
27
|
+
And the list should include "clean-code"
|
|
28
|
+
|
|
29
|
+
Scenario: Retrieve skill that doesn't exist
|
|
30
|
+
Given I request a skill that doesn't exist
|
|
31
|
+
When I request the "non-existent-skill" skill documentation
|
|
32
|
+
Then I should receive an error message
|
|
33
|
+
And the error should suggest available skills
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Story Map: MCP-004
|
|
2
|
+
# Value Prop: Development Team - Pain relieved: "Debates about 'the right way' consume time"
|
|
3
|
+
|
|
4
|
+
Feature: Search for Guidance
|
|
5
|
+
As a developer facing a specific challenge
|
|
6
|
+
I want to search across all skills and references
|
|
7
|
+
So that I can find relevant guidance without knowing which skill to check
|
|
8
|
+
|
|
9
|
+
Background:
|
|
10
|
+
Given the software-methodology MCP server is running
|
|
11
|
+
And the methodology contains 11 skills with references
|
|
12
|
+
|
|
13
|
+
Scenario: Search for design pattern by scenario
|
|
14
|
+
Given I need to implement object creation with many parameters
|
|
15
|
+
When I search for "many parameters object creation"
|
|
16
|
+
Then I should receive the Builder pattern from "clean-code/creational-patterns.md"
|
|
17
|
+
And the result should explain when to use Builder pattern
|
|
18
|
+
|
|
19
|
+
Scenario: Search for testing guidance
|
|
20
|
+
Given I want to understand test-first development
|
|
21
|
+
When I search for "write test before code"
|
|
22
|
+
Then I should receive results from "atdd-workflow/SKILL.md"
|
|
23
|
+
And I should receive results from "atdd-workflow/red-phase.md"
|
|
24
|
+
And the results should be ranked by relevance
|
|
25
|
+
|
|
26
|
+
Scenario: Search for BDD specification patterns
|
|
27
|
+
Given I need to write Gherkin scenarios
|
|
28
|
+
When I search for "Given When Then"
|
|
29
|
+
Then I should receive "bdd-specification/gherkin-patterns.md"
|
|
30
|
+
And the result should include Given-When-Then rules
|
|
31
|
+
|
|
32
|
+
Scenario: Search returns no results
|
|
33
|
+
Given I search for something not in the methodology
|
|
34
|
+
When I search for "quantum computing algorithms"
|
|
35
|
+
Then I should receive an empty result set
|
|
36
|
+
And I should receive a suggestion to check available skills
|
|
37
|
+
|
|
38
|
+
Scenario: Search for SOLID principle by symptom
|
|
39
|
+
Given I have a class that's hard to test
|
|
40
|
+
When I search for "hard to test dependencies"
|
|
41
|
+
Then I should receive Dependency Inversion Principle from "clean-code/solid.md"
|
|
42
|
+
And the result should explain how DIP improves testability
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Story Map: MCP-005
|
|
2
|
+
# Value Prop: Individual Developer - Gain: "Have clear criteria for 'done' before starting work"
|
|
3
|
+
|
|
4
|
+
Feature: Suggest Next Steps
|
|
5
|
+
As a developer using the methodology
|
|
6
|
+
I want to know what to do next based on current context
|
|
7
|
+
So that I follow the correct sequence without memorizing the workflow
|
|
8
|
+
|
|
9
|
+
Background:
|
|
10
|
+
Given the software-methodology MCP server is running
|
|
11
|
+
And the methodology follows a skill chain
|
|
12
|
+
|
|
13
|
+
Scenario: Starting from scratch
|
|
14
|
+
Given no methodology artifacts exist yet
|
|
15
|
+
When I request the next step
|
|
16
|
+
Then I should be told to create the Value Proposition Canvas
|
|
17
|
+
And the suggestion should reference "product-strategy/SKILL.md"
|
|
18
|
+
|
|
19
|
+
Scenario: VPC exists, planning features
|
|
20
|
+
Given the VPC exists
|
|
21
|
+
And no story map exists
|
|
22
|
+
When I request the next step
|
|
23
|
+
Then I should be told to create the story map backbone
|
|
24
|
+
And the suggestion should reference "story-mapping/SKILL.md"
|
|
25
|
+
And the suggestion should explain that backbone derives from VPC customer jobs
|
|
26
|
+
|
|
27
|
+
Scenario: Story map exists, need scenarios
|
|
28
|
+
Given the VPC exists
|
|
29
|
+
And the story map backbone exists
|
|
30
|
+
And no feature files exist
|
|
31
|
+
When I request the next step
|
|
32
|
+
Then I should be told to write Gherkin scenarios
|
|
33
|
+
And the suggestion should reference "bdd-specification/SKILL.md"
|
|
34
|
+
|
|
35
|
+
Scenario: Scenarios exist, ready to implement
|
|
36
|
+
Given feature files exist with Gherkin scenarios
|
|
37
|
+
And no tests exist
|
|
38
|
+
When I request the next step
|
|
39
|
+
Then I should be told to write failing acceptance test (RED phase)
|
|
40
|
+
And the suggestion should reference "atdd-workflow/red-phase.md"
|
|
41
|
+
|
|
42
|
+
Scenario: Tests failing (RED), make them pass
|
|
43
|
+
Given acceptance tests exist and are failing
|
|
44
|
+
When I request the next step
|
|
45
|
+
Then I should be told to implement minimum code to pass tests (GREEN phase)
|
|
46
|
+
And the suggestion should reference "atdd-workflow/green-phase.md"
|
|
47
|
+
|
|
48
|
+
Scenario: Tests passing (GREEN), improve code
|
|
49
|
+
Given acceptance tests exist and are passing
|
|
50
|
+
And the code has not been refactored
|
|
51
|
+
When I request the next step
|
|
52
|
+
Then I should be told to refactor for maintainability
|
|
53
|
+
And the suggestion should reference "atdd-workflow/refactor-phase.md"
|
|
54
|
+
And the suggestion should reference "clean-code/SKILL.md"
|
|
55
|
+
|
|
56
|
+
Scenario: Feature complete, ready to deploy
|
|
57
|
+
Given a feature is implemented and tested
|
|
58
|
+
And no CI/CD pipeline exists
|
|
59
|
+
When I request the next step
|
|
60
|
+
Then I should be told to set up the deployment pipeline
|
|
61
|
+
And the suggestion should reference "cicd-pipeline/SKILL.md"
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Story Map: MCP-006
|
|
2
|
+
# Value Prop: Individual Developer - Pain relieved: "No shared language between developers, product, and stakeholders"
|
|
3
|
+
|
|
4
|
+
Feature: Validate Gherkin Scenarios
|
|
5
|
+
As a developer writing BDD specifications
|
|
6
|
+
I want to validate my Gherkin files against best practices
|
|
7
|
+
So that my scenarios are well-formed and trace to business value
|
|
8
|
+
|
|
9
|
+
Background:
|
|
10
|
+
Given the software-methodology MCP server is running
|
|
11
|
+
And Gherkin pattern rules exist in "bdd-specification/gherkin-patterns.md"
|
|
12
|
+
|
|
13
|
+
Scenario: Validate well-formed feature file
|
|
14
|
+
Given I have written a feature file with proper structure
|
|
15
|
+
And the feature has a user story
|
|
16
|
+
And scenarios use Given-When-Then format
|
|
17
|
+
And the "So that" clause traces to a VPC gain
|
|
18
|
+
When I validate the feature file
|
|
19
|
+
Then validation should pass
|
|
20
|
+
And I should receive confirmation of proper structure
|
|
21
|
+
|
|
22
|
+
Scenario: Detect missing VPC traceability
|
|
23
|
+
Given I have a feature file
|
|
24
|
+
But the "So that" clause doesn't reference any VPC gain
|
|
25
|
+
When I validate the feature file
|
|
26
|
+
Then validation should fail
|
|
27
|
+
And I should receive a warning about missing VPC traceability
|
|
28
|
+
And the warning should suggest reviewing the VPC
|
|
29
|
+
|
|
30
|
+
Scenario: Detect improper Given-When-Then usage
|
|
31
|
+
Given I have a scenario with a Given step in future tense
|
|
32
|
+
When I validate the feature file
|
|
33
|
+
Then validation should warn about tense usage
|
|
34
|
+
And the warning should reference "Given should be past tense"
|
|
35
|
+
|
|
36
|
+
Scenario: Detect missing user story
|
|
37
|
+
Given I have a feature file without the "As a... I want... So that..." header
|
|
38
|
+
When I validate the feature file
|
|
39
|
+
Then validation should fail
|
|
40
|
+
And I should receive an error about missing user story
|
|
41
|
+
|
|
42
|
+
Scenario: Suggest Scenario Outline for repeated scenarios
|
|
43
|
+
Given I have multiple scenarios with the same structure
|
|
44
|
+
But different data values
|
|
45
|
+
When I validate the feature file
|
|
46
|
+
Then validation should suggest using Scenario Outline
|
|
47
|
+
And the suggestion should reference "bdd-specification/gherkin-patterns.md"
|
|
48
|
+
|
|
49
|
+
Scenario: Check for observable outcomes in Then steps
|
|
50
|
+
Given I have a Then step that references internal system state
|
|
51
|
+
Such as "Then the database should contain record X"
|
|
52
|
+
When I validate the feature file
|
|
53
|
+
Then validation should warn about non-observable outcomes
|
|
54
|
+
And the warning should suggest user-observable alternatives
|