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](https://img.shields.io/badge/License-MIT-10B981?style=flat-square)](https://github.com/TayaIntelligence/skills/blob/main/LICENSE)
[![Website](https://img.shields.io/badge/🌐_yiya--ai.com-059669?style=flat-square)](https://www.yiya-ai.com)

---

## 🧰 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

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

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:

  1. Discovery & framing
  2. PRD / specs
  3. Decomposition
  4. Prioritization
  5. Estimation
  6. Metrics
  7. Risk
  8. 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.

  1. Fork the repo
  2. Create a branch
  3. Add or improve a skill (follow the structure above)
  4. Open a PR

πŸ“„ License

[MIT](https://github.com/TayaIntelligence/skills/blob/main/LICENSE)


Built by Taya Intelligence β€” AI Native CRO, part of Tigermed Β· Hangzhou, China

```

Clone this wiki locally