Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzarexplicit-identity
Explicit Identity Across Boundaries
Estrellas3803
Forks296
Actualizado10 de enero de 2026, 01:54
SKILL.md
readonlyMenú
Explicit Identity Across Boundaries
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
Generate comprehensive PR descriptions following repository templates
Deep interview process to transform vague ideas into detailed specs. Works for technical and non-technical users.
Search Mathlib for lemmas by type signature pattern
| 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])