Install
$ agentstack add skill-elisaterumi-ai-clinical-agent-skills-entity-extraction ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
When extracting clinical entities, follow these steps:
1. Identify relevant entities
Extract clinically meaningful entities, including:
- Diseases and diagnoses
- Symptoms and signs
- Medications (including dosage if available)
- Procedures and treatments
- Laboratory tests and results
Only extract entities that are explicitly mentioned in the text.
Do not infer or hallucinate information.
2. Classify each entity
Assign each entity one of the following types:
- DISEASE
- SYMPTOM
- MEDICATION
- PROCEDURE
- LAB_RESULT
If an entity does not clearly belong to one of these categories, do not include it.
3. Preserve original text spans
- Extract entities exactly as they appear in the text
- Do not normalize, translate, or modify wording
- Maintain original casing and phrasing
4. Avoid duplication
- If the same entity appears multiple times, extract it once
- Preserve distinct entities separately
5. Output format
Return the result as a JSON object:
{
"entities": [
{
"text": "...",
"type": "..."
}
]
}
6. Constraints
- Do not include explanations
- Do not include entities outside the defined categories
- Do not infer missing clinical information
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: elisaterumi-ai
- Source: elisaterumi-ai/clinical-agent-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.