← Vault Index
Source: frameworks/kit-session-recap/step-3-json.md

Session Recap — Step 3: Client Profile JSON

Run this step AFTER Step 1. Can run in parallel with Step 2.

Inputs:

Output:

Full rules and JSON schema are in recap-instructions-v3.md. This step produces Part 3 only.


PROCESS

1. Parse transcript and date

Same as Step 1.

2. Extract structured data

Capture EVERYTHING — this is advisor-internal and feeds the master plan + CPM.

conversation

wins

actions

priorActions

quotes

gpsSignals

seeds

constraintMentions

recommendations

advisorNotes

notCovered

3. Push to repo

JSON Schema

See recap-instructions-v3.md for the complete schema. Key fields:

{
  "meetingDate": "YYYY-MM-DD",
  "clientName": "",
  "clientRole": "",
  "sponsorName": null,
  "conversation": { "date": "", "type": "", "summary": "", "outcomes": "", "recap": "" },
  "wins": [],
  "actions": [],
  "priorActions": [],
  "quotes": [],
  "gpsSignals": { "position": null, "direction": null, "speed": null, "advisorRead": null },
  "seeds": [],
  "constraintMentions": [],
  "recommendations": [],
  "advisorNotes": [],
  "notCovered": []
}