founder-skills: Instructions file for Claude Code

CLAUDE.md

founder-skills CLAUDE.md is an instructions file for Claude Code from ognjengt/founder-skills. It costs 1,467 tokens per session, scanned A, original, MIT.

Development instructions for founder-skills, a repository that packages reusable instructions called skills for AI coding assistants.

In plain words
What is it for?
Use it when adding, naming, documenting, or testing a skill, or when updating the repository's plugin marketplace metadata and installation tools.
Why use it?
It gives contributors a consistent layout and format for new skills, so the installer and marketplace can find and use them correctly. It also reduces ambiguity about testing and shared project context.

Instructions file for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is ognjengt/founder-skills's own configuration. It tells Claude Code how to work on founder-skills itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything founder-skills configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ognjengt/founder-skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ognjengt/founder-skills/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/ognjengt/founder-skills

Made for: Claude Code.

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 founder-skills CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ognjengt/founder-skills/claude-md/github.svg)](https://agentmods.dev/instructions/ognjengt/founder-skills/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/ognjengt/founder-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/ognjengt/founder-skills/claude-md/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.

agentmods 80×15 button for founder-skills CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/ognjengt/founder-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/ognjengt/founder-skills/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,467 This file is loaded in full into every session.
When invoked 1,467 The same file — it is already loaded in full.
Security scan A 0 findings. 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.01467 $0.01467
Opus 5 $0.00733 $0.00733
Sonnet 5 $0.00293 $0.00293
Haiku 4.5 $0.00147 $0.00147

Measured 10d ago against content hash 4c0bf8aece22, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

founder-skills CLAUDE.md 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 10d 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.

CLAUDE.md · 215 lines

How it starts

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

Development Guidelines

This file provides guidance for Claude when working on the founder-skills repository.

Repository Structure

founder-skills/
├── .claude-plugin/
│   └── marketplace.json    # Marketplace metadata
├── bin/
│   └── cli.js              # npx installer
├── skills/                 # All skills
│   └── <skill-name>/
│       ├── SKILL.md        # Skill definition
│       └── references/     # Additional materials
├── FOUNDER_CONTEXT.md      # Shared business context
├── package.json            # npm package config
├── README.md               # User documentation
└── CLAUDE.md               # This file

Adding a New Skill

  1. Create a new directory in skills/:

    skills/new-skill-name/
    ├── SKILL.md
    └── references/
        └── .gitkeep
    
  2. Follow the SKILL.md format:

    ---
    name: skill-name
    version: v1.0.0
    description: Brief description of what this skill does and when to use it.
    ---
    
    # Skill Title
    
    ## Purpose
    One sentence. One outcome. No context.
    
    ---
    
    ## Execution Logic
    
    **Check $ARGUMENTS first to determine execution mode:**
    
    ### If $ARGUMENTS is empty or not provided:
    Respond with:
    "skill-name loaded, proceed with additional instructions"
    
    Then wait for the user to provide their requirements in the next message.
    
    ### If $ARGUMENTS contains content:
    Proceed immediately to Task Execution (skip the "loaded" message).
    
    ---
    
    ## Task Execution
    
    When user requirements are available (either from initial $ARGUMENTS or follow-up message):
    
    ### 1. MANDATORY: Read Reference Files FIRST
    **BLOCKING REQUIREMENT — DO NOT SKIP THIS STEP**
    
    Before doing ANYTHING else, you MUST use the Read tool to read every file
    in `./references/`. This is non-negotiable.
    
    **DO NOT PROCEED** to Step 2 until you have read all reference files and have their content in context.
    
    ### 2. Check for Business Context
    Check if `FOUNDER_CONTEXT.md` exists in the project root.
    - **If it exists:** Read it and use the business context to personalize
      your output (company name, brand voice, industry specifics, audience).
    - **If it doesn't exist:** Proceed using defaults from
      "Defaults & Assumptions".
    
    ### 3. Analyze Input
    From the user's requirements, extract:
    - [Key variable 1]
    - [Key variable 2]
    - [Key variable 3]
    
    For any missing information, apply defaults from **Defaults & Assumptions**.
    
    ### 4. Execute Task
    Using the data you read in Step 1:
    - [Core action 1 — tie back to specific reference file content]
    - [Core action 2]
    - Follow all Writing Rules below
    - [Skill-specific constraints]
    
    ### 5. Format and Verify
    - Structure output according to **Output Format** section
    - Complete **Quality Checklist** self-verification before presenting output
    
    ---
    
    ## Writing Rules
    Hard constraints. No interpretation.
    
    ### Core Rules
    - [Rule 1]
    - [Rule 2]
    - [Rule 3]
    
    ### Task-Specific Rules
    - [Rules that apply only in certain conditions within this skill]
    
    ### Context-Specific Rules
    - [Rules that change based on audience, platform, tone, etc.]
    
    ---
    
    ## Output Format
    [Expected output structure — use a concrete example, not just labels]
    
    **Example:**
    [A filled-in example showing what good output looks like]
    
    ---
    
    ## References
    
    **These files MUST be read using the Read tool before task execution
    (see Step 1):**
    
    | File | Purpose |
    |------|---------|
    | `./references/[file-1].md` | [What it contains] |
    | `./references/[file-2].md` | [What it contains] |
    
    **Why these matter:** [One sentence on how the reference files connect
    to produce better output — not optional boilerplate, but the actual reason.]
    
    ---
    
    ## Quality Checklist (Self-Verification)
    Before finalizing output, verify ALL of the following:
    
    ### Pre-Execution Check
    - [ ] I read all reference files before starting
    - [ ] I have the reference content in context
    
    ### Execution Check
    - [ ] Output uses data/patterns from the reference files (not invented)
    - [ ] Each [unit of output] is distinct (no repetition)
    - [ ] Writing Rules are followed throughout
    
    ### Output Check
    - [ ] Output matches the Output Format exactly
    - [ ] Defaults were applied correctly for any missing input
    - [ ] Output solves exactly what the user asked for
    
    **If ANY check fails → revise before presenting.**
    
    ---
    
    ## Defaults & Assumptions
    Use these unless the user overrides. Be specific — list concrete values,
    not vague categories.
    
    - [Default 1: concrete value]
    - [Default 2: concrete value]
    - [Default 3: concrete value]
    
    Document any assumptions made in the output.
    

Read the full file on GitHub · 215 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. 10d ago First seen · 215 lines · 1,467 tokens per session scan A 4c0bf8aece22

Subscribe to this mod's changes

founder-skills CLAUDE.md is an instructions file published in the GitHub repository ognjengt/founder-skills (294 stars, last pushed 3mo ago), licensed MIT. It adds 1,467 tokens to every session, about $0.0073 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-30.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

deepseek-harness AGENTS.md

AGENTS.md instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-stable apis and released session data, repository layout, commands and host sandbox failures.

deepseek-ai/deepseek-harness · 3,735 tokens