Claude Skills for Founders: 5 to Upload Today
Five Claude skills built for founders (PRD, MVP scope, interview synthesis, competitor teardown, investor update), how to upload them, and a prompt for each.
A Claude skill is a folder with a SKILL.md that teaches Claude a repeatable procedure, loaded only when your task matches. Five built for founders cover the documents you write every month: a PRD, an MVP scope cut, interview synthesis, a competitor teardown, and an investor update. Upload each as a ZIP on claude.ai; they also run in Cowork and Claude Code.
Steps at a glance
- Turn on code execution. On claude.ai, open Settings > Capabilities and make sure Code execution and file creation is enabled. Skills require it. On Team and Enterprise plans an owner also has to enable Skills in the organization settings.
- Download the skill folder. Open the skill's page on AgentsCamp and save the SKILL.md into a folder named after the skill, for example prd-writer/SKILL.md.
- Zip the folder. Compress the skill folder so the folder itself is the root of the ZIP, not a subfolder inside it. The ZIP must contain the SKILL.md file.
- Upload it. Go to Customize > Skills, click the + button, choose + Create skill, then Upload a skill, and select the ZIP.
- Toggle it on and test it. Use the switch next to the skill to enable it, then start a chat that matches the skill's description, such as pasting interview notes and asking for a synthesis. Claude loads the skill automatically.
Key takeaways
- A skill is a SKILL.md describing a procedure. Claude reads only its description at session start and loads the full instructions when your request matches.
- Upload on claude.ai: Customize > Skills > + > Create skill > Upload a skill, with the skill folder at the ZIP root. Code execution must be on in Capabilities.
- Each founder skill produces one artifact from what you paste: a PRD, a cut MVP scope, an interview synthesis, a competitor teardown, or an investor update.
- Every skill here runs with no network, shell, or repo, so the same file works on claude.ai, in Cowork, and in Claude Code.
- In Claude Code the same jobs are one keystroke away as /prd and /scope-mvp; the technical-cofounder agent answers engineering questions you cannot judge alone.
A founder writes the same five documents on a loop: the requirements for the next feature, the argument about what to cut, the synthesis of what users said, the teardown of a competitor, and the monthly update to investors. Each one has a shape you have to re-explain to Claude every time. A skill is how you explain it once. This guide covers what a skill is, how to upload one to claude.ai in five steps, and the five we built for this job.
What a skill is, in one paragraph
A Claude skill is a folder containing a SKILL.md file: a few lines of metadata (a name and a one-sentence description of when to use it) followed by Markdown instructions Claude follows once the skill is loaded. At the start of a session Claude reads only the descriptions of every installed skill, so twenty of them cost roughly a screenful of text. When your request matches one ("synthesize these interviews"), Claude loads the full instructions and works through them like a runbook. The same file format runs on claude.ai, in Cowork, in Claude Code, and, because Anthropic released it as an open standard, in a growing list of other tools. The complete explanation, including how skills differ from CLAUDE.md and plugins, is What Are Claude Skills?.
How to upload a skill on claude.ai
Anthropic's help center lists skills as available on Free, Pro, Max, Team, and Enterprise, with one prerequisite: code execution has to be on. The steps, verified against the current article as of September 2026:
- Open Settings > Capabilities and enable Code execution and file creation. On Team and Enterprise plans an owner must also enable Skills in the organization settings.
- Put the
SKILL.mdinto a folder named after the skill (prd-writer/SKILL.md) and zip that folder so the folder is the root of the archive. The most common upload error the article lists is "Missing required skill.md file," which almost always means the ZIP has an extra layer of folder around it. - Go to Customize > Skills, click +, then + Create skill, then Upload a skill, and choose the ZIP.
- Toggle the skill on with the switch next to it. Disabled skills are invisible to Claude.
Skills do not sync between surfaces. A skill on claude.ai is not in Claude Code and vice versa; each gets its own copy. The claude.ai and API side, including the /v1/skills endpoint for developers, is in Skills on claude.ai and the API. The Claude Code side, where a skill is a folder at .claude/skills/<name>/ in a project or ~/.claude/skills/<name>/ for every project, is in How to install Claude skills. If you have never opened Claude Code, the non-developer walkthrough is Claude Code for Non-Developers and Founders.
Every skill below is pure instruction. No scripts, no network, no repository. That is deliberate: it means the identical file works in all three places, and it means the whole skill is the text you can read on its page before you upload it.
The five skills
1. prd-writer
prd-writer turns a rough feature idea, a Slack thread, or a page of notes into a structured product requirements document: problem, target user, success metrics, scope, non-goals, open questions. The non-goals are the part founders skip and engineers need most.
Use the prd-writer skill. Here is what I know about the feature:
[paste notes]. Our users are independent bookkeepers. The metric we
care about is time-to-first-reconciliation. Flag anything I have not
specified as an open question rather than guessing.2. mvp-scope-cutter
mvp-scope-cutter takes a feature list and argues it down to what must ship first, with a reason for each cut and the assumptions the remaining scope depends on. Paste it the PRD from the skill above and it will push back.
Use mvp-scope-cutter on this feature list: [paste]. We have one
engineer for six weeks and need something a paying customer can use
by the end. Be aggressive; I will argue back.3. user-interview-synthesizer
user-interview-synthesizer turns a pile of interview notes or transcripts into a synthesis: recurring themes, supporting quotes, contradictions between participants, and what to ask next time. Its job is to separate what people said from what you hoped they said.
Use user-interview-synthesizer. Here are notes from eight interviews
with clinic managers: [paste]. Tag each theme with which interviews
support it, quote people verbatim, and do not promote anything only
one person said into a theme.4. competitor-teardown
competitor-teardown produces a structured breakdown of a rival product from whatever you give it: their pricing page, onboarding screenshots, changelog, reviews. Expect positioning, who they are built for, the pricing model, what they do better, what they do worse, and where the gap is.
Use competitor-teardown on Acme. Here is their pricing page text,
their last six changelog entries, and twenty G2 reviews: [paste].
We sell to the same buyer at half the price. Mark anything you are
inferring rather than reading as an inference.5. investor-update-writer
investor-update-writer drafts the monthly update from your numbers and a few bullet points: headline metrics with month-over-month change, what worked, what did not, the specific asks, and a closing line, in the plain, honest-about-bad-news tone investors actually want.
Use investor-update-writer. MRR 41,200 (up from 37,900), 3 churned
logos, 2 new hires, runway 14 months. We missed the integrations
launch by three weeks. Asks: intros to fintech CFOs. Draft it.For Claude Code users: commands and an agent
Inside Claude Code, two of these jobs are also slash commands, which is faster when the input is already in the project folder. /prd writes a PRD into the repo from a feature name or an issue, and /scope-mvp reads an existing PRD or feature list from the folder and produces the cut. Both are Markdown files you drop into .claude/commands/.
The technical-cofounder agent is different in kind. It is a subagent, a specialist Claude delegates to with its own instructions and a clean context, built to answer the engineering questions a founder cannot judge alone: is this one service or two, should we buy or build the auth, what breaks first at ten times the load. Ask it before you commit an engineer to a direction, and keep its answers in the project for the engineer you eventually hire. The differences between skills, commands, and agents, and when each is the right shape, are in Skills vs Agents vs Commands.
Making them yours
All five are starting points. The fastest improvement is to add your own template under the skill's instructions: the PRD sections your team actually uses, the investor update format your lead wants, the interview question bank you always run. Edit the SKILL.md, re-zip, re-upload. The third time you find yourself correcting the output the same way, that correction belongs in the file. When you are ready to write one from scratch, Writing Your First Skill is the walkthrough, and the rest of the founder toolkit is at the founders hub.
Sources and further reading
Primary documentation used to verify this guide.
- Use skills in Claude — Anthropic
- What are skills? — Anthropic
- Extend Claude with skills (Claude Code) — Anthropic
Frequently asked questions
- Do I need Claude Code to use these skills?
- No. All five run on claude.ai as a ZIP upload, and in Cowork, because they are pure instructions: no scripts, no network calls, no repository. Claude Code users get the same skills plus two slash commands and an agent that only make sense inside a project folder.
- Which plans can upload skills?
- Anthropic's help center lists skills as available on Free, Pro, Max, Team, and Enterprise, provided code execution and file creation is enabled under Settings > Capabilities. Team and Enterprise owners must also enable Skills at the organization level.
- Does a skill uploaded to claude.ai appear in Claude Code?
- No. Each surface keeps its own copy. For Claude Code, put the same folder at .claude/skills/<name>/SKILL.md inside a project, or at ~/.claude/skills/<name>/ to make it available everywhere.
- Are these skills safe?
- They are plain Markdown with no bundled code, so the whole skill is the text you can read on its page before uploading. That is the habit to keep for any skill from anywhere: read the SKILL.md, and anything shipped beside it, before you install it.
Related
- Investor Update WriterDraft a monthly investor update from the metrics and notes you paste: a three-line TL;DR, a metrics table with month-over-month deltas computed only from the numbers you supplied, wins, misses stated with their numbers, explicit asks, and a runway note. Never fills in a figure you did not give. Use when the update is due, the raw numbers are in a spreadsheet export or a scratch doc, and you want a draft that is honest about the misses.
- Mvp Scope CutterCut a feature list or PRD down to a ruthless version one: a keep / cut / later table with a one-line reason per row, plus the single smallest thing you could build to test the riskiest assumption. Use when first-release scope keeps growing, when an AI app builder session has produced more features than you can validate, or before you commit money or engineering time to a build.
- Prd WriterTurn a founder's raw idea, voice-memo transcript, or scattered bullet points into a product requirements document with a fixed section order: problem, users, jobs-to-be-done, scope, non-goals, success metrics, open questions, and risks. Use when an idea needs to be written down in a form a cofounder, contractor, or AI coding agent can build from, and it is not yet a document.
- Claude Code for Non-Developers and Founders: The Complete 2026 GuideWhat Claude Code actually is in plain language, why non-developers use it, how permissions and CLAUDE.md work, and the first three tasks a founder should try.
- Technical CofounderUse this agent when a non-technical founder needs an app built by an AI app builder or coding agent reviewed for the problems that hurt founders: missing login and permission checks, secrets committed to the code, customer data visible to the wrong users, surprise cloud and API bills, vendor lock-in, no backups, and no tests. It explains each finding in plain language with a severity and the question to ask an engineer. Examples — 'look over what Lovable built before I launch', 'is this Supabase app safe for real customer data', 'what will bite me if I ship this Claude Code project'.
- What Are Claude Skills? The Complete GuideClaude Skills explained: what a SKILL.md is, how progressive disclosure keeps skills cheap, where they run, and how to install or write your own.
- How to Install Claude SkillsEvery way to install Claude skills: manual copy, the agentscamp CLI, GitHub repos, plugins, team distribution, and uploading to claude.ai.
- PRDTurn an idea, pasted notes, or a notes file into a structured PRD and write it to docs/prd.md, or print it when there is no project.