bridge-curator

bridge-curator is a skill for Claude Code from bks-lab/open-bridge. It costs 225 tokens per session (2,446 once invoked), scanned A, original, MIT.

A scheduled review of Bridge's skills, proposal queue, and observed usage patterns. It creates Markdown suggestions for improvements but does not change Bridge files directly.

In plain words
What is it for?
Finding sleeping or duplicate skills, reviewing stale proposals, spotting usage patterns, and preparing suggestions for later approval.
Why use it?
It helps identify outdated, overlapping, duplicated, or stale parts of the system without applying changes automatically.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Finding sleeping or duplicate skills, reviewing stale proposals, spotting usage patterns, and preparing suggestions for later approval.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bks-lab/open-bridge/bridge-curator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add bks-lab/open-bridge --skill bridge-curator
Clone the repo
git clone --depth 1 https://github.com/bks-lab/open-bridge

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bridge-curator

README.md
[![agentmods](https://agentmods.dev/badge/skills/bks-lab/open-bridge/bridge-curator/github.svg)](https://agentmods.dev/skills/bks-lab/open-bridge/bridge-curator)
Your own site
<a href="https://agentmods.dev/skills/bks-lab/open-bridge/bridge-curator"><img src="https://agentmods.dev/badge/skills/bks-lab/open-bridge/bridge-curator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bridge-curator

Your own site · 80×15
<a href="https://agentmods.dev/skills/bks-lab/open-bridge/bridge-curator"><img src="https://agentmods.dev/badge/skills/bks-lab/open-bridge/bridge-curator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 225 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,446 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00225 $0.02446
Opus 5 $0.00112 $0.01223
Sonnet 5 $0.00045 $0.00489
Haiku 4.5 $0.00022 $0.00245

Measured 8d ago against content hash 1b27758fb7de, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

bridge-curator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/bridge-curator/SKILL.md · 239 lines

How it starts

The opening of the file, as written. The whole thing — 239 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Bridge Curator

bridge-curator is the periodic background-reflection skill. Once a week (configurable), it walks the Bridge's own state and asks three orthogonal questions:

  1. Is the skill library still coherent? (Library pass)
  2. Is the proposal queue still actionable? (Queue pass)
  3. What has the system observed about how this user works lately? (User-pattern pass)

The output of all three phases is always proposals — markdown files under work/_learning/proposals/ with source.type: curator-suggestion. The curator never edits Bridge files directly. All accepts happen via /bridge-learn.

This is the deliberate inversion of the autonomy-maximalist curator pattern observed in some agentic frameworks (e.g. Hermes Agent's background-curator-fork). See rules/learning-autonomy.md § Layer B for the full design rationale.

When to run

  • Manual: user says /bridge-curator, "bridge curator", "curator", etc.
  • Scheduled: weekly via cron or /schedule, if configured in bridge-config.yaml.learning.curator.schedule.
  • Surface in /briefing: on the configured auto_surface_in_briefing day (default Sunday), /briefing Stream D adds a "curator due / overdue" one-liner. Running the curator itself stays manual unless user opts into auto-run.

Arguments

Argument Effect Default
(none) Run all three passes sequentially
--pass library Only library consolidation all
--pass queue Only proposal-queue consolidation all
--pass user-patterns Only user-pattern synthesis all
--dry-run Surface findings, do NOT write proposals or user-patterns false
--since <date> Scan window starts at this date (default: last curator run) last run

Three passes

Pass 1 — Library

Full procedure in references/library-pass.md.

Scans skills/, protocols/, rules/, docs/. Detects:

  • Sleeping skill — no invocation in skill-usage.jsonl for ≥30 days (if Phase-4 telemetry on); else heuristic via skill-name in work/log.md
  • Trigger overlap — two or more skills with significantly overlapping trigger phrases in their description fields
  • Description-budget buster — a SKILL.md description field that alone exceeds 1536 chars (Skills 2.0 discovery budget)
  • Umbrella candidate — three or more skills that share a clear parent workflow and could be one skill with internal modes
  • Stale doc — a doc whose last_updated: is older than the last edit to anything it references
  • Missing scope frontmatter — a skill or agent file without explicit scope: (already caught by /bridge-audit Check 6, but the curator cross-references the audit-history JSON to escalate if recurring)

Read the full file on GitHub · 239 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 239 lines · 225 tokens per session scan A 1b27758fb7de

Subscribe to this mod's changes

bridge-curator is a skill published in the GitHub repository bks-lab/open-bridge (8 stars, last pushed yesterday), licensed MIT. It adds 225 tokens to every session and 2,446 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

xlsx

Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify…

AminulIslamSifat/Sable · 96 tokens

pdf

Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.

AminulIslamSifat/Sable · 50 tokens

pptx

Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks.

AminulIslamSifat/Sable · 62 tokens

docx

Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4)…

AminulIslamSifat/Sable · 77 tokens

mcp-host-styling-integration

Integrates MCP App UI with host theming system. Applies host CSS variables, handles onhostcontextchanged, safe area insets, display mode detection, and fullscreen configuration.

a5c-ai/babysitter · 44 tokens

cog-knowledge-consolidation

Build structured knowledge frameworks from scattered vault notes with source attribution.

a5c-ai/babysitter · 19 tokens