# Send Med Info to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "med-info",
    "name": "Med Info",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/DuncanDobbins/med-info",
    "canonicalUrl": "https://clawhub.ai/DuncanDobbins/med-info",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/med-info",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=med-info",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "docs/PROBE_RESULTS.md",
      "docs/README.md",
      "docs/RESOURCES.md",
      "findings.md",
      "progress.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "med-info",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T08:27:21.351Z",
      "expiresAt": "2026-05-09T08:27:21.351Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=med-info",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=med-info",
        "contentDisposition": "attachment; filename=\"med-info-0.2.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "med-info"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/med-info"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/med-info",
    "downloadUrl": "https://openagent3.xyz/downloads/med-info",
    "agentUrl": "https://openagent3.xyz/skills/med-info/agent",
    "manifestUrl": "https://openagent3.xyz/skills/med-info/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/med-info/agent.md"
  }
}
```
## Documentation

### med-info

Medication answers you can cite.

med-info turns a drug name (or RxCUI, NDC, SPL set_id) into a label-backed summary with traceable identifiers and source links.

Use it when you want “show your work” medication information for notes, training, QA, internal docs, or agent workflows.

Not medical advice.

### What you get

Authoritative sources first: FDA labeling via openFDA + DailyMed, identifiers via RxNorm/RxClass.
Citations + traceability: RxCUI, NDC (product/package), SPL set_id, effective dates, and URLs.
The sections you actually need: boxed warning, indications, dosing, contraindications, warnings, interactions, adverse reactions.
Optional safety context (opt-in flags): recalls, shortages, FAERS aggregates, interactions, drug class, hazardous drug flag, REMS linkouts, Orange Book, Purple Book.
Automation friendly: --json output for pipelines.

### Privacy

Do not include PHI. Query by drug name or identifiers only.

### Quickstart

cd {baseDir}
python3 scripts/med_info.py "Eliquis" --brief

Common workflows:

# Only the sections you care about
python3 scripts/med_info.py "Eliquis" --sections contraindications,drug_interactions --brief

# Find keyword hits in label text (fast way to answer "does the label mention X?")
python3 scripts/med_info.py "Eliquis" --find ritonavir --find CYP3A4 --find P-gp --find-max 8

# Deterministic lookups by identifier (best for reproducibility)
python3 scripts/med_info.py "70518-4370-0"   # NDC (package)
python3 scripts/med_info.py "70518-4370"     # NDC (product)
python3 scripts/med_info.py "05999192-ebc6-4198-bd1e-f46abbfb4f8a"  # SPL set_id

### Disambiguation (when there are multiple labels)

python3 scripts/med_info.py "metformin" --candidates
python3 scripts/med_info.py "metformin" --candidates --pick 2 --brief
python3 scripts/med_info.py "metformin" --set-id "05999192-ebc6-4198-bd1e-f46abbfb4f8a"

### Optional add-ons

# Pharmacist-friendly output bundle
python3 scripts/med_info.py "Eliquis" --pharmacist --brief

# Safety signals and operational context (opt-in)
python3 scripts/med_info.py "metformin" --recalls --brief
python3 scripts/med_info.py "amphetamine" --shortages --brief
python3 scripts/med_info.py "Eliquis" --faers --faers-max 10
python3 scripts/med_info.py "Eliquis" --interactions --interactions-max 20
python3 scripts/med_info.py "Eliquis" --rxclass
python3 scripts/med_info.py "cyclophosphamide" --hazardous
python3 scripts/med_info.py "isotretinoin" --rems

# Reference datasets
python3 scripts/med_info.py "adalimumab" --purplebook
python3 scripts/med_info.py "metformin" --orangebook

# Chemistry (best-effort)
python3 scripts/med_info.py "ibuprofen" --chem

### Output shaping

python3 scripts/med_info.py "ibuprofen" --json
python3 scripts/med_info.py "Eliquis" --brief --sections all
python3 scripts/med_info.py "Eliquis" --print-url --brief   # prints queried URLs (api_key redacted)

### Sources (high level)

openFDA: drug labels, NDC directory, recalls/enforcement, shortages, FAERS
RxNorm / RxClass (RxNav): normalization and drug classes
DailyMed: SPL label history and media
MedlinePlus Connect: patient-friendly summaries (links)
Orange Book and Purple Book: best-effort context

### Safety notes

For clinical decisions, verify against the full official label.
Input is treated as untrusted, openFDA search strings are escaped to prevent query injection.

### Keys and rate limits

Works without any keys. Optionally:

OPENFDA_API_KEY: increases openFDA rate limits for heavy usage.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: DuncanDobbins
- Version: 0.2.3
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T08:27:21.351Z
- Expires at: 2026-05-09T08:27:21.351Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/med-info)
- [Send to Agent page](https://openagent3.xyz/skills/med-info/agent)
- [JSON manifest](https://openagent3.xyz/skills/med-info/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/med-info/agent.md)
- [Download page](https://openagent3.xyz/downloads/med-info)