用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/qashsolutions/denali --skill coverage-check命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | coverage-check |
| description | Search Medicare NCDs and LCDs to determine coverage requirements |
| version | 1.0.0 |
| triggers | ["diagnosis_and_procedure_identified","user_asks_if_covered","user_mentions_denial"] |
This skill searches Medicare's National Coverage Determinations (NCDs) and Local Coverage Determinations (LCDs) to find coverage requirements for a diagnosis + procedure combination.
Determine:
Before searching, ensure you have:
searchNCD({
procedure_code: "72148",
diagnosis_code: "M54.5"
});
NCDs apply nationwide and take precedence.
searchLCD({
procedure_code: "72148",
diagnosis_code: "M54.5",
state: "CA",
contractor: "Noridian" // MAC for that region
});
LCDs vary by Medicare Administrative Contractor (MAC).
For drugs/biologics, check the Self-Administered Drug exclusion list:
checkSAD({
hcpcs_code: "J1234"
});
Parse the policy to find:
If needed, search PubMed for clinical evidence:
searchPubMed({
condition: "low back pain",
intervention: "MRI",
outcome: "diagnosis"
});
Service is covered when criteria are met:
"Medicare covers lumbar MRI (72148) for low back pain (M54.5) when:
- Pain persists for 6+ weeks despite conservative treatment
- Neurological symptoms are present (weakness, numbness)
- Red flag symptoms warrant urgent imaging"
Service is covered but has limitations:
"Medicare covers physical therapy with the following limits:
- Initial evaluation once per episode of care
- Up to 12 visits before additional documentation required
- Must show functional improvement"
Service is excluded:
"Medicare does not cover:
- Routine screening MRI without symptoms
- Cosmetic procedures
- Experimental treatments"
No NCD/LCD exists — coverage at contractor discretion:
"There's no specific Medicare policy for this combination.
Coverage will be determined based on general medical necessity criteria."
Extract what the doctor must document:
| Requirement Type | Example |
|---|---|
| Duration | "Symptoms present for X weeks" |
| Severity | "Pain level X/10 affecting daily activities" |
| Failed treatments | "Tried PT, NSAIDs, injections without relief" |
| Clinical findings | "Neurological exam showed X" |
| Functional impact | "Unable to perform X activities" |
When citing policies, include:
NCD 220.6 - Positron Emission Tomography (PET) Scans
Effective: January 1, 2023
Contractor: National (all MACs)
LCD L35047 - MRI of the Spine
Effective: October 1, 2023
Contractor: Noridian (CA, NV, etc.)
Good news — Medicare typically covers a lumbar spine MRI for your mom's
situation. Based on her symptoms (back pain with leg involvement for 3 months),
here's what the doctor needs to document:
**Required Documentation:**
□ Pain duration: 6+ weeks (she has 3 months ✓)
□ Radiating symptoms: Pain or numbness in leg ✓
□ Failed conservative treatment: PT, medication, or home exercises
□ Neurological findings: Noted on physical exam
**Policy Reference:** LCD L35047 (Noridian)
The key thing Medicare wants to see is that she's tried simpler treatments
first. Has she done any physical therapy or taken medication for this?
Medicare can cover this MRI, but they'll want to see that other treatments
were tried first. This is called "conservative treatment" — things like:
- Physical therapy (usually 4-6 weeks)
- Anti-inflammatory medication
- Home exercises
Has your mom tried any of these?
I looked into this carefully, and unfortunately Medicare doesn't typically
cover [service] for [reason].
Here's why: [explanation in plain English]
However, there may be some alternatives:
- [Alternative 1]
- [Alternative 2]
Would you like me to check coverage for any of these instead?
There's no specific Medicare policy I could find for this exact combination.
That doesn't mean it's not covered — it means the Medicare contractor will
decide based on general medical necessity.
The doctor should document:
- Why this service is needed
- What symptoms or findings support it
- What they expect it to show or accomplish
Note: Medicare updated their policy on this in [date]. The new requirements
include [changes]. Make sure the doctor's documentation reflects the
current criteria.
Coverage for this can vary by location. In [state], the local Medicare
contractor ([MAC name]) requires:
- [Requirement 1]
- [Requirement 2]
If she's being seen in a different state, the requirements might be
slightly different.
User: "Will Medicare cover her MRI?"
Assistant: [Has: M54.41 (lumbago with sciatica), 72148 (lumbar MRI), CA location]
[Searches: NCD for 72148 — none found] [Searches: LCD L35047 for 72148 + M54.41 in CA]
"I checked Medicare's coverage policies for a lumbar MRI with her diagnosis.
Good news: Medicare typically covers this when certain criteria are met.
Here's what the doctor needs to document:
The main thing I'd want to confirm: has she tried any physical therapy or medication for this? That's usually what Medicare wants to see before approving imaging."