prior-auth-packet-builder
作成者: openai
ローカルの症例ファイルと支払者ポリシー文書から簡潔な事前承認パケットを作成します。
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.