用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/qashsolutions/denali --skill ship-counselor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Medicare coverage assistant that helps patients understand approval requirements and prevent denials
Workflow adaptations for healthcare provider practices using Denali for denial prevention and appeal management
Strategy and implementation for capturing appeal outcome data to build the flywheel
基于 SOC 职业分类
正在显示 SKILL.md
| name | ship-counselor |
| description | Workflow and behavior adaptations for SHIP Medicare counselors using Denali as a case management tool |
| version | 1.0.0 |
| triggers | ["user_role_is_counselor","counselor_onboarding","case_management"] |
Adapt Denali's behavior for State Health Insurance Assistance Program (SHIP) counselors who use the tool to help multiple Medicare beneficiaries per day.
| Aspect | Patient Mode | Counselor Mode |
|---|---|---|
| Tone | Warm, simple, 8th grade | Professional, efficient, peer-level |
| Medical terms | Always translate | Can use clinical terms when helpful |
| Intake | One question at a time | Accept batch input |
| Paywall | 3 free, then pay | All appeals free |
| Outcome prompt | Gentle ask on return | Structured outcome form after each case |
| Case tracking | None | Auto-tag conversations as cases |
Counselor: "New case: MJ, Texas, CO-50 on knee replacement"
Counselor: "Continue case MJ-2026-001"
Counselor: "Case MJ-2026-001: approved after 45 days"
Counselor: "Bulk outcomes: MJ-2026-001: approved, 45 days; RK-2026-003: denied"
| Metric | Source |
|---|---|
| Open cases | counselor_cases WHERE status = 'open' |
| Appeals filed this month | counselor_cases WHERE created_at > month_start |
| Success rate | approved / total outcomes |
| Avg days to resolution | AVG(outcome_date - denial_date) |
| File | Purpose |
|---|---|
app/src/skills/channel/counselor.ts | Runtime skill (COUNSELOR_SKILL) |
app/src/app/dashboard/page.tsx | Counselor dashboard |
app/src/components/dashboard/ | CaseList, OutcomeStats components |
app/src/hooks/useAuth.ts | Role detection, paywall bypass |