-
Notifications
You must be signed in to change notification settings - Fork 5
Home
Taya Intelligence edited this page Jul 4, 2026
·
6 revisions
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
In Claude Code
/technical-pm "Design a clinical trial monitoring tool for CRAs"
/prd-review ./path/to/prd.md
/technical-pm-guided
In [Claude.ai](https://claude.ai/)
Open Claude.ai, create a new conversation, paste the contents of skills/<skill-name>/SKILL.md at the top, then start chatting.
Via API
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"}]
)
π Skills in Detail
technical-pm
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.
prd-review
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.
technical-pm-guided
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.
π Skill Structure
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
π€ Contributing
We welcome contributions.
Fork the repo
Create a branch
Add or improve a skill (follow the structure above)
Open a PR
π License
[MIT](https://github.com/TayaIntelligence/skills/blob/main/LICENSE)
<div align="center">
Built by Taya Intelligence β AI Native CRO, part of Tigermed Β· Hangzhou, China
</div> `