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.
25 lines
1.4 KiB
Markdown
25 lines
1.4 KiB
Markdown
# Skills Used by This Agent
|
|
|
|
The PM Stakeholder Communications Agent uses these skills from the main library, selecting one based on the audience:
|
|
|
|
| Skill | Used for audience | What it produces |
|
|
|---|---|---|
|
|
| [`executive-update`](../../../skills/executive-update/) | executive | Direct, decision-focused update for internal leadership |
|
|
| [`investor-update`](../../../skills/investor-update/) | investor | Metrics-led update with honest framing of wins and challenges |
|
|
| [`stakeholder-update`](../../../skills/stakeholder-update/) | stakeholder | Practical, operationally-focused update for cross-functional teams |
|
|
| [`board-deck-narrative`](../../../skills/board-deck-narrative/) | board | Strategic narrative with supporting evidence for board pre-reads |
|
|
|
|
The agent reads your `--audience` flag and routes to the appropriate skill. You don't need to choose the skill yourself.
|
|
|
|
## Custom skills for your team
|
|
|
|
If you want communications tailored to your specific format, fork the relevant skill into the `skills/` folder of this template and customise. Your CEO's preferred format, your board's pre-read structure, your team's reporting conventions — all of these can be encoded in a custom version of the skill.
|
|
|
|
```bash
|
|
cd templates/pm-stakeholder-comms-agent/skills/investor-update
|
|
rm SKILL.md
|
|
cp /path/to/your/team/custom-investor-update.md ./SKILL.md
|
|
```
|
|
|
|
The agent will use the local version automatically.
|