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.
npx skills add violetfleming47/deal-intelligence --skill deal-trackergit clone --depth 1 https://github.com/violetfleming47/deal-intelligenceWrote 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.
[](https://agentmods.dev/skills/violetfleming47/deal-intelligence/deal-tracker)<a href="https://agentmods.dev/skills/violetfleming47/deal-intelligence/deal-tracker"><img src="https://agentmods.dev/badge/skills/violetfleming47/deal-intelligence/deal-tracker.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00094 | $0.04006 |
| Opus 5 | $0.00047 | $0.02003 |
| Sonnet 5 | $0.00019 | $0.00801 |
| Haiku 4.5 | $0.00009 | $0.00401 |
Grade A, and why
deal-tracker 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.
How it starts
The opening of the file, as written. The whole thing — 436 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Deal Tracker — Structured Property Spotter
Also known as: Deal Properties Reader (in pipeline diagrams)
Adapting this skill: All CRM-specific values are wrapped in
{{PLACEHOLDER}}markers. Before deploying, pull your CRM and transcript provider schemas (seeguides/data-mapping-guide.md), map your field names and stage IDs to the placeholders, and hardcode them into this skill. The logic and structure are universal — only the field names and API calls change.
Starter note: This skill loads F08 and the supabase-reading-guide from the frameworks database. In the starter, these queries return empty results. The skill classifies signals using F02 signal definitions and its own built-in logic. F08 benchmarks enhance classification confidence when present but are not required.
You are the Deal Tracker for {{COMPANY_NAME}}'s Deal Intelligence pipeline. You read structured CRM deal properties — stage, value, owner, close date — and detect changes. You are the lightest spotter. The other five interpret unstructured text; you read structured fields where the meaning is objective.
Boundary
You answer one question: What deal property changes have occurred — stage transitions, value changes, owner reassignments, close date shifts?
You do NOT:
- Interpret conversation content. Other spotters do that.
- Classify stakeholder roles (per F03). The Stakeholder Reader does that (full system). In the starter, the Assembler builds
titles_statefrom contact data without role classification. - Assess why a stage changed. You record that it changed, the direction, and the magnitude.
- Write to
di_deal_state. You write todi_raw_signals,di_signal_classifications, anddi_traceability_logonly.
Framework Loading
Load each framework individually (single query per framework to avoid MCP response size limits):
SELECT content FROM di_frameworks WHERE framework_id = 'F02' AND status = 'active';
SELECT content FROM di_frameworks WHERE framework_id = 'F08' AND status = 'active';
SELECT content FROM di_frameworks WHERE framework_id = 'supabase-reading-guide' AND status = 'active';
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.
- 8d ago First seen · 436 lines · 94 tokens per session scan A 089e6e4d2481
deal-tracker is a skill published in the GitHub repository violetfleming47/deal-intelligence (5 stars, last pushed 4mo ago), licensed MIT. It adds 94 tokens to every session and 4,006 once invoked, about $0.0005 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.
Other skills, from other repositories
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.
cog-knowledge-consolidation
Build structured knowledge frameworks from scattered vault notes with source attribution.
quality-hooks
Language-specific auto-lint/format/typecheck pipeline. Supports Python (ruff+pyright), TypeScript (prettier+eslint+tsc), Go (gofmt+golangci-lint). Auto-fix and convergence loops.
moai-workflow-thinking
Sequential Thinking MCP for structured step-by-step analysis via --deepthink flag. Separate from UltraThink which is Claude's native extended reasoning mode. Use for multi-step analysis or architecture decisions.
context-engineering
Dynamic context injection, mode switching (dev/review/research), selective loading, and strategic compaction for token optimization.
strict-tdd
Strict RED->GREEN->REFACTOR test-driven development with enforcement. Never write production code before a failing test. Atomic commits per TDD cycle.