원클릭으로
betterness-lab-results
Lab result management — approve, update biomarkers, update metadata, upload.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Lab result management — approve, update biomarkers, update metadata, upload.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Browse and search available lab tests with prices and included markers.
Search the Betterness knowledge library — files and videos via OpenSearch full-text search.
Install, uninstall, and manage Betterness MCP server integrations for AI clients (Claude, Cursor, Windsurf).
Manage authentication — OAuth login, API key login, logout, and verify identity.
Read, update, and explore the user's health profile questionnaire (sections, questions, answers).
Shared reference: auth, global flags, output formats, and security rules for the Betterness CLI.
| name | betterness-lab-results |
| version | 1.0.0 |
| description | Lab result management — approve, update biomarkers, update metadata, upload. |
| metadata | {"category":"service","requires":{"bins":["betterness"]}} |
PREREQUISITE: Read
../betterness-shared/SKILL.mdfor auth, global flags, and security rules.
betterness lab-results <command> [flags]
lab-results update-statusUpdate lab result status: approve, rollback, or reprocess.
betterness lab-results update-status --result-id abc-123 --action APPROVE --json
betterness lab-results update-status --result-id abc-123 --action ROLLBACK --json
betterness lab-results update-status --result-id abc-123 --action REPROCESS --json
| Option | Description |
|---|---|
--result-id <id> | Required. Lab result external ID |
--action <action> | Required. APPROVE, ROLLBACK, or REPROCESS |
lab-results update-biomarkerUpdate or delete a biomarker value within an uploaded lab result.
# Update a biomarker value
betterness lab-results update-biomarker --biomarker-id bm-456 --result 5.2 --unit "mg/dL" --json
# Delete a biomarker
betterness lab-results update-biomarker --biomarker-id bm-456 --action DELETE --json
| Option | Description |
|---|---|
--biomarker-id <id> | Required. Biomarker external ID |
--action <action> | Set to DELETE to remove the biomarker |
--name <name> | Biomarker name |
--result <value> | Value (e.g. '5.2', '120') |
--unit <unit> | Unit (e.g. 'mg/dL', 'ng/mL') |
--min-range <n> | Minimum range value |
--max-range <n> | Maximum range value |
lab-results update-metadataUpdate metadata of an uploaded lab result (patient info and test details).
betterness lab-results update-metadata --result-id abc-123 --patient-name "Jane Doe" --lab-name "Quest" --json
| Option | Description |
|---|---|
--result-id <id> | Required. Lab result external ID |
--patient-name <name> | Patient name |
--patient-sex <sex> | MALE or FEMALE |
--dob <date> | Date of birth |
--lab-name <name> | Lab name |
--ordering-physician <name> | Ordering physician |
--date-collected <date> | Date collected (ISO-8601) |
--fasting | Mark as fasting test |
lab-results uploadUpload a lab result PDF for processing. The CLI handles the multipart upload directly.
betterness lab-results upload --file ./my-lab-results.pdf --json
betterness lab-results upload --file /home/user/bloodwork-2025-03.pdf --json
| Option | Description |
|---|---|
--file <path> | Required. Path to the PDF file |
upload to submit a lab result PDF, then update-status --action APPROVE to finalize it so biomarkers appear in searches.