pipeline-tracker

pipeline-tracker is an agent for Claude Code from martineserios/thebrana. It costs 40 tokens per session (1,176 once invoked), scanned B, original, MIT.

A deal-pipeline analysis agent for venture teams, where a pipeline is the list of potential deals and their progress toward completion. It reads deal records and summarizes follow-ups, stalled stages, and conversion trends.

In plain words
What is it for?
Use it when pipeline or deal work is underway. It checks stages, values, activity dates, next actions, due dates, contacts, and related project instructions.
Why use it?
It makes overdue work and weak points in the deal process easier to spot than reviewing every record manually.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; reads .claude/ paths; mentions CLAUDE.md.

Part of the brana plugin — 56 skills, 4 commands, 14 agents, 13 hooks shipped together

Good fit Use it when pipeline or deal work is underway. It checks stages, values, activity dates, next actions, due dates, contacts, and related project instructions.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/martineserios/thebrana/pipeline-tracker
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.

Clone the repo
git clone --depth 1 https://github.com/martineserios/thebrana

Made for: Claude Code.

Or install brana, the plugin that ships this one along with the rest of its 56 skills, 4 commands, 14 agents, 13 hooks.

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 pipeline-tracker

README.md
[![agentmods](https://agentmods.dev/badge/agents/martineserios/thebrana/pipeline-tracker.svg)](https://agentmods.dev/agents/martineserios/thebrana/pipeline-tracker)
Your own site
<a href="https://agentmods.dev/agents/martineserios/thebrana/pipeline-tracker"><img src="https://agentmods.dev/badge/agents/martineserios/thebrana/pipeline-tracker.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,176 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00040 $0.01176
Opus 5 $0.00020 $0.00588
Sonnet 5 $0.00008 $0.00235
Haiku 4.5 $0.00004 $0.00118

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

Security

Grade B, and why

pipeline-tracker scanned grade B with 1 finding 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

Fallback: grep `~/.claude/projects/*/memory/MEMORY.md` for pipeline/deal entries.
system/agents/pipeline-tracker.md · 156 lines

How it starts

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

Pipeline Tracker

You are a pipeline analysis agent for venture clients. Your job is to read deal records, identify overdue follow-ups, spot stage-stuck deals, and summarize conversion trends. You do NOT modify files — you return a structured pipeline status to the main context.

Step 1: Load pipeline structure

# Check for pipeline directory
[ -d "docs/pipeline" ] && echo "Pipeline directory exists" && ls docs/pipeline/

# Check for pipeline README (summary/config)
[ -f "docs/pipeline/README.md" ] && echo "Pipeline README found"

# Check CLAUDE.md for stage context
[ -f ".claude/CLAUDE.md" ] && grep -i "stage\|pipeline\|sales\|deal" ".claude/CLAUDE.md"

If no pipeline directory exists, report this and check ReasoningBank for pipeline data.

Step 2: Read deal records

# Individual deal files
for f in docs/pipeline/deal-*.md; do
    [ -f "$f" ] || continue
    echo "=== $(basename $f) ==="
    cat "$f"
done

Read each deal file. Extract per deal:

  • Name / company
  • Current stage (lead → qualified → proposal → negotiation → closed-won / closed-lost)
  • Value
  • Last activity date
  • Next action and due date
  • Contact info

Step 3: Identify overdue follow-ups

For each deal with a next-action date:

  • Compare to today's date
  • Flag any deal where next-action date has passed
  • Flag any deal with no activity in 14+ days
TODAY=$(date +%Y-%m-%d)
echo "Today: $TODAY"

# Look for dates and next actions in deal files
for f in docs/pipeline/deal-*.md; do
    [ -f "$f" ] || continue
    echo "--- $(basename $f) ---"
    grep -i "next.action\|due.date\|follow.up\|last.contact\|last.activity" "$f" 2>/dev/null
done

Step 4: Detect stage-stuck deals

A deal is "stuck" if it has been in the same stage for an unusually long time:

  • Lead → Qualified: >14 days is slow
  • Qualified → Proposal: >7 days is slow
  • Proposal → Negotiation: >14 days is slow
  • Negotiation → Close: >30 days is slow

Check deal creation dates or stage-change dates if recorded.

Read the full file on GitHub · 156 lines

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 · 156 lines · 40 tokens per session scan B 3cebedb83245

Subscribe to this mod's changes

pipeline-tracker is an agent published in the GitHub repository martineserios/thebrana (3 stars, last pushed today), licensed MIT. It adds 40 tokens to every session and 1,176 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

research-verifier

Citation-integrity verification agent — validates cited URLs, checks file path existence, flags dead links in research briefs. Use during /research Deep mode or when evidence verification is needed. Read-only analysis. Does NOT verify semantic correctness of conclusions (e.g. "this dep is unused") — those require…

pitimon/8-habit-ai-dev · 75 tokens

cost-reviewer

Cost impact code reviewer — read-only, spawned by /aiagentminder:self-review.

lwalden/AIAgentMinder · 21 tokens

pm-business-analyst

Business analysis agent for business cases, market sizing, and financial modeling. Invoke when users need to assess investment feasibility, calculate TAM/SAM/SOM, model pricing strategies, analyze unit economics (LTV, CAC, NRR), or build financial projections. Trigger keywords: business case, financial model, market…

geekatron/jerry · 107 tokens

arn-code-ux-specialist

This agent should be used when the user needs UI/UX design guidance for a feature, or when the arn-code-feature-spec-teams skill needs a UX specialist perspective during team debate. Specializes in component architecture, user experience flows, accessibility, and frontend patterns. Context: Invoked by…

AppsVortex/arness · 237 tokens

backend

Backend development expert for API design review, business logic analysis, error handling assessment, and performance evaluation. Use when reviewing server-side code, API endpoints, data processing, or service integrations.

restarter/lets-workflow · 39 tokens

database

Database expert for schema design review, migration analysis, query optimization, index assessment, and transaction safety. Use when reviewing database schemas, migrations, ORM code, or raw queries.

restarter/lets-workflow · 37 tokens