From 0b147073b1dc005a63a773554dfe7351d241389e Mon Sep 17 00:00:00 2001 From: bronz3beard <38899587+bronz3beard@users.noreply.github.com> Date: Fri, 17 Jul 2026 20:36:54 +0000 Subject: [PATCH] feat: add Solutioning Facilitator to skills directory array Added the Solutioning Facilitator to the `ALL_SKILLS` array in `src/app/skills/roles/page.tsx` with its defined use cases and roles. --- src/app/skills/roles/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/app/skills/roles/page.tsx b/src/app/skills/roles/page.tsx index 8ab5117..0b04bda 100644 --- a/src/app/skills/roles/page.tsx +++ b/src/app/skills/roles/page.tsx @@ -32,6 +32,20 @@ interface RoleSection { } const ALL_SKILLS: Skill[] = [ + { + id: 'solutioning-facilitator', + name: 'Solutioning Facilitator', + description: 'Facilitates a live, multi-role solutioning session and keeps a running record of every option, concern, and decision so nothing is lost or re-argued.', + useCases: [ + 'Running a live session when a feature gap surfaces mid-sprint.', + 'Keeping a Solution Ledger of every option, concern, and decision across rounds.', + 'Deciding whether to build now, spike, or defer.', + ], + realWorldExample: + 'A checkout flow is found to have no offline case mid-sprint; the session converges on one flagged first slice with QA acceptance criteria, and logs the rejected alternatives with reasons.', + addedAt: '2026-07-17', + roles: ['PM', 'DESIGNER', 'QA', 'DEVELOPER'], + }, { id: 'vertical-slice', name: 'Vertical Slice Decomposer',