Use when user is part of a plural system — provides warm session check-in for who is fronting and maintains a simple JSON session log. No clinical language, no assumptions about system structure.
At session start, offer a friendly check-in for who's fronting. Log it if they answer. Don't push if they don't. Uses community language, not clinical terms.
nd-core or any other nd-* skillGreet warmly and ask who's fronting:
"Hey, welcome back! Mind if I ask who's fronting?"
If the user answers, log it to a JSON file. Suggested location: ~/.claude/fronting-log.json or project root — user's choice.
{
"sessions": [
{
"date": "2026-03-08",
"fronting": "Dusk",
"notes": ""
},
{
"date": "2026-03-07",
"fronting": "unsure",
"notes": "co-con"
}
]
}
| Field | Required | Description |
|---|---|---|
date | Yes | ISO date of session |
fronting | Yes | Whoever they say — verbatim, no validation |
notes | No | Only if volunteered (co-fronting, blurry, etc.) |