By prbe-ai
Claude Code plugin: ships per-session transcripts to Probe for ingestion
This repo is a Claude Code marketplace that publishes Probe's plugins.
Today it has one plugin: prbe-cc-tap-plugin.
/plugin marketplace add prbe-ai/prbe-cc-tap-plugin
/plugin install prbe-cc-tap-plugin@prbe-ai
Then pair the device with your Probe workspace from a terminal. The */
glob resolves to whichever version Claude Code installed:
cd ~/.claude/plugins/cache/prbe-ai/prbe-cc-tap-plugin/*/ && \
python3 -m tap pair <pairing-token>
Get a pairing token from your Probe dashboard: https://dashboard.prbe.ai → Integrations → Claude Code.
After pairing, every new Claude Code session will spawn the daemon via the SessionStart hook and ship transcripts to Probe for ingestion.
/plugin marketplace update prbe-ai
/plugin install prbe-cc-tap-plugin@prbe-ai # picks up the new version
CC drops new versions in their own subdir, so existing daemons keep running on the old code until their session ends — no mid-session interruption.
prbe-cc-tap-plugin/ (this repo — the marketplace)
├── .claude-plugin/marketplace.json # manifest CC reads
└── plugins/
└── prbe-cc-tap-plugin/ # the plugin itself
├── .claude-plugin/plugin.json
├── hooks/
├── tap/
├── tests/
├── pyproject.toml
└── README.md
The plugin's own README covers the daemon's design, config files, env vars, and CLI subcommands.
If you previously ran the deprecated curl … | sh installer, you have plugin
code at ~/.claude/plugins/prbe-cc-tap-plugin/ and a stale entry in
installed_plugins.json that CC's /plugins UI flags as broken.
To clean up:
In CC: /plugins → find prbe-cc-tap-plugin@prbe-ai (user) → Remove.
In a terminal, drop the orphaned code but keep the state files (.token,
state.db, logs/):
cd ~/.claude/plugins/prbe-cc-tap-plugin
rm -rf .git .claude-plugin tap hooks scripts tests
rm -f pyproject.toml uv.lock README.md .gitignore .gitattributes
Install via the new flow (the two slash commands above).
Your .token and ingestion state survive, so you don't need to re-pair.
MIT.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub prbe-ai/prbe-cc-tap-plugin --plugin prbe-cc-tap-pluginShips per-session Codex transcripts to Probe for ingestion. Every Codex session you start gets indexed into your team's operational memory automatically.
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Memory compression system for Claude Code - persist context across sessions
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
Curate auto-memory, promote learnings to CLAUDE.md and rules, extract proven patterns into reusable skills.