用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/qashsolutions/denali --skill procedure-identification命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | procedure-identification |
| description | Map plain English service descriptions to CPT procedure codes |
| version | 1.0.0 |
| triggers | ["user_mentions_procedure","user_mentions_test","user_mentions_scan","user_mentions_treatment"] |
This skill translates plain English service descriptions into CPT procedure codes for internal use. Codes are never shown to users.
Patients describe services in everyday language:
This skill maps their words to CPT codes needed for coverage checks.
Detect when users mention:
Many descriptions could map to multiple codes:
| User Says | Clarify |
|---|---|
| "scan" | MRI? CT? X-ray? PET? |
| "back scan" | Lumbar? Thoracic? Cervical? With contrast? |
| "physical therapy" | Initial eval? Follow-up? How many visits? |
| "injection" | What type? Where? |
| "surgery" | What procedure specifically? |
Use the CPT lookup tool (dev environment only):
// Example mapping
userPhrase: "MRI of my lower back"
clarifications: {
body_part: "lumbar spine",
contrast: "without"
}
→ CPT: 72148 (MRI lumbar spine without contrast)
Queue the successful mapping:
queueLearning('update_procedure_mapping', {
phrase: "MRI of my lower back",
code: "72148",
confidence_boost: 0.05
});
Use learned mappings when confidence is high:
| User Phrase | CPT | Description |
|---|---|---|
| "MRI of my back" | 72148 | MRI lumbar spine w/o contrast |
| "MRI of my knee" | 73721 | MRI knee w/o contrast |
| "CT scan of my head" | 70450 | CT head w/o contrast |
| "chest X-ray" | 71046 | Chest X-ray, 2 views |
| "mammogram" | 77067 | Screening mammography |
| User Phrase | CPT | Description |
|---|---|---|
| "physical therapy evaluation" | 97163 | PT eval, high complexity |
| "physical therapy session" | 97110 | Therapeutic exercises |
| "occupational therapy" | 97530 | Therapeutic activities |
| "speech therapy" | 92507 | Speech therapy |
| User Phrase | CPT | Description |
|---|---|---|
| "sleep study" | 95810 | Polysomnography |
| "home sleep test" | 95806 | Home sleep study |
| "CPAP titration" | 95811 | Polysomnography with CPAP |
| User Phrase | CPT | Description |
|---|---|---|
| "cortisone shot in my knee" | 20610 | Joint injection, large |
| "epidural for back pain" | 62322 | Lumbar epidural injection |
| "trigger point injection" | 20552 | Trigger point injection |
| User Phrase | CPT | Description |
|---|---|---|
| "knee replacement" | 27447 | Total knee arthroplasty |
| "hip replacement" | 27130 | Total hip arthroplasty |
| "cataract surgery" | 66984 | Cataract removal with IOL |
| "colonoscopy" | 45378 | Colonoscopy, diagnostic |
Some situations need CPT modifiers:
| Modifier | Meaning | Example |
|---|---|---|
| -RT | Right side | 73721-RT (MRI right knee) |
| -LT | Left side | 73721-LT (MRI left knee) |
| -50 | Bilateral | 73721-50 (MRI both knees) |
| -26 | Professional component | 72148-26 (interpretation only) |
| -TC | Technical component | 72148-TC (facility charge only) |
Help users understand differences:
User: "What's the difference between MRI and CT?"
Response: "Both are imaging tests, but they work differently:
- MRI uses magnets and is better for soft tissues like muscles, tendons, and the brain
- CT uses X-rays and is faster, better for bones and emergencies
Your doctor chose [X] because [reason based on their condition]."
Screening mammogram (77067): Routine, no symptoms
Diagnostic mammogram (77066): Following up on a finding
User: "The doctor wants her to get a scan for her back"
Assistant: "I can help figure out what Medicare needs for that scan.
Do you know what type of scan — is it an MRI, CT scan, or X-ray?"
User: "I think an MRI"
Assistant: "Good — MRIs give detailed pictures that can help see what's causing her symptoms.
Is the scan for her lower back, middle back, or upper back/neck area?"
User: "Lower back"
Assistant: [Internal: Maps to 72148 (MRI lumbar spine w/o contrast) or 72149 (with contrast)]
"Perfect — an MRI of the lower back. One more question: did they mention anything about using contrast dye, or is it just a regular MRI?"
User: "Just regular, no dye"
Assistant: [Internal: Confirms 72148]
"Got it — a lumbar spine MRI without contrast. Let me check what Medicare typically requires for this..."