Design armored CAR-T cells with cytokine payloads and resistance mechanisms.
fhir-developer-skill
维护者 FreedomIntelligence · 最近更新 2026年4月1日
FHIR API development guide for building healthcare endpoints. Use when: (1) Creating FHIR REST endpoints (Patient, Observation, Encounter, Condition, MedicationRequest), (2) Validating FHIR resources and returning proper HTTP status codes and error responses, (3) Implementing SMART on FHIR authorization and OAuth scopes, (4) Working with Bundles, transactions, batch operations, or search pagination. Covers FHIR R4 r….
原始来源
FreedomIntelligence/OpenClaw-Medical-Skills
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/fhir-developer-skill
- 维护者
- FreedomIntelligence
- 许可
- MIT
- 最近更新
- 2026年4月1日
技能摘要
来自 SKILL.md 的关键信息
核心说明
- Only validate fields ,支持 cardinality starting ,支持 "1" as required。
- Common mistake:Making subject 或 period required on Encounter. They are 0..1 (optional)。
- Invalid enum values must return 422 Unprocessable Entity。
原始文档
SKILL.md 摘录
HTTP Status Codes
| Code | When to Use |
|---|---|
200 OK | Successful read, update, or search |
201 Created | Successful create (include Location header) |
204 No Content | Successful delete |
400 Bad Request | Malformed JSON, wrong resourceType |
401 Unauthorized | Missing, expired, revoked, or malformed token (RFC 6750) |
403 Forbidden | Valid token but insufficient scopes |
404 Not Found | Resource doesn't exist |
412 Precondition Failed | If-Match ETag mismatch (NOT 400!) |
422 Unprocessable Entity | Missing required fields, invalid enum values, business rule violations |
Required Fields by Resource (FHIR R4)
| Resource | Required Fields | Everything Else |
|---|---|---|
| Patient | (none) | All optional |
| Observation | status, code | Optional |
| Encounter | status, class | Optional (including subject, period) |
| Condition | subject | Optional (including code, clinicalStatus) |
| MedicationRequest | status, intent, medication[x], subject | Optional |
| Medication | (none) | All optional |
| Bundle | type | Optional |
Observation.status
registered | preliminary | final | amended | corrected | cancelled | entered-in-error | unknown
适用场景
- 适合在:(1) Creating FHIR REST endpoints (Patient,Observation,Encounter,Condition,MedicationRequest),(2) Validating FHIR resources 、 returning proper HTTP status codes 、 error responses,(3) Implementing SMART on FHIR authorization 、 OAuth scopes,(4) Working ,支持 Bundles,transactions,batch operations,或 search pagination时使用。
不适用场景
- Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。
相关技能
相关技能
arxiv-search
Search arXiv physics, math, and computer science preprints using natural language queries. Powered by Valyu semantic sea…
Autonomous oncology research agent: literature mining, trial matching, biomarker analysis, and treatment hypothesis gene…
Preprocesses cell-free DNA sequencing data including adapter trimming, alignment optimized for short fragments, and UMI-…