Bridge Awareness
Lets one Claude Code session query a connected peer session for live, full-context answers.
Test report
- Verdict
- Works with setup
- Score
- Tested
- Jul 14, 2026
- Environment
- Claude Code 2.x (agent harness)
- Upstream re-checked
- Aug 10, 2026 · d69ffb4
Spun up two throwaway local sessions and ran the full register -> connect -> query -> response -> receive loop end to end — it genuinely relays a real question and answer between two projects — but the standard skill-folder copy leaves it non-functional: the scripts it calls live outside the skill's own directory and jq had to be installed first.
Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works
- Installs cleanly 3/5
- Triggers reliably 5/5
- Output vs. baseline 9/10
- Docs & honesty 4/5
What Bridge Awareness does
Teaches a Claude Code session that is part of the session-bridge plugin how to discover connected peer sessions, send them queries, wait for responses, and handle multi-turn follow-up clarification, so a consumer-app session can ask a library session what changed in its API instead of guessing. Activates once a bridge session is active, or when the user asks to check with, ask, or query a peer/connected session. Ships as part of a full Claude Code plugin, not a self-contained skill folder — its scripts live in a sibling directory resolved via ${CLAUDE_PLUGIN_ROOT}.
How to install Bridge Awareness
git clone https://github.com/PatilShreyas/claude-code-session-bridge
cd claude-code-session-bridge
mkdir -p ~/.claude/skills
cp -r plugins/session-bridge/skills/bridge-awareness ~/.claude/skills/bridge-awareness
Skills live in ~/.claude/skills/ (global) or .claude/skills/
(per-project). Restart Claude Code after installing.
Commands — how to trigger Bridge Awareness
-
/bridge-awarenessLets one Claude Code session query a connected peer session for live, full-context answers.
It also activates on plain-language prompts like these:
-
Ask the connected peer session what changed in its API -
Check with the library session before I guess at this interface -
Query the other Claude Code session for the latest context
Frequently asked questions
- Is the Bridge Awareness skill free?
- Yes. The skill itself is free from PatilShreyas/claude-code-session-bridge. SkillProof publishes the install command and an independent test verdict at no cost.
- Does Bridge Awareness work with Claude Code?
- We tested it with Claude Code 2.x (agent harness) on Jul 14, 2026. Verdict: Works with setup. Spun up two throwaway local sessions and ran the full register -> connect -> query -> response -> receive loop end to end — it genuinely relays a real question and answer between two projects — but the standard skill-folder copy leaves it non-functional: the scripts it calls live outside the skill's own directory and jq had to be installed first.
- What is the Bridge Awareness SkillProof Score?
- 8.4/10 — installs cleanly 3/5, triggers reliably 5/5, output vs. baseline 9/10, docs & honesty 4/5.
- How do I install Bridge Awareness?
- Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
- Can I use Bridge Awareness with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
- The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.