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 agentmods add commands/pitchlab/founder-support-system/setupgit clone --depth 1 https://github.com/Pitchlab/founder-support-systemWhat 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 | $0.00012 | $0.02016 |
| Opus 5 | $0.00006 | $0.01008 |
| Sonnet 5 | $0.00002 | $0.00403 |
| Haiku 4.5 | $0.00001 | $0.00202 |
Grade B, and why
setup scanned grade B with 2 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 yesterday.
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.
if ! grep -q "^\.claude/$" .gitignore; then Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
mcp__notion__notion-fetch(visionUrl) How it starts
The opening of the file, as written. The whole thing — 318 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Founder Support System - Interactive Setup
This setup wizard will help you configure your Notion integration in 3 steps:
- Verify Notion MCP Server is installed
- Collect your Notion page URLs
- Create configuration file
Let's get started!
Step 1: Verify Notion MCP Server
IMPORTANT: This plugin requires the Notion MCP Server to work.
If you haven't installed it yet:
- Follow: https://github.com/anthropics/notion-mcp
- Add to Claude Code MCP settings
- Restart Claude Code
- Come back and run
/founder-support-system:setupagain
Have you already installed and configured the Notion MCP Server?
Use AskUserQuestion to confirm:
{
"questions": [
{
"question": "Have you installed and configured the Notion MCP Server?",
"header": "MCP Server",
"multiSelect": false,
"options": [
{
"label": "Yes, it's configured",
"description": "I've installed the Notion MCP server and added it to Claude Code settings"
},
{
"label": "No, not yet",
"description": "I need to install it first"
}
]
}
]
}
If "No": Stop here and provide the installation link.
If "Yes": Continue to Step 2.
Step 2: Create Notion Pages
You need to create these 6 pages in your Notion workspace:
Required Pages
- Vision - Your manifesto, mission themes, core beliefs
- Year Plan - Annual OKRs, financial targets, quarterly themes
- Personal Operating Model - Strengths, weaknesses, decision system
- Golden Rules - Non-negotiable working principles
- Logbook - Parent page for quarterly review entries
- Founder Wisdom - Curated principles from thought leaders (optional)
How to Create
For each page:
- Create a blank page in Notion
- Give it a clear title (e.g., "Strategy | Vision", "Strategy | Year Plan")
- Click "Share" → "Copy link"
- Save the URL (you'll need it in the next step)
Page URL format: https://www.notion.so/Page-Title-{PAGE_ID}
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.
- yesterday First seen · 318 lines · 12 tokens per session scan B 86b8b876c183
setup is a command published in the GitHub repository Pitchlab/founder-support-system (2 stars, last pushed 8mo ago), licensed MIT. It adds 12 tokens to every session and 2,016 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (reads agent configuration directories, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
constitution
Create or update the project constitution from interactive or provided principle inputs.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.