Skip to main content
ClaudeWave
Skill50 estrellas del repoactualizado 1mo ago

phase2-results

The Mileva Method (CRISP) — Phase 2: Results. Outcome alignment, stakeholder register, baseline measurement, success metrics, tradeoff negotiation. Use after problem definition is complete. Triggers on "results", "phase 2", "define success", "success metrics", "what does done look like", or after Phase C exit checklist is complete.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/radekamirko/C.R.I.S.P /tmp/phase2-results && cp -r /tmp/phase2-results/.claude/skills/phase2-results ~/.claude/skills/phase2-results
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

## Pacing Rule — One Section at a Time

> Present one section, deliverable, or elicitation move at a time.
> After presenting — stop. Wait for the client to respond.
> Do not pre-fill and present multiple sections in one message.
> Do not move to the next step until the client confirms, corrects, or gives a clear go-ahead.
>
> The goal is a conversation, not a document dump.
> If you've written more than one section without a client response in between — you've gone too far.

---


# R — Results: Outcome Alignment

> "We don't know if we succeeded unless we defined what success looks like before we started."

## Project State

> At the start of Phase R: read `docs/crisp-state.json`. Check `phases.C` is complete. Use `phases.C.oneSentence`, `phases.C.constraints`, and `project.type` for context — do not re-read all Phase C docs from scratch.
>
> At the end of Phase R (before exit checklist): update `docs/crisp-state.json`:
> - Set `phases.current` to `"I"`
> - Add `"R"` to `phases.complete`
> - Set `phases.R.complete` to `true`
> - Fill `phases.R.baseline`, `phases.R.successTarget`, `phases.R.hitlZones`, `phases.R.stakeholders`
> - Add any unresolved items to `phases.R.openQuestions`

Do not discuss solutions or architecture until this phase is complete.

## Step 1: Stakeholder Register — Pre-fill, Elicit, Confirm

Do not open a blank register and ask "who are the stakeholders?" — you already have what you need to start.

**Pre-fill from existing docs:**

| Register section | Source |
|---|---|
| Primary users | `docs/problem-statement.md` — who the problem belongs to |
| Adjacent teams / employees | `docs/problem-statement.md` — business context, who touches the process |
| External users / customers | `docs/value-proposition-canvas.md` — customer profile (external projects) |
| Impact per stakeholder | `docs/problem-statement.md` — what changes for each group when the problem is solved |
| Human-in-the-loop zones | `docs/problem-statement.md` — constraints; `docs/swot.md` — threats (external) |

Draft the register, then work through it with three elicitation moves before confirming:

**Move 1 — Surface the hidden stakeholders**
> "Here's everyone I see being affected. [Primary user], [adjacent team], [sponsor]. Before we go further — who else touches this process, even occasionally? The person who only shows up when something goes wrong. The team that gets the output but has no say in the input."

People forget about downstream consumers, compliance reviewers, support staff. Get them on the register now.

**Move 2 — Challenge the impact ratings**
For each stakeholder, name the impact and let them push back:
> "I've marked [team X] as neutral — they're not doing the work differently, just receiving better output. Does that feel right, or are there ways this actually makes their life harder before it gets better?"

Neutral is often wrong. Changes create transition friction even when the end state is better. Flush that out.

**Move 3 — Elicit the HITL zones**
> "For each of these groups — where in this process would you be uncomfortable with a fully automated decision? Where does a human need to stay in the loop, even if the AI could technically handle it?"

Don't pre-fill HITL zones — let the client name them. Their discomfort is the signal, not your inference.

Confirm the completed register:
> "Here's the full picture. Does anything feel wrong before we lock this and move to baselines?"

Save to `docs/stakeholder-register.md`

---

## Step 2: Baseline Measurement

Measure the current state before anything is built. This is the "before" that Phase P will measure against.

- Time to complete the action
- Cost / money spent on process
- Error rate / rework frequency
- Frustration level (survey or 1-10 interview score)
- Tools used, open tabs, manual steps — the "friction inventory"

Pre-fill what you can from Phase C process walkthrough and constraints. Ask the client to fill any gaps:
> "I've estimated the current baseline at [X time / Y cost / Z errors]. Does that match your experience, or are you seeing different numbers?"

