Skip to content
Taya Intelligence edited this page Jul 4, 2026 · 6 revisions

🧬 Welcome to Taya Skills

Open-source AI Agent Skills for Claude β€” built by Taya Intelligence License Website


🧰 Skills Overview

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.)

πŸš€ Quick Start

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> `

Clone this wiki locally