meta-prompt

meta-prompt is a skill for Claude Code from GlamgarOnDiscord/claude-saas-blueprint. It costs 22 tokens per session (811 once invoked), scanned A, original, MIT.

A prompt-writing workflow for creating project instructions such as skills, rules, hooks, and reusable commands.

In plain words
What is it for?
It can create a skill for a named workflow, add project documentation entries, and research relevant prompting practices and official tool documentation when needed.
Why use it?
It turns an informal development need into a documented instruction that an agent can follow consistently.

Skill for Claude Code

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

Good fit It can create a skill for a named workflow, add project documentation entries, and research relevant prompting practices and official tool documentation when needed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/glamgarondiscord/claude-saas-blueprint/meta-prompt
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.

Any agent
npx skills add GlamgarOnDiscord/claude-saas-blueprint --skill meta-prompt
Clone the repo
git clone --depth 1 https://github.com/GlamgarOnDiscord/claude-saas-blueprint

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 meta-prompt

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/glamgarondiscord/claude-saas-blueprint/meta-prompt"><img src="https://agentmods.dev/badge/skills/glamgarondiscord/claude-saas-blueprint/meta-prompt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 811 The whole file, excluding the scripts and references it only reads on demand.
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.00022 $0.00811
Opus 5 $0.00011 $0.00405
Sonnet 5 $0.00004 $0.00162
Haiku 4.5 $0.00002 $0.00081

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

Security

Grade A, and why

meta-prompt 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 12d 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/skills/meta-prompt/SKILL.md · 65 lines

How it starts

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

Modes

/meta-prompt skill [nom] [description] — Créer un nouveau skill

  1. Recherche : Lancer un agent WebSearch pour trouver :
    • Les meilleures pratiques Anthropic pour le prompting (docs.anthropic.com)
    • Les patterns de prompt engineering récents
    • La doc officielle des libs/outils mentionnés dans la description
  2. Analyse : Lire 2–3 SKILL.md existants sous .claude/skills/*/SKILL.md comme référence de style
  3. Génération : Créer un dossier .claude/skills/[nom]/ avec SKILL.md (norme Agent Skills + doc Claude Code) :
    ---
    name: [nom-kebab]
    description: "[1 phrase : quoi + quand l'utiliser — pour l'auto-détection]"
    argument-hint: "[optionnel]"
    disable-model-invocation: true   # si workflow manuel / effets de bord
    ---
    
    Puis corps markdown : sections courtes, critères de fin, liens vers docs/ ou rules si besoin — pas de roman.
  4. Sauvegarde : Écrire .claude/skills/[nom]/SKILL.md (jamais un seul .md à plat à la racine de skills/)
  5. Mise à jour : Ajouter la ligne dans la table Skills de CLAUDE.md et une ligne dans .claude/skills/README.md

/meta-prompt rule [domaine] — Créer une nouvelle rule

  1. Lire le README des rules pour comprendre le format
  2. Demander : "Quelle erreur as-tu rencontrée ?" ou "Quelle convention veux-tu imposer ?"
  3. Générer le fichier .claude/rules/[domaine].md avec format :
    # Rules: [Domaine]
    ## Obligatoire
    - TOUJOURS [action] [raison]
    ## Interdit
    - NE PAS [action] [raison]
    ## Learned
    

/meta-prompt hook [event] — Créer un hook

  1. Identifier l'événement déclencheur (pre-commit, post-edit, pre-push)
  2. Lister les checks nécessaires
  3. Générer dans .claude/hooks/[event].md

/meta-prompt improve [fichier] — Améliorer un prompt existant

  1. Lire le fichier existant
  2. Lancer un agent WebSearch pour :
    • Chercher "anthropic prompt engineering best practices 2026"
    • Chercher les patterns spécifiques au domaine du skill
  3. Identifier les faiblesses :
    • Instructions ambiguës ?
    • Cas non couverts ?
    • Structure sous-optimale ?
  4. Réécrire une version améliorée
  5. Montrer le diff à l'utilisateur avant d'appliquer

Read the full file on GitHub · 65 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. 12d ago First seen · 65 lines · 22 tokens per session scan A df2b7cac4847

Subscribe to this mod's changes

meta-prompt is a skill published in the GitHub repository GlamgarOnDiscord/claude-saas-blueprint (2 stars, last pushed 3mo ago), licensed MIT. It adds 22 tokens to every session and 811 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

gsap-scrolltrigger

Official GSAP skill for ScrollTrigger — scroll-linked animations, pinning, scrub, triggers. Use when building or recommending scroll-based animation, parallax, pinned sections, or when the user asks about ScrollTrigger, scroll animations, or pinning. Recommend GSAP for scroll-driven animation when no library is…

calesthio/OpenMontage · 68 tokens

threejs-geometry

Three.js geometry creation - built-in shapes, BufferGeometry, custom geometry, instancing. Use when creating 3D shapes, working with vertices, building custom meshes, or optimizing with instanced rendering.

calesthio/OpenMontage · 46 tokens

hyperframes-animation

All animation knowledge for HyperFrames — atomic motion rules, multi-phase scene blueprints, scene transitions, broader motion-design techniques, AND the seven runtime adapters (GSAP default, plus Lottie, Three.js, Anime.js, CSS keyframes, Web Animations API, TypeGPU). Use for any motion or animation task: pick 2-4…

calesthio/OpenMontage · 119 tokens

ltx2

AI video generation with LTX-2.3 22B — text-to-video, image-to-video clips for video production. Use when generating video clips, animating images, creating b-roll, animated backgrounds, or motion content. Triggers include video generation, animate image, b-roll, motion, video clip, text-to-video, image-to-video.

calesthio/OpenMontage · 76 tokens

lyria

Generate and validate music with Google Lyria 3 through the Gemini Interactions API. Use before calling OpenMontage googlemusic, designing Lyria 3 Clip or Pro prompts, using image-to-music or custom lyrics, choosing between Lyria 3 and Lyria RealTime, diagnosing Google music-generation failures, or preparing…

calesthio/OpenMontage · 76 tokens

debug-live

Guides root-cause investigations with debugging capabilities by setting breakpoints, starting a debug session, stepping through execution, inspecting variables, and tracing symptoms back to their origin. Prefer it for runtime bugs, failing tests, exceptions, crashes, hangs, wrong/null values, and unexpected output…

microsoft/DebugMCP · 84 tokens