59c4510055
This release adds three new agent templates to the library, bringing the total to four. New templates: - PM Discovery Agent: synthesises customer interviews from Notion or Google Drive, identifies cross-interview themes, scores assumption confidence, generates follow-up questions - PM Stakeholder Comms Agent: detects audience type (executive/investor/stakeholder/board), pulls activity from Linear/Jira/Drive, drafts in audience-appropriate format - PM Launch Agent: end-to-end launch coordination with channel-specific content, calendar, success metrics, and launch checklist Each template follows the established pattern: README, AGENT.md, orchestrate.sh, 2 subagents, connectors with example configs, examples, smoke test. Total file count: 37 new files across 3 templates. Updated README to position library as 4-template collection. Bumped marketplace.json from v8.0.0 to v9.0.0.
27 lines
1.3 KiB
Markdown
27 lines
1.3 KiB
Markdown
# Skills Used by This Agent
|
|
|
|
The PM Discovery Agent uses these skills from the main pm-claude-skills library:
|
|
|
|
| Skill | What it does | Used in step |
|
|
|---|---|---|
|
|
| [`discovery-interview-guide`](../../../skills/discovery-interview-guide/) | Reference for what good discovery interviews look like (used by agent for context) | (reference) |
|
|
| [`user-interview-synthesis`](../../../skills/user-interview-synthesis/) | Drafts the structured discovery report from synthesised themes | Step 5 |
|
|
| [`job-story-mapper`](../../../skills/job-story-mapper/) | Converts themes into Jobs To Be Done format | Step 3 |
|
|
| [`assumption-mapper`](../../../skills/assumption-mapper/) | Reference for how to think about assumptions vs. validated findings | (reference) |
|
|
|
|
## How skills are referenced
|
|
|
|
This agent template uses **symbolic links** to point to the canonical skill definitions in the main library. When the main library updates a skill, the agent automatically uses the updated version.
|
|
|
|
## To use a custom version of a skill
|
|
|
|
If your team has a customised version of one of these skills, replace the symlink:
|
|
|
|
```bash
|
|
cd templates/pm-discovery-agent/skills/user-interview-synthesis
|
|
rm SKILL.md
|
|
cp /path/to/your/custom-synthesis.md ./SKILL.md
|
|
```
|
|
|
|
The agent will pick up the local version automatically.
|