maestro/skills/explicit-identity/SKILL.md
Explicit Identity Across Boundaries
npx skillsauth add scooter-lacroix/maestro explicit-identityInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 = Maestro 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])
tools
Wiring Verification
tools
Create and configure Maestro sub-agents with custom prompts, tools, and models
data-ai
Create and use Maestro slash commands - quick prompts, bash execution, file references
development
Upgrade any skill to v5 Hybrid format using decision theory + modal logic