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 srnichols/plan-forge --skill stakeholder-briefinggit clone --depth 1 https://github.com/srnichols/plan-forgeWrote 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/srnichols/plan-forge/stakeholder-briefing)<a href="https://agentmods.dev/skills/srnichols/plan-forge/stakeholder-briefing"><img src="https://agentmods.dev/badge/skills/srnichols/plan-forge/stakeholder-briefing/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.
<a href="https://agentmods.dev/skills/srnichols/plan-forge/stakeholder-briefing"><img src="https://agentmods.dev/badge/skills/srnichols/plan-forge/stakeholder-briefing.svg" alt="Reviewed on agentmods" width="80" 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.00055 | $0.02660 |
| Opus 5 | $0.00028 | $0.01330 |
| Sonnet 5 | $0.00011 | $0.00532 |
| Haiku 4.5 | $0.00006 | $0.00266 |
Grade A, and why
stakeholder-briefing scanned grade A 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -fsSL "$TEMPLATE_URL" -o /tmp/briefing-draft.md How it starts
The opening of the file, as written. The whole thing — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Stakeholder Briefing Skill
Trigger
"Generate a stakeholder briefing" / "Draft an adoption briefing for <company>" / "Tailor the Plan Forge briefing for my org" / /stakeholder-briefing
Inputs
The skill needs five placeholders. Prompt the user for any that are not supplied:
| Placeholder | What to ask | Example answer |
|---|---|---|
<<COMPANY>> |
"What organisation is the briefing for?" | "Contoso" |
<<SQUADS>> |
"One sentence on how their engineering org is structured." | "Platform team plus five product squads; SRE shared across all." |
<<KPIS>> |
"Two or three KPIs they actually report on." | "Defect escape rate, cost per shipped feature, story-point throughput." |
<<PILOT_TIMELINE>> |
"Proposed pilot window?" | "30 days starting 2026-06-01" |
<<THE_ASK>> |
"What do you need this stakeholder to do at the end?" | "Approve the 30-day pilot with the Payments squad, decision by 2026-05-25." |
If any answer is "I don't know yet", leave the corresponding placeholder in the output for the user to fill manually — do not invent.
Optional flags:
--source-dir <path>— directory of customer materials (slides converted to text, strategy docs, RFP drafts, public blog posts). When present, the skill usesforge_searchandgrep_searchagainst it to draft the prospect-specific sections (2, 3, 5, 7, 10, 12).--out <path>— output path for the filled briefing. Default:./stakeholder-briefing-<<company-slug>>.md. The skill writes markdown; if the user wants HTML they can run a markdown→HTML conversion downstream.
Steps
1. Load the canonical template
# Locate the template — try local repo first, fall back to GitHub raw
TEMPLATE_LOCAL="docs/manual/stakeholder-briefing-template.md"
TEMPLATE_URL="https://raw.githubusercontent.com/srnichols/plan-forge/master/docs/manual/stakeholder-briefing-template.md"
if [ -f "$TEMPLATE_LOCAL" ]; then
cp "$TEMPLATE_LOCAL" /tmp/briefing-draft.md
else
curl -fsSL "$TEMPLATE_URL" -o /tmp/briefing-draft.md
fi
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 · 169 lines · 55 tokens per session scan A 4fddf0fa0892
stakeholder-briefing is a skill published in the GitHub repository srnichols/plan-forge (5 stars, last pushed today), licensed MIT. It adds 55 tokens to every session and 2,660 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
sdd-tasks
Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.
rework-rate
Measure and interpret PR rework rate — the emerging 5th DORA metric.
sdd-research
Trigger: SDD research, external evidence, source-backed research. Produce auditable evidence for a selected research lane.
skill-improver
Trigger: improve skills, audit skills, refactor skills, skill quality. Audit and upgrade existing LLM-first skills.
mcp
Build or consume Model Context Protocol (MCP) servers and clients in .NET using the official MCP C# SDK, including stdio, Streamable HTTP, tools, prompts, resources, and capability negotiation. USE FOR: .NET MCP servers or clients; stdio versus HTTP transport choices; tools, resources, prompts, completions, and…
template-instantiation
Creates .NET projects from templates with validated parameters, smart defaults, Central Package Management adaptation, and latest NuGet version resolution. USE FOR: creating new dotnet projects, scaffolding solutions with multiple projects, installing or uninstalling template packages, creating projects that respect…