Herdr Pane Topic Sync
Description
herdr plugin: auto-name panes & tabs after each agent's live topic (Claude Code, Codex, …) instead of 1, 2, 3.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Pane Topic Sync
A [herdr](https://herdr.dev) plugin that auto-names your panes and tabs after what each agent is actually working on — no more tabs labeled `1`, `2`, `3`.
On every relevant herdr event it:
- Renames each agent pane to its live topic — the
terminal_title_strippedthat Claude Code (and other agents) emit via the terminal title. Withshow_agent_labels_on_pane_borders = truein your herdr config, that topic shows right on the pane border. - Renames each tab to the topic of its first pane (top-left, reading order). If the first pane is a plain shell, the first agent pane's topic is used instead, so a tab is never named after a shell prompt.
Plain (non-agent) shell panes are left untouched.
How it works
- Subscribes to
pane.*/tab.focused/workspace.focusedevents (seeherdr-plugin.toml). The key trigger ispane.agent_status_changed, which fires when an agent flips idle↔working — i.e. when it sets a fresh topic. - Deliberately does not subscribe to
*.renamedevents, so its own renames can't feed back into a loop. - Gates all writes through a state file (
$HERDR_PLUGIN_STATE_DIR/pane-topic-sync-state.json), sorenameis only called when a topic actually changed — no churn. The same file records the last few labels the plugin wrote for each pane and tab, so manual renames survive (see Manual renames are respected). - herdr fires several subscribed events at once, so copies of the script overlap routinely. Each run merges its histories with whatever reached the state file since it started and swaps the file in atomically, so overlapping runs can't clobber each other's bookkeeping.
- "First pane" is resolved from
herdr pane layoutrect coordinates, sorted by(y, x), so it's the visually top-left pane regardless of split order.
Install
Local (development):
git clone ~/repos/herdr-pane-topic-sync
herdr plugin link
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11