npx skills add smithery/parcadei --skill explicit-identity
parcadei/continuous-claude-v3
explicit-identity
Explicit Identity Across Boundaries
Installation
npx skills add parcadei/continuous-claude-v3 --skill explicit-identity
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Scans lyrics for explicit content and verifies that explicit flags match actual content. Use be…
182 installsBuild a complete explicit instruction sequence from teacher modelling through guided practice t…
130 installsAlso in this package
Other skills from parcadei/continuous-claude-v3 · top by installs.
npx skills add parcadei/continuous-claude-v3
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,291 B -
docs
SUMMARY.md60 B
History
- First seen on skills.sh
- First recorded snapshot · 472 installs
SKILL.md
Explicit Identity Across Boundaries
Never rely on "latest" or "current" when crossing process or async boundaries.
Pattern
Pass explicit identifiers through the entire pipeline. "Most recent" is a race condition.
DO
- Pass
--session-id $IDwhen spawning processes - Store IDs in state files for later correlation
- Use full UUIDs, not partial matches
- Keep different ID types separate (don't collapse concepts)
DON'T
- Query for "most recent session" at execution time
- Assume the current context will still be current after await/spawn
- Collapse different ID types:
- sessionid = Claude Code session (human-facing) - rootspanid = Braintrust trace (query key) - turnspan_id = Braintrust turn within session
Example
// BAD: race condition at session boundaries
spawn('analyzer', ['--learn']) // defaults to "most recent"
// GOOD: explicit identity
spawn('analyzer', ['--learn', '--session-id', input.session_id])
Source Sessions
- 1c21e6c8: Defined sessionid vs rootspan_id distinction
- 6a9f2d7a: Fixed wrong-session attribution via explicit passing
- a541f08a: Confirmed pattern prevents race at session boundaries