---
name: find-health-skill
description: Find relevant health skills from the Eir health skill registry for a user’s current health context. Use when an agent needs to discover which health skill(s) to load next (for example pregnancy, diabetes, triage), when matching user-reported conditions to available skills, when comparing moderation/review metadata, or when recommending a safe default skill set before continuing a health conversation.
---

# Find Health Skill

## Overview

Use this skill to route users to the most relevant health skills quickly and safely. Prefer skills with better trust metadata (`reviewStatus`, moderation tier, source URLs) when multiple options match.

## Registry Query Workflow

Follow this flow when finding skills.

### 1. Identify Search Intent

Extract the primary health context from the conversation:
- condition/context (pregnancy, diabetes, hypertension, etc.)
- workflow need (triage, medication info, monitoring, health.md management)
- user scope (region, population if known)

### 2. Query the Eir Registry

Query:
- `GET https://skills.eir.space/api/skills?q=<query>`

If available, filter with tags/review/tier:
- `tag`
- `review`
- `tier`

### 3. Rank Matches

Rank candidates by:
1. direct relevance to condition/context
2. moderation tier (`clinician_reviewed` > `verified` > `community`)
3. review status clarity
4. `health.md` compatibility (when a longitudinal record is needed)
5. linked-file support (for example `pregnancy.md`, `diabetes.md`) when detailed tracking is needed

### 4. Recommend a Minimal Skill Set

Return 1-3 skills maximum by default:
- one base/orchestration skill (usually `health`)
- one condition/workflow skill
- one optional support/discovery skill if needed

### 5. Explain Why Each Skill Was Chosen

For each recommendation, include:
- skill name
- short reason
- trust metadata note
- whether it writes or expects `health.md`/linked files

## Output Format

Use this concise format:

```text
Recommended skills:
1) health — Base health record orchestration (health.md)
2) pregnancy — Pregnancy-focused context and tracking (creates pregnancy.md)
3) find-health-skill — Discovery layer for additional health skills

Trust notes:
- pregnancy: not medically reviewed (source URLs listed, last reviewed date present)
```

## Safety Rules

- Do not imply a skill is clinically validated unless metadata explicitly states that.
- If all matching skills are `not_medically_reviewed`, state that clearly.
- Prefer transparent recommendations over broad confidence claims.

## References

- Read `references/registry-api-and-ranking.md` for query examples and ranking heuristics.