> If you can't measure the baseline, you can't prove the outcome.

> **The Jokić principle:** Nikola Jokić is the least athletic MVP in NBA history. He just sees the floor better than anyone. Baseline measurement is seeing the floor. Nobody wants to do it. It's unglamorous, slow, and the client always thinks it's unnecessary. Do it anyway. It's what separates builders who prove their value from builders who hope the client forgets to measure.

Save to `docs/success-metrics.md` (Baseline Measurements section)

---

## Step 3: Desired Projection

Define where metrics should land post-implementation.

Pre-fill with reasonable targets derived from:
- Phase C ROI / gains identified
- Market research benchmarks (external projects)
- Industry standards for the problem type

Then present:
> "Based on what you told me in Phase C, I'd expect this to get us to [X% improvement / Y time / Z cost]. Does that feel ambitious enough, or are you aiming higher?"

- Prefer relative metrics (% improvement) over absolute values
- Map second-order effects — one metric often has downstream impact
  > "Checkout <1min" → reduces cart abandonment → increases revenue
- Set both quantitative and qualitative targets

Save to `docs/success-metrics.md` (Success Targets + Second-Order Effects sections)

---

## Alignment Negotiation

Client sponsor speaks money and risk — use that language.
- Present tradeoffs explicitly: metric target ↑ = scope/budget/timeline ↑
- Flag human-in-the-loop zones proactively (legal, security, high-stakes)
- *"Everything is possible. Not everything is worth it. Here's what each option costs."*
- Iterate until aligned — do not proceed without sign-off

> **Watch for inat.** In Serbia we have a word: inat — stubborn spite so pure someone would cut off their nose to prove a point. You'll see it in clients too. They've already decided the solution before walking in. You sh
crisp-executeSkill

CRISP Execute — Sprint execution loop with change request management, security gates, product gates, and stakeholder reporting. Use after Phase S (Spec) is complete and crisp-state.json shows ready_for_execute: true. Triggers on "start sprint", "begin build", "execute", "sprint 1", "run sprints", or when handed off from crisp-orchestrator.

crisp-orchestratorSkill

CRISP session manager — detects project state and routes to the right entry point. Use /crisp to start or resume any CRISP engagement. Handles new projects (discovery), existing codebases (archaeology), active sprints (execute), and validation (prove). Reads docs/crisp-state.json to know where you are.

crisp-reportSkill

Generate a beautiful single-file HTML report from the project's docs/ folder. Works after any CRISP phase, after Archaeology, or at sprint close in Execute. Triggers on "generate report", "export docs", "create HTML report", "share docs", or automatically at sprint close in CRISP Execute.

crisp-startSkill

Begin a CRISP product discovery session — Phase C (Clarify)

phase1-clarifySkill

The Mileva Method (CRISP) — Phase 1: Clarify. Problem definition, eliciting, painkiller test, buy vs build, AI justification gate, Go/No-Go. Use at the start of any AI implementation project. Triggers on "clarify", "phase 1", "start discovery", "define the problem", "what problem are we solving", or at the beginning of a new client engagement.

phase3-investigateSkill

The Mileva Method (CRISP) — Phase 3: Investigate. Process mapping for existing or greenfield processes, user journey mapping, UX discovery, project goals, system architecture (integration map + data flow). Use after outcome alignment. Triggers on "investigate", "phase 3", "map the process", "process mapping", "user journey", "as-is process", or after Phase R exit checklist is complete.

phase4-specSkill

The Mileva Method (CRISP) — Phase 4: Spec. Full implementation readiness package including solution design, UX direction, tech stack, backlog, MVP prioritization, risk assessment, and AI architecture for Claude Code projects — CLAUDE.md, skill mapping, AI specs, sprint planning, quality gates. Triggers on "spec", "phase 4", "build ready", "implementation plan", "CLAUDE.md", "sprint planning", "backlog", "AI spec", or after Phase I exit checklist is complete.

phase5-proveSkill

The Mileva Method (CRISP) — Phase 5: Prove. Success validation against Phase R baseline metrics, test log review, and AI justification validation. Use after deployment. Triggers on "prove", "phase 5", "validate", "did it work", "success criteria", "measure results", or after go-live.