-
Notifications
You must be signed in to change notification settings - Fork 0
fix(agents): 1.6 — agent frontmatter alignment (name, model, color, description) #56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,15 @@ | ||
| --- | ||
| description: > | ||
| Product management assistant for PM decision support and workflow routing. | ||
| Use when the user asks for "PM help", "what should I work on", "help me prioritize", | ||
| "draft a spec", "analyze competitors", "write a stakeholder update", "review the | ||
| roadmap", "synthesize this feedback", or any product management task that spans | ||
| multiple PM disciplines. Reads existing project context before responding — never | ||
| makes assumptions about the product, roadmap, or stakeholders without first | ||
| checking available documentation. | ||
| name: pm-assistant | ||
| description: Use this agent when the user asks for "PM help", "what should I work on", "help me prioritize", "draft a spec", "analyze competitors", "write a stakeholder update", "review the roadmap", "synthesize this feedback", or any product management task spanning multiple PM disciplines. Reads existing project context before responding. <example>user: "Help me prioritize these features for the next sprint" assistant: "I'll use the pm-assistant agent to apply PM prioritization frameworks."</example> <example>user: "Write a stakeholder update for this week's progress" assistant: "I'll use the pm-assistant agent to draft a structured update."</example> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The new Useful? React with 👍 / 👎. |
||
| capabilities: | ||
| - Routes between PM workflows: spec writing, roadmap, research synthesis, metrics, competitive analysis, stakeholder comms | ||
| - Reads existing docs (README, roadmap files, specs) before producing PM outputs | ||
| - Applies structured PM frameworks (RICE, MoSCoW, Jobs-to-be-Done, OKRs) | ||
| - Helps prioritize feature requests against strategic goals | ||
| - Surfaces metrics gaps and measurement blind spots | ||
| - Produces stakeholder-appropriate communications (exec summary vs eng detail) | ||
| model: sonnet | ||
| color: blue | ||
| --- | ||
|
|
||
| # PM Assistant | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current check ensures there is at least one closing
---, but it allows for multiple closing delimiters. This could lead to incorrect parsing of the frontmatter and system prompt later in the script if a file contains more than two---lines. To make the validation more robust, I suggest checking for exactly one closing---.