prior-auth-packet-builder
bởi openai
Xây dựng một bộ hồ sơ xin phê duyệt trước ngắn gọn từ các hồ sơ ca bệnh địa phương và tài liệu chính sách của bên thanh toán.
npx skills add https://github.com/openai/openai-agents-python --skill prior-auth-packet-builderPrior Auth Packet Builder
Use this skill when a case requires prior authorization review, referral validation, imaging review, or payer-specific policy checks.
Workflow
- Inspect
case/scenario.jsonandcase/transcript.txt. - Search
policies/for payer, prior auth, referral, imaging, and PPO guidance:- Run the preferred search and fallback as one shell command:
rg -n -i 'prior authorization|prior-auth|imaging|referral|billing|PPO|Blue Cross' policies || grep -RniE 'prior authorization|prior-auth|imaging|referral|billing|PPO|Blue Cross' policies. - An
rglauncher or bootstrap failure is not evidence that there are no policy matches.
- Run the preferred search and fallback as one shell command:
- Read only the most relevant policy files.
- Create
output/policy_findings.mdwith these exact headings:## Case summary## Matched policy files## Prior authorization## Referral## Missing informationCite each matched policy by its filename.
- Create
output/human_review_checklist.mdwith:- what a human reviewer should verify
- what to tell the patient
- what queue should own the case
- Call
finalize_policy_packetonly after both artifacts exist.
Rules
- Use targeted searches over broad file reads.
- Use the targeted
grep -RniEfallback only whenrgcannot complete the search. - Only cite policy files you actually inspected.
- Keep outputs concise and operational.
- The workflow is complete only when
finalize_policy_packetsucceeds. - If referral status is pending and prior auth is unclear, recommend human review.