{
  "markdown": "![GitHub stars](https://img.shields.io/github/stars/phuryn/pm-skills)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow?style=flat-square)](https://github.com/phuryn/pm-skills/blob/main/LICENSE)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen?style=flat-square)](https://github.com/phuryn/pm-skills/blob/main/CONTRIBUTING.md)\n[![Tests](https://github.com/phuryn/pm-skills/actions/workflows/tests.yml/badge.svg)](https://github.com/phuryn/pm-skills/actions/workflows/tests.yml)\n[![Companion: pm-skills](https://img.shields.io/badge/companion-pm--brain-blue)](https://github.com/phuryn/pm-brain)\n[![Companion: burnstop](https://img.shields.io/badge/companion-burnstop-blue)](https://github.com/phuryn/burnstop)\n[![Companion: claude-usage](https://img.shields.io/badge/companion-claude--usage-blue)](https://github.com/phuryn/claude-usage)\n\n# PM Skills Marketplace: The AI Operating System for Better Product Decisions\n\n> 68 PM skills and 42 chained workflows across 9 plugins. Claude Code, Cowork, and more. From discovery to strategy, execution, launch, growth, and shipping AI-built code. \n\n![PM Skills marketplace: skills, commands, and all 9 plugins at a glance](.docs/images/plugins.png)\n\nDesigned for Claude Code and Cowork. Skills compatible with other AI assistants.\n\n## Start Here\n\nNew idea? → `/discover`  \nNeed strategic clarity? → `/strategy`  \nWriting a PRD? → `/write-prd`  \nPlanning a launch? → `/plan-launch`  \nDefining metrics? → `/north-star`\n\nIf this project helps you, ⭐ the repo.\n\n## Why PM Skills Marketplace?\n\nGeneric AI gives you text. PM Skills Marketplace gives you structure.\n\nEach skill encodes a proven PM framework — discovery, assumption mapping, prioritization, strategy — and walks you through it step by step. You get the rigor of Teresa Torres, Marty Cagan, and Alberto Savoia built into your daily workflow, not sitting on a bookshelf.\n\nThe result: better product decisions, not just faster documents.\n\n## How It Works (Skills, Commands, Plugins)\n\n![Example prompts: a skill and two commands (/write-prd, /ship-check) in action](.docs/images/examples.png)\n\n**Skills** are the building blocks of the marketplace. Each skill gives Claude domain knowledge, analytical frameworks, or a guided workflow for a specific PM task. Some skills also work as reusable foundations that multiple commands share. \n\nSkills are loaded automatically when relevant to the conversation — no explicit invocation needed. If needed (e.g., prioritizing skills over general knowledge), you can **force loading skills** with `/plugin-name:skill-name` or `/skill-name` (Claude will add the prefix).\n\n**Commands** are user-triggered workflows invoked with `/command-name`. They chain one or more skills into an end-to-end process. For example, `/discover` chains four skills together: brainstorm-ideas → identify-assumptions → prioritize-assumptions → brainstorm-experiments.\n\n**Plugins** group related skills and commands into installable packages. Each plugin covers a PM domain — discovery, strategy, execution, and so on. Installing the marketplace gives you all 9 plugins at once.\n\nCommands use skills. Some skills serve multiple commands. Some skills (like `prioritization-frameworks` or `opportunity-solution-tree`) are standalone references that Claude draws on whenever relevant — no command needed.\n\nCommands are designed to flow into each other, matching the PM workflow. After any command completes, it suggests relevant next commands — just follow the prompts.\n\n## Installation\n\n### Claude Cowork (recommended for non-developers)\n\n1. Open **Customize** (bottom-left)\n2. Go to **Browse plugins** → **Personal** → **+**\n3. Select **Add marketplace from GitHub**\n4. Enter: `phuryn/pm-skills`\n\nAll 9 plugins install automatically. You get both commands (`/discover`, `/strategy`, etc.) and skills.\n\n![Installing PM Skills in Claude Cowork](.docs/images/pm-skills-install.gif)\n\n### Claude Code (CLI)\n\n```bash\n# Step 1: Add the marketplace\nclaude plugin marketplace add phuryn/pm-skills\n\n# Step 2: Install individual plugins\nclaude plugin install pm-toolkit@pm-skills\nclaude plugin install pm-product-strategy@pm-skills\nclaude plugin install pm-product-discovery@pm-skills \nclaude plugin install pm-market-research@pm-skills \nclaude plugin install pm-data-analytics@pm-skills\nclaude plugin install pm-marketing-growth@pm-skills\nclaude plugin install pm-go-to-market@pm-skills\nclaude plugin install pm-execution@pm-skills\nclaude plugin install pm-ai-shipping@pm-skills\n```\n\n### Codex CLI (OpenAI)\n\nCodex reads the same plugin marketplace file as Claude Code, so you can install PM Skills natively — no conversion or file-copying needed:\n\n```bash\n# Step 1: Add the marketplace\ncodex plugin marketplace add phuryn/pm-skills\n\n# Step 2: Install the plugins you want\ncodex plugin add pm-toolkit@pm-skills\ncodex plugin add pm-product-strategy@pm-skills\ncodex plugin add pm-product-discovery@pm-skills\ncodex plugin add pm-market-research@pm-skills\ncodex plugin add pm-data-analytics@pm-skills\ncodex plugin add pm-marketing-growth@pm-skills\ncodex plugin add pm-go-to-market@pm-skills\ncodex plugin add pm-execution@pm-skills\ncodex plugin add pm-ai-shipping@pm-skills\n```\n\n**What you get:** every skill (the PM frameworks), available to Codex and invocable by name. Install whole plugins rather than cherry-picking individual skills — a workflow usually relies on several skills that ship together.\n\n**What's different from Claude Code:** the `/slash` commands (`/discover`, `/write-prd`, …) install but don't run as Codex slash commands — Codex plugins don't expose commands. To run a workflow, just describe the steps in plain language, for example:\n\n> Run product discovery on *[your idea]*: brainstorm options, map assumptions, prioritize the risky ones, then design experiments — pause between each step.\n\n**Optional — let Codex turn the workflows into skills.** Because the command files ship inside each installed plugin, you can ask Codex to convert the ones you use most:\n\n> Read the command files in the pm-execution plugin and create equivalent Codex skills for the workflows I use most often.\n\nThis is a best-effort, model-driven conversion (some Claude-specific command syntax won't translate), but it's a quick way to get the guided workflows on Codex without leaving the CLI.\n\n### Other AI assistants (skills only)\n\nThe `skills/*/SKILL.md` files follow the universal skill format and work with any tool that reads it. Commands (`/slash-commands`) are Claude-specific.\n\n| Tool | How to use | What works |\n|------|-----------|------------|\n| **Gemini CLI** | Copy skill folders to `.gemini/skills/` | Skills only |\n| **OpenCode** | Copy skill folders to `.opencode/skills/` | Skills only |\n| **Cursor** | Copy skill folders to `.cursor/skills/` | Skills only |\n| **Kiro** | Copy skill folders to `.kiro/skills/` | Skills only |\n\n```bash\n# Example: copy all skills for OpenCode (project-level)\nfor plugin in pm-*/; do\n  mkdir -p .opencode/skills/\n  cp -r \"$plugin/skills/\"* .opencode/skills/ 2>/dev/null\ndone\n\n# Example: copy all skills for Gemini CLI (global)\nfor plugin in pm-*/; do\n  cp -r \"$plugin/skills/\"* ~/.gemini/skills/ 2>/dev/null\ndone\n```\n\n---\n\n## Available Plugins\n\n<details>\n<summary><strong>1. pm-product-discovery</strong> — Ideation, experiments, assumption testing, OSTs, interviews (13 skills, 5 commands)</summary>\n\n**Skills (13):**\n\n- `brainstorm-ideas-existing` — Multi-perspective ideation for existing products (PM, Designer, Engineer)\n- `brainstorm-ideas-new` — Ideation for new products in initial discovery\n- `brainstorm-experiments-existing` — Design experiments to test assumptions for existing products\n- `brainstorm-experiments-new` — Design lean startup pretotypes for new products (Alberto Savoia)\n- `identify-assumptions-existing` — Identify risky assumptions across Value, Usability, Viability, and Feasibility\n- `identify-assumptions-new` — Identify risky assumptions across 8 risk categories including Go-to-Market, Strategy, and Team\n- `prioritize-assumptions` — Prioritize assumptions using an Impact × Risk matrix with experiment suggestions\n- `prioritize-features` — Prioritize a feature backlog based on impact, effort, risk, and strategic alignment\n- `analyze-feature-requests` — Analyze and categorize customer feature requests by theme and strategic fit\n- `opportunity-solution-tree` — Build an Opportunity Solution Tree (Teresa Torres) — outcome → opportunities → solutions → experiments\n- `interview-script` — Create a structured customer interview script with JTBD probing questions\n- `summarize-interview` — Summarize an interview transcript into JTBD, satisfaction signals, and action items\n- `metrics-dashboard` — Design a product metrics dashboard with North Star, input metrics, and alert thresholds\n\n**Commands (5):**\n\n- `/discover` — Full discovery cycle: ideation → assumption mapping → prioritization → experiment design\n- `/brainstorm` — Multi-perspective ideation (`ideas|experiments` × `existing|new`)\n- `/triage-requests` — Analyze and prioritize a batch of feature requests\n- `/interview` — Prepare an interview script or summarize a transcript (`prep|summarize`)\n- `/setup-metrics` — Design a product metrics dashboard\n\n**Examples:**\n\nSkills:\n- `What are the riskiest assumptions for our AI writing assistant idea?`\n- `Help me build an Opportunity Solution Tree for improving user activation`\n- `Prioritize these 12 feature requests from our enterprise customers [attach CSV]`\n\nCommands:\n- `/discover AI-powered meeting summarizer for remote teams`\n- `/brainstorm experiments existing — We need to reduce churn in our onboarding flow`\n- `/interview prep — We're interviewing enterprise buyers about their procurement workflow`\n\n</details>\n\n<details>\n<summary><strong>2. pm-product-strategy</strong> — Vision, business models, pricing, competitive landscape (12 skills, 5 commands)</summary>\n\nProduct strategy, vision, business models, pricing, and macro environment analysis. Covers the full strategic toolkit from vision crafting through competitive landscape scanning.\n\n**Skills (12):**\n\n- `product-strategy` — Comprehensive 9-section Product Strategy Canvas (vision → defensibility)\n- `startup-canvas` — Startup Canvas combining Product Strategy (9 sections) + Business Model — an alternative to BMC and Lean Canvas for new products\n- `product-vision` — Craft an inspiring, achievable, and emotional product vision\n- `value-proposition` — 6-part JTBD value proposition (Who, Why, What before, How, What after, Alternatives)\n- `lean-canvas` — Lean Canvas business model for startups and new products\n- `business-model` — Business Model Canvas with all 9 building blocks\n- `monetization-strategy` — Brainstorm 3–5 monetization strategies with validation experiments\n- `pricing-strategy` — Pricing models, competitive analysis, willingness-to-pay, and price elasticity\n- `swot-analysis` — SWOT analysis with actionable recommendations\n- `pestle-analysis` — Macro environment: Political, Economic, Social, Technological, Legal, Environmental\n- `porters-five-forces` — Competitive forces analysis (rivalry, suppliers, buyers, substitutes, new entrants)\n- `ansoff-matrix` — Growth strategy mapping across markets and products\n\n**Commands (5):**\n\n- `/strategy` — Create a complete 9-section Product Strategy Canvas\n- `/business-model` — Explore business models (`lean|full|startup|value-prop|all`)\n- `/value-proposition` — Design a value proposition using the 6-part JTBD template\n- `/market-scan` — Macro environment analysis combining SWOT + PESTLE + Porter's + Ansoff\n- `/pricing` — Design a pricing strategy with competitive analysis and experiments\n\n**Examples:**\n\nSkills:\n- `Compare Lean Canvas vs Business Model Canvas vs Startup Canvas for my marketplace startup`\n- `Design a value proposition for our AI writing assistant targeting non-native English speakers`\n- `Run a Porter's Five Forces analysis for the project management SaaS market`\n\nCommands:\n- `/strategy B2B project management tool for agencies`\n- `/business-model startup — AI writing tool for non-native English speakers`\n- `/value-proposition SaaS onboarding tool for enterprise customers`\n\n</details>\n\n<details>\n<summary><strong>3. pm-execution</strong> — PRDs, OKRs, roadmaps, sprints, retros, release notes, stakeholder management (16 skills, 11 commands)</summary>\n\nDay-to-day product management: PRDs, OKRs, roadmaps, sprints, retrospectives, release notes, pre-mortems, stakeholder management, user stories, and prioritization frameworks.\n\n**Skills (16):**\n\n- `create-prd` — Comprehensive 8-section PRD template\n- `brainstorm-okrs` — Team-level OKRs aligned with company objectives\n- `outcome-roadmap` — Transform a feature list into an outcome-focused roadmap\n- `sprint-plan` — Sprint planning with capacity estimation, story selection, and risk identification\n- `retro` — Structured sprint retrospective facilitation\n- `release-notes` — User-facing release notes from tickets, PRDs, or changelogs\n- `pre-mortem` — Risk analysis with Tigers/Paper Tigers/Elephants classification\n- `stakeholder-map` — Power × Interest grid with tailored communication plan\n- `summarize-meeting` — Meeting transcript → decisions + action items\n- `user-stories` — User stories following the 3 C's and INVEST criteria\n- `job-stories` — Job stories: When [situation], I want to [motivation], so I can [outcome]\n- `wwas` — Product backlog items in Why-What-Acceptance format\n- `test-scenarios` — Test scenarios: happy paths, edge cases, error handling\n- `dummy-dataset` — Realistic dummy datasets as CSV, JSON, SQL, or Python\n- `prioritization-frameworks` — Reference guide to 9 prioritization frameworks (Opportunity Score, ICE, RICE, MoSCoW, Kano, etc.)\n- `strategy-red-team` — Adversarial stress-test of a plan: surface load-bearing assumptions, name what would make each one fail, and rank by cheapest test\n\n**Commands (11):**\n\n- `/write-prd` — Create a PRD from a feature idea or problem statement\n- `/plan-okrs` — Brainstorm team-level OKRs\n- `/transform-roadmap` — Convert a feature-based roadmap into outcome-focused\n- `/sprint` — Sprint lifecycle (`plan|retro|release`)\n- `/pre-mortem` — Pre-mortem risk analysis on a PRD or launch plan\n- `/red-team-prd` — Adversarially stress-test a PRD, roadmap, or strategy and rank the riskiest assumptions by cheapest test\n- `/meeting-notes` — Summarize a meeting transcript into structured notes\n- `/stakeholder-map` — Map stakeholders and create a communication plan\n- `/write-stories` — Break features into backlog items (`user|job|wwa`)\n- `/test-scenarios` — Generate test scenarios from user stories\n- `/generate-data` — Create realistic dummy datasets\n\n**Examples:**\n\nSkills:\n- `Which prioritization framework should I use for a 50-item backlog?`\n- `Map our stakeholders for the platform migration project`\n- `What's the difference between Opportunity Score, ICE, and RICE?`\n\nCommands:\n- `/write-prd Smart notification system that reduces alert fatigue`\n- `/sprint retro — Here are the notes from our last sprint`\n- `/write-stories job — Break down the \"team dashboard\" feature into job stories`\n\n</details>\n\n<details>\n<summary><strong>4. pm-market-research</strong> — Personas, segmentation, journey maps, market sizing, competitor analysis (7 skills, 3 commands)</summary>\n\nUser research and competitive analysis: personas, segmentation, journey maps, market sizing, competitor analysis, and feedback analysis.\n\n**Skills (7):**\n\n- `user-personas` — Create refined user personas from research data\n- `market-segments` — Identify 3–5 customer segments with demographics, JTBD, and product fit\n- `user-segmentation` — Segment users from feedback data based on behavior, JTBD, and needs\n- `customer-journey-map` — End-to-end journey map with stages, touchpoints, emotions, and pain points\n- `market-sizing` — TAM, SAM, SOM with top-down and bottom-up approaches\n- `competitor-analysis` — Competitor strengths, weaknesses, and differentiation opportunities\n- `sentiment-analysis` — Sentiment analysis and theme extraction from user feedback\n\n**Commands (3):**\n\n- `/research-users` — Build personas, segment users, and map the customer journey\n- `/competitive-analysis` — Analyze the competitive landscape\n- `/analyze-feedback` — Sentiment analysis and segment insights from user feedback\n\n**Examples:**\n\nSkills:\n- `Estimate TAM/SAM/SOM for an AI code review tool in the US market`\n- `Create a customer journey map for our e-commerce checkout flow`\n- `Segment these survey respondents by behavior and needs [attach CSV]`\n\nCommands:\n- `/research-users We have interview data from 12 users of our fitness app`\n- `/competitive-analysis Figma competitors in the design tool space`\n- `/analyze-feedback Here's 200 NPS responses from Q4 [attach file]`\n\n</details>\n\n<details>\n<summary><strong>5. pm-data-analytics</strong> — SQL generation, cohort analysis, A/B test analysis (3 skills, 3 commands)</summary>\n\nData analytics for PMs: SQL query generation, cohort analysis, and A/B test analysis.\n\n**Skills (3):**\n\n- `sql-queries` — Generate SQL from natural language (BigQuery, PostgreSQL, MySQL)\n- `cohort-analysis` — Retention curves, feature adoption, and engagement trends by cohort\n- `ab-test-analysis` — Statistical significance, sample size validation, and ship/extend/stop recommendations\n\n**Commands (3):**\n\n- `/write-query` — Generate SQL queries from natural language\n- `/analyze-cohorts` — Cohort analysis on user engagement data\n- `/analyze-test` — Analyze A/B test results\n\n**Examples:**\n\nSkills:\n- `How large a sample do I need for 95% confidence with a 2% MDE?`\n- `What retention metrics should I track for a subscription app?`\n\nCommands:\n- `/write-query Show me monthly active users by country for Q4 2025 (BigQuery)`\n- `/analyze-test Here are the results from our checkout flow A/B test [attach CSV]`\n- `/analyze-cohorts Weekly retention for users who signed up in January vs February`\n\n</details>\n\n<details>\n<summary><strong>6. pm-go-to-market</strong> — Beachhead segments, ICPs, messaging, growth loops, GTM motions, battlecards (6 skills, 3 commands)</summary>\n\nGo-to-market strategy: beachhead segments, ideal customer profiles, messaging, growth loops, GTM motions, and competitive battlecards.\n\n**Skills (6):**\n\n- `gtm-strategy` — Full GTM strategy: channels, messaging, success metrics, and launch plan\n- `beachhead-segment` — Identify the first beachhead market segment\n- `ideal-customer-profile` — ICP with demographics, behaviors, JTBD, and needs\n- `growth-loops` — Design sustainable growth loops (flywheels)\n- `gtm-motions` — Evaluate GTM motions and tools (product-led, sales-led, etc.)\n- `competitive-battlecard` — Sales-ready battlecard with objection handling and win strategies\n\n**Commands (3):**\n\n- `/plan-launch` — Full GTM strategy from beachhead to launch plan\n- `/growth-strategy` — Design growth loops and evaluate GTM motions\n- `/battlecard` — Create a competitive battlecard\n\n**Examples:**\n\nSkills:\n- `What's the best beachhead segment for a developer productivity tool?`\n- `Design a growth loop for a B2B SaaS with a freemium tier`\n- `Define our ICP for an AI-powered HR screening platform`\n\nCommands:\n- `/plan-launch AI code review tool targeting mid-size engineering teams`\n- `/battlecard Our CRM vs Salesforce for the SMB market`\n- `/growth-strategy Two-sided marketplace for connecting freelancers with startups`\n\n</details>\n\n<details>\n<summary><strong>7. pm-marketing-growth</strong> — Marketing ideas, positioning, value props, naming, North Star metrics (5 skills, 2 commands)</summary>\n\nProduct marketing and growth: marketing ideas, positioning, value proposition statements, product naming, and North Star metrics.\n\n**Skills (5):**\n\n- `marketing-ideas` — Creative, cost-effective marketing ideas with channels and messaging\n- `positioning-ideas` — Product positioning differentiated from competitors\n- `value-prop-statements` — Value proposition statements for marketing, sales, and onboarding\n- `product-name` — Product name brainstorming aligned to brand values and audience\n- `north-star-metric` — North Star Metric + input metrics with business game classification\n\n**Commands (2):**\n\n- `/market-product` — Brainstorm marketing ideas, positioning, value props, and product names\n- `/north-star` — Define your North Star Metric and supporting input metrics\n\n**Examples:**\n\nSkills:\n- `Brainstorm 5 positioning angles that differentiate us from Notion`\n- `What's a good North Star Metric for a two-sided marketplace?`\n- `Generate value prop statements for our sales team's pitch deck`\n\nCommands:\n- `/market-product B2B analytics dashboard for e-commerce managers`\n- `/north-star Two-sided marketplace connecting freelancers with clients`\n\n</details>\n\n<details>\n<summary><strong>8. pm-toolkit</strong> — Resume review, legal documents, proofreading (4 skills, 5 commands)</summary>\n\nPM utilities beyond core product work: resume review, legal documents, and proofreading.\n\n**Skills (4):**\n\n- `review-resume` — PM resume review and tailoring against 10 best practices (XYZ+S formula, keywords, structure)\n- `draft-nda` — Non-Disclosure Agreement with jurisdiction-appropriate clauses\n- `privacy-policy` — Privacy policy covering GDPR/CCPA compliance\n- `grammar-check` — Grammar, logic, and flow checking with targeted fixes\n\n**Commands (5):**\n\n- `/review-resume` — Comprehensive PM resume review\n- `/tailor-resume` — Tailor a resume to a specific job description\n- `/draft-nda` — Draft an NDA\n- `/privacy-policy` — Draft a privacy policy\n- `/proofread` — Check grammar, logic, and flow\n\n**Examples:**\n\nSkills:\n- `Review my PM resume against best practices [attach PDF]`\n- `Check this product announcement for grammar and clarity`\n\nCommands:\n- `/review-resume [attach your PM resume]`\n- `/tailor-resume [attach resume + paste job description]`\n- `/proofread Here's the draft of our Q1 investor update`\n\n</details>\n\n<details>\n<summary><strong>9. pm-ai-shipping</strong> — AI Shipping Kit: document a vibe-coded app, audit security and performance, map test coverage, compile a shipping packet (2 skills, 5 commands)</summary>\n\nFor PMs and founders accountable for AI-built code. AI agents write code fast but leave no record of *intent* — what the system should do, who may do what, where the secrets live, which rules are actually verified. This kit restores reviewability: it documents the system, then audits the gap between what the docs say and what the code actually does — the class of bug generic scanners miss.\n\n**Skills (2):**\n\n- `shipping-artifacts` — The durable documentation set that makes an AI-built app reviewable: a core every app needs (architecture, user/permission flows, permissions, variables/secrets, test-coverage map) plus conditional docs added only when they apply (emails, cron, SEO, embedded agents/automation). Defines what each doc must capture and how a reviewer uses it\n- `intended-vs-implemented` — The method for finding the gap between what a system is documented to do and what the code actually does, with cited evidence on both sides\n\n**Commands (5):**\n\n- `/ship-check` — Turn a vibe-coded repo into a reviewer-ready shipping packet: document, wire agent context, run security and performance audits, map test coverage, and compile the results\n- `/document-app` — Reverse-engineer a codebase into the system documents reviewers and auditors need — a core set (architecture, flows, permissions, variables) plus conditional docs (emails, cron, SEO, automation) when they apply\n- `/derive-tests` — Turn documented intent into a test-coverage map: inventory the tests that exist today, separate them from proposed tests and unverified gaps, and recommend a green-before-merge CI gate\n- `/security-audit-static` — Static security audit: map trust boundaries, cross-reference documented intent, self-refute every finding, and report only evidence-backed risks\n- `/performance-audit-static` — Static performance audit: find N+1 queries and request waterfalls, over-fetching, missing indexes, and caching opportunities, ranked by effort and impact\n\n**Examples:**\n\nSkills:\n- `What documentation does my Supabase app need before someone can review it?`\n- `Where does what this code does diverge from what the docs say it should do?`\n\nCommands:\n- `/ship-check the payments service`\n- `/document-app — Reverse-engineer the system docs for this repo`\n- `/derive-tests — Which documented rules have no test yet?`\n- `/security-audit-static src/api`\n\n</details>\n\n---\n\n## About\n\nThis marketplace evolves with product practice and AI capabilities.\n\nSelected skills based on the work of:\n\n- Teresa Torres — [*Continuous Discovery Habits*](https://www.amazon.com/Continuous-Discovery-Habits-Discover-Products/dp/1736633309/)\n- Marty Cagan — [*INSPIRED*](https://www.amazon.com/INSPIRED-Create-Tech-Products-Customers/dp/1119387507/) and [*TRANSFORMED*](https://www.amazon.com/dp/1119697336/)\n- Alberto Savoia — [*The Right It*](https://www.amazon.com/Right-Many-Ideas-Yours-Succeed/dp/0062884654)\n- Dan Olsen — [*The Lean Product Playbook*](https://www.amazon.com/dp/1118960874/)\n- Roger L. Martin — [*Playing to Win*](https://www.amazon.com/Playing-Win-Expanded-Bonus-Articles/dp/B0F25SDYWV/)\n- Ash Maurya — [*Running Lean*](https://www.amazon.com/dp/B004J4XGN6/)\n- Strategyzer — [*Business Model Generation*](https://www.amazon.com/dp/0470876417/) and [*Value Proposition Design*](https://www.amazon.com/dp/1118968050/)\n- Christina Wodtke — [*Radical Focus*](https://www.amazon.com/Radical-Focus-Achieving-Important-Objectives/dp/0996006052)\n- Anthony W. Ulwick — [*Jobs to Be Done*](https://jobs-to-be-done-book.com/)\n- Alistair Croll & Benjamin Yoskovitz — [*Lean Analytics*](https://www.amazon.com/Lean-Analytics-Better-Startup-Faster/dp/1449335675/)\n- Sean Ellis — [*Hacking Growth*](https://www.amazon.com/Hacking-Growth-Fastest-Growing-Companies-Breakout/dp/045149721X/)\n- Maja Voje — [*Go-To-Market Strategist*](https://gtmstrategist.com/)\n\nCurated by Paweł Huryn from [The Product Compass Newsletter](https://www.productcompass.pm).\n\n## Compose with PM Brain\n\n![PM Brain composes with PM Skills](.docs/images/pm-brain-pm-skills.webp)\n\n[PM Brain](https://github.com/phuryn/pm-brain) a second brain for product managers. Plain markdown files in a folder on your laptop. Claude reads them before answering, writes to them after, sweeps them every Friday. No vector DB. No cloud. No agent memory tricks.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Known Issue on Windows\n\nIf your Cowork is unstable and can't start a VM ([claude-code/issues/27010](https://github.com/anthropics/claude-code/issues/27010)), try:\n\n```powershell\n$action = New-ScheduledTaskAction -Execute \"powershell.exe\" -Argument \"-WindowStyle Hidden -Command `\"if ((Get-Service CoworkVMService).Status -ne 'Running') { Start-Service CoworkVMService }`\"\"\n\n$trigger = New-ScheduledTaskTrigger -RepetitionInterval (New-TimeSpan -Minutes 1) -Once -At (Get-Date)\n\n$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries\n\nRegister-ScheduledTask -TaskName \"CoworkVMServiceMonitor\" `\n  -Action $action `\n  -Trigger $trigger `\n  -Settings $settings `\n  -RunLevel Highest `\n  -User \"SYSTEM\"\n```\n\nIt solves 90% of the issues on Windows.\nThe remaining 10%: open services.msc > start \"Claude\" service manually\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n",
  "bytes": 27350,
  "sha": "b24f5bf03cf416cf42e78a34b9f7aa7b44c1c83c55ca959c62b91a03761f5f7f",
  "repo_slug": "phuryn/pm-skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_phuryn_pm_skills_identify_assumptions_ne_6f86a486/readme"
}