with one click
explicit-identity
Explicit Identity Across Boundaries
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Explicit Identity Across Boundaries
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Create git commits with user approval and no Claude attribution
Create or update continuity ledger for state preservation across clears
Create handoff document for transferring work to another session
Debug issues by investigating logs, database state, and git history
Generate comprehensive PR descriptions following repository templates
Deep interview process to transform vague ideas into detailed specs. Works for technical and non-technical users.
| name | explicit-identity |
| description | Explicit Identity Across Boundaries |
| user-invocable | false |
Never rely on "latest" or "current" when crossing process or async boundaries.
Pass explicit identifiers through the entire pipeline. "Most recent" is a race condition.
--session-id $ID when spawning processessession_id = Claude Code session (human-facing)root_span_id = Braintrust trace (query key)turn_span_id = Braintrust turn within session// BAD: race condition at session boundaries
spawn('analyzer', ['--learn']) // defaults to "most recent"
// GOOD: explicit identity
spawn('analyzer', ['--learn', '--session-id', input.session_id])