-
Notifications
You must be signed in to change notification settings - Fork 5
Home
Open-source AI Agent Skills for Claude β built by Taya Intelligence
| Skill | Type | What it does |
|---|---|---|
technical-pm |
Generative | Turns raw ideas into structured PRDs with AI/ML Product Lens built in |
prd-review |
Review | Audits PRD completeness, outputs an interactive HTML report |
technical-pm-guided |
Teaching | Socratic coaching β learn PM skills by doing, with real-time feedback |
Supported platforms: Claude Code Β· Claude.ai Β· Claude API Β· Markdown-compatible AI tools (Codex, etc.)
git clone https://github.com/TayaIntelligence/skills.git/technical-pm "Design a clinical trial monitoring tool for CRAs"
/prd-review ./path/to/prd.md
/technical-pm-guidedOpen Claude.ai, create a new conversation, paste the contents of skills/<skill-name>/SKILL.md at the top, then start chatting.
import anthropic
client = anthropic.Anthropic()
with open("skills/technical-pm/SKILL.md") as f:
skill = f.read()
client.messages.create(
model="claude-sonnet-4-5",
system=skill,
messages=[{"role": "user", "content": "Help me design a clinical data platform"}]
)8 workflows covered:
- Discovery & framing
- PRD / specs
- Decomposition
- Prioritization
- Estimation
- Metrics
- Risk
- Communication
AI/ML Product Lens included: eval set design, threshold selection, precision/recall tradeoffs, model iteration strategy.
6 review dimensions: Completeness Β· Clarity Β· Consistency Β· Executability Β· Measurability Β· Risk assessment
Verdict: π’ Ready / π‘ Conditional / π΄ Not Ready
Output: Self-contained HTML report you can share with your team.
Socratic-style coaching. Instead of doing the work for you, the agent asks guiding questions to help you produce PM artifacts yourself, then gives feedback on your output.
Each skill follows this convention:
skills/<skill-name>/
βββ SKILL.md # Main skill instructions (Markdown)
βββ README.md # Human-readable overview
βββ references/ # Lazy-loaded reference material
βββ examples/ # Usage examples
We welcome contributions.
- Fork the repo
- Create a branch
- Add or improve a skill (follow the structure above)
- Open a PR
Built by Taya Intelligence β AI Native CRO, part of Tigermed Β· Hangzhou, China