PM Workflows with Claude
From one-time setup to repeatable workflows — how to turn Claude Code into a persistent PM teammate using CLAUDE.md, parallel agents, and custom skills.
CLAUDE.md file in each project folder. Fifteen minutes of setup saves hours of repetition.The CLAUDE.md System
CLAUDE.md is a plain text file containing permanent instructions that Claude reads automatically every time you work in that folder. Think of it as giving Claude a project briefing once, then never having to repeat yourself.
Create the File
CLAUDE.md in your project root. This is a one-time 15-minute investment.Add Your Context
# Project: [Your Product Name]
## Product Context
[2-3 sentences: what it is, who it's for]
## Current Focus
[Current quarter/milestone you're working toward]
## Competitors
[Names and URLs of main competitors]
## How to Help Me
- When analyzing feedback, categorize as: Feature Request, Bug, UX Issue, Billing
- When writing PRDs, use our template in /templates/prd-template.md
- When comparing competitors, focus on: pricing, AI features, mobile experience
- Always write in [British/American] English
## What We Are NOT Building
[Hard constraints or strategic no-go areas]
Work Normally
This is the difference between Claude as a one-off tool and Claude as a persistent team member.
Workflow A: Monthly Competitive Review
- Create a
competitive-analysis/folder - Add
competitors.mdlisting each competitor and their URL - Add
analysis-template.mdwith sections: Pricing changes, New features, Messaging updates, Notable news - Add
CLAUDE.mdwith:
# Competitive Analysis
## Instructions
When I say "analyze competitors":
1. Visit each competitor website in competitors.md
2. Check their pricing page and changelog
3. Fill out the analysis template for each
4. Create a summary comparison table
5. Save everything in a folder named with today's date
Open terminal, navigate to the folder, type claude, and say:
analyze competitors
That’s it. Claude reads the instructions, processes each competitor, fills the template, and saves a dated report.
Time without Claude: 4 hours. Time with Claude Code: 10 minutes/month (after 15-minute one-time setup).
Workflow B: Batch User Interview Analysis
Prepare
/user-interviews/ folder. Any format works — TXT, MD, DOCX.Process
In Claude Code, say:
Process all files in /user-interviews using parallel agents.
For each transcript:
- Extract pain points
- Identify feature requests
- Note emotional moments (frustration, delight)
- Categorize themes
Combine findings into a summary with frequency counts.
Review
Claude processes multiple files simultaneously, then combines findings into a single synthesis document with frequency counts and theme categorization.
Time without Claude: 3 hours for 10 interviews. Time with Claude Code: 5 minutes.
Workflow C: PRD from Meeting Notes
Gather
Generate
Say:
Read all files in this folder.
Generate a PRD for the feature we discussed, using our template.
Flag any assumptions I should validate before engineering review.
Review
Advanced: Parallel Agents
| Scenario | Without Parallel | With Parallel |
|---|---|---|
| 15 interview transcripts | ~45 min (sequential) | ~5 min |
| 8 competitor analyses | ~30 min | ~5 min |
| 20 support ticket categories | ~20 min | ~3 min |
Advanced: Custom Sub-Agents (Triple-Lens Review)
Analyze a feature spec from three perspectives simultaneously:
Analyze this feature spec from three perspectives:
1. As an Engineer Agent: flag technical complexity and implementation risk
2. As a UX Agent: identify friction points and suggest improvements
3. As a Business Agent: evaluate market fit, pricing, competitive positioning
Present each perspective separately, then synthesize a unified recommendation.
This is powerful for pre-launch reviews, go/no-go decisions, investment cases, and architecture decision records.
Advanced: Reusable Skills (Custom Slash Commands)
Claude Code supports custom slash commands — shortcuts that trigger entire workflows:
| Skill | What It Does |
|---|---|
/prd | Generate PRD from folder contents |
/competitors | Run monthly competitive analysis |
/feedback | Process and categorize user feedback |
/sprint-summary | Generate sprint review from project files |
/stakeholder-update | Create executive summary from recent changes |
Skills turn multi-step workflows into one-command operations. Over time, you build a library of PM-specific automations that compound your productivity.