prd

prd is a skill for Claude Code from GlamgarOnDiscord/claude-saas-blueprint. It costs 34 tokens per session (1,056 once invoked), scanned A, original, MIT.

A workflow for turning a software idea into a Product Requirements Document and implementation tasks. A Product Requirements Document describes the product, its users, included features, technical design, pages, and API needs.

In plain words
What is it for?
Use it to explore a SaaS idea, define target users and business needs, plan the MVP, choose an architecture, map pages and user stories, and list required API endpoints.
Why use it?
It gives a team a structured path from an early idea to an executable development plan. It helps clarify the minimum first release and what should be left for later.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it to explore a SaaS idea, define target users and business needs, plan the MVP, choose an architecture, map pages and user stories, and list required API endpoints.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/glamgarondiscord/claude-saas-blueprint/prd"><img src="https://agentmods.dev/badge/skills/glamgarondiscord/claude-saas-blueprint/prd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,056 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.00034 $0.01056
Opus 5 $0.00017 $0.00528
Sonnet 5 $0.00007 $0.00211
Haiku 4.5 $0.00003 $0.00106

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

Security

Grade A, and why

prd 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 11d 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/prd/SKILL.md · 116 lines

How it starts

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

Modes

/prd brainstorm [idée] — Phase 1 : Exploration

Utiliser /brainstorm pour explorer l'idée :

  • Quel problème ça résout ?
  • Qui sont les utilisateurs cibles ?
  • Quels sont les concurrents ?
  • Quel est le business model ?
  • Quel est le MVP minimal ?

Output : Synthèse validée par l'utilisateur.

/prd generate — Phase 2 : Rédiger le PRD

Générer un Product Requirements Document structuré dans docs/prd.md :

# PRD — [Nom du Produit]

## 1. Vision
- Problème résolu
- Proposition de valeur unique
- Utilisateurs cibles

## 2. Scope MVP
- Features incluses (must-have)
- Features exclues (v2, v3)
- Contraintes techniques

## 3. User Stories
- En tant que [rôle], je veux [action], afin de [bénéfice]
- Organisées par priorité (P0, P1, P2)

## 4. Architecture Technique
- Stack choisie (via /brainstorm si pas encore décidé)
- Schema de données (entités principales + relations)
- Diagramme de flux (auth, paiement, features core)
- Intégrations tierces (Stripe, email, etc.)

## 5. Pages & Navigation
- Sitemap avec toutes les pages
- Wireframes textuels des pages clés

## 6. API Endpoints
- Liste des endpoints nécessaires
- Formats de requête/réponse

## 7. Métriques de Succès
- KPIs à tracker
- Critères de "done" pour le MVP

/prd tasks — Phase 3 : Découper en Tasks

Transformer le PRD en tasks atomiques dans .claude/memory/roadmap/backlog.md :

Règles de découpage :

  • [S] = 1 fichier ou moins, [M] = 2-5 fichiers, [L] = 6+ fichiers (→ décomposer avant exec)
  • Chaque task = 1 commit logique, indépendante ou dépendances explicites
  • Ordre : DB schema → Core logic → API → UI → Tests
  • Grouper par sprint (Sprint 1 = fondations, Sprint 2 = features core, Sprint 3 = polish)

Format :

### Sprint 1 — Fondations
- [ ] [S] Setup projet avec /saas-init
- [ ] [M] Schema DB users + organizations + memberships
- [ ] [M] Auth flow (register, login, logout)
- [ ] [S] Layout principal (sidebar, header, navigation)
- [ ] [S] Page dashboard vide

### Sprint 2 — Core Features
- [ ] [M] Feature: [feature 1 du PRD]
- [ ] [M] Feature: [feature 2 du PRD]
- [ ] [M] Intégration Stripe (plans, checkout, webhooks)

### Sprint 3 — Polish & Ship
- [ ] [M] Landing page
- [ ] [S] SEO + meta tags
- [ ] [M] Tests E2E parcours critiques
- [ ] [S] Deploy check + mise en production

Read the full file on GitHub · 116 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. 11d ago First seen · 116 lines · 34 tokens per session scan A 580b805812d0

Subscribe to this mod's changes

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