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.
28 lines
1.4 KiB
Markdown
28 lines
1.4 KiB
Markdown
# Skills Used by This Agent
|
|
|
|
The PM Launch Agent uses these skills from the main pm-claude-skills library:
|
|
|
|
| Skill | What it does | Used in step |
|
|
|---|---|---|
|
|
| [`go-to-market`](../../../skills/go-to-market/) | Generates the launch plan with positioning, messaging pillars, and key benefits | Step 3 |
|
|
| [`content-calendar`](../../../skills/content-calendar/) | Builds the scheduled content calendar across channels | Step 5 |
|
|
| [`media-pitch`](../../../skills/media-pitch/) | Drafts the media/journalist pitch (major and flagship launches only) | Step 6 |
|
|
| [`email-campaign`](../../../skills/email-campaign/) | Reference for email format used by the Channel Drafter subagent | (reference) |
|
|
| [`launch-checklist`](../../../skills/launch-checklist/) | Generates the phase-by-phase launch task checklist | Step 8 |
|
|
|
|
## How skills are referenced
|
|
|
|
This agent 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.
|
|
|
|
## Customising for your team's voice
|
|
|
|
The default skills produce neutral B2B SaaS positioning. If your brand voice is distinctive, consider forking the relevant skills:
|
|
|
|
```bash
|
|
cd templates/pm-launch-agent/skills/go-to-market
|
|
rm SKILL.md
|
|
cp /path/to/your/team/custom-go-to-market.md ./SKILL.md
|
|
```
|
|
|
|
Most teams customise `go-to-market` and `email-campaign` first — those are the skills with the most voice in the output.
|