@gonzih/skills-dental 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +69 -0
- package/install.js +15 -0
- package/package.json +34 -0
- package/skills/consent-form-draft/SKILL.md +33 -0
- package/skills/insurance-narrative/SKILL.md +33 -0
- package/skills/patient-recall-letter/SKILL.md +33 -0
- package/skills/treatment-plan-explainer/SKILL.md +33 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 gonzih
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# skills-dental
|
|
2
|
+
|
|
3
|
+
Claude Code skill suite for dentists, dental hygienists, and practice managers.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @gonzih/skills-dental
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or install globally:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g @gonzih/skills-dental
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Then restart Claude Code.
|
|
18
|
+
|
|
19
|
+
## Skills
|
|
20
|
+
|
|
21
|
+
### `/treatment-plan-explainer`
|
|
22
|
+
Explain a dental treatment plan in patient-friendly language. Covers what's needed, why, the sequence, cost overview, and what to expect at each appointment.
|
|
23
|
+
|
|
24
|
+
**Usage:**
|
|
25
|
+
```
|
|
26
|
+
/treatment-plan-explainer D3 #14 needs crown due to cracked cusp, D1 #18-19 composite restorations, periodontal scaling full mouth
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
### `/patient-recall-letter`
|
|
32
|
+
Write a warm recall or reactivation letter for patients overdue for a visit. Friendly tone, benefit-focused copy, and a clear call to action to schedule.
|
|
33
|
+
|
|
34
|
+
**Usage:**
|
|
35
|
+
```
|
|
36
|
+
/patient-recall-letter Patient: Jane Smith, last seen 18 months ago, due for hygiene + perio follow-up
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
### `/insurance-narrative`
|
|
42
|
+
Write a clinical narrative for a dental insurance pre-authorization. Includes diagnosis, clinical findings, medical necessity argument, and CDT code summary.
|
|
43
|
+
|
|
44
|
+
**Usage:**
|
|
45
|
+
```
|
|
46
|
+
/insurance-narrative Tooth #30, D2740 crown, recurrent decay under existing restoration, radiographic evidence of decay to DEJ, CDT D2740
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
### `/consent-form-draft`
|
|
52
|
+
Draft an informed consent form for a dental procedure. Covers procedure description, material risks, alternatives (including no treatment), and a patient signature block.
|
|
53
|
+
|
|
54
|
+
**Usage:**
|
|
55
|
+
```
|
|
56
|
+
/consent-form-draft Surgical extraction #17 impacted mandibular third molar with IV sedation
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## Notes
|
|
62
|
+
|
|
63
|
+
- All skill outputs are drafts. Clinical and legal review is required before patient use.
|
|
64
|
+
- Insurance narratives should be reviewed by the treating provider before submission.
|
|
65
|
+
- Consent forms must be reviewed by an attorney licensed in your jurisdiction before clinical use.
|
|
66
|
+
|
|
67
|
+
## License
|
|
68
|
+
|
|
69
|
+
MIT
|
package/install.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { copyFileSync, mkdirSync, existsSync } from 'fs';
|
|
3
|
+
import { join } from 'path';
|
|
4
|
+
import { homedir } from 'os';
|
|
5
|
+
|
|
6
|
+
const skillsDir = join(homedir(), '.claude', 'skills');
|
|
7
|
+
const skills = ['treatment-plan-explainer', 'patient-recall-letter', 'insurance-narrative', 'consent-form-draft'];
|
|
8
|
+
|
|
9
|
+
for (const skill of skills) {
|
|
10
|
+
const dest = join(skillsDir, skill);
|
|
11
|
+
if (!existsSync(dest)) mkdirSync(dest, { recursive: true });
|
|
12
|
+
copyFileSync(new URL(`./skills/${skill}/SKILL.md`, import.meta.url).pathname, join(dest, 'SKILL.md'));
|
|
13
|
+
console.log(`✓ Installed /${skill}`);
|
|
14
|
+
}
|
|
15
|
+
console.log('\nSkills installed! Restart Claude Code to use them.');
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gonzih/skills-dental",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Claude Code skill suite for dentists, dental hygienists, and practice managers",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "install.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"skills-dental": "install.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"postinstall": "node install.js"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"claude-code",
|
|
15
|
+
"claude-code-skills",
|
|
16
|
+
"dental",
|
|
17
|
+
"dentistry",
|
|
18
|
+
"treatment-plan",
|
|
19
|
+
"insurance-narrative",
|
|
20
|
+
"patient-recall",
|
|
21
|
+
"informed-consent"
|
|
22
|
+
],
|
|
23
|
+
"author": "gonzih",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=18"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"skills/",
|
|
30
|
+
"install.js",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE"
|
|
33
|
+
]
|
|
34
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: consent-form-draft
|
|
3
|
+
description: Drafts an informed consent form for a dental procedure covering procedure description, risks, alternatives, and patient acknowledgment.
|
|
4
|
+
triggers: ["consent form", "informed consent dental", "draft consent", "patient consent form"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Consent Form Draft
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Generates a complete informed consent form for a specified dental procedure. The form covers a plain-language description of the procedure, material risks and complications, available alternatives (including no treatment), and a patient acknowledgment and signature block. Output is suitable as a starting draft for attorney or compliance review before clinical use.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/consent-form-draft [procedure name, any specific risks or patient factors to highlight]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Identify the procedure
|
|
18
|
+
Determine the procedure type (e.g., extraction, implant placement, root canal, periodontal surgery, sedation, orthodontic treatment). Identify whether the consent covers a single visit or an ongoing treatment phase.
|
|
19
|
+
|
|
20
|
+
### Step 2 — Write the procedure description
|
|
21
|
+
Describe the procedure in clear, patient-readable language (6th–8th grade reading level). Explain what will be done, in what area of the mouth, and approximately how long it takes. Avoid unnecessary clinical jargon; define terms when used.
|
|
22
|
+
|
|
23
|
+
### Step 3 — List risks and potential complications
|
|
24
|
+
Enumerate material risks specific to the procedure: common risks (e.g., soreness, swelling), less common but serious risks (e.g., nerve involvement, sinus communication, implant failure), and risks of anesthesia or sedation if applicable. Include a statement that no guarantee of outcome is made.
|
|
25
|
+
|
|
26
|
+
### Step 4 — Present alternatives
|
|
27
|
+
List clinically reasonable alternatives to the proposed treatment, including the alternative of no treatment and its likely consequences. The patient must understand they have a choice.
|
|
28
|
+
|
|
29
|
+
### Step 5 — Acknowledgment and signature block
|
|
30
|
+
Draft a patient acknowledgment section confirming they have read the form, had the opportunity to ask questions, understand the information, and consent voluntarily. Include fields for: patient name (print), patient signature, date, guardian name/signature (if minor), and provider/witness signature.
|
|
31
|
+
|
|
32
|
+
## Example outputs
|
|
33
|
+
A 400–600 word form with a practice name placeholder header, numbered sections, a risks checklist, an alternatives paragraph, and a formatted signature block. Includes a disclaimer that the form is a template requiring professional and legal review before use.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: insurance-narrative
|
|
3
|
+
description: Writes a clinical narrative for a dental insurance pre-authorization including diagnosis, clinical findings, medical necessity, and CDT codes.
|
|
4
|
+
triggers: ["insurance narrative", "pre-auth narrative", "prior authorization dental", "clinical narrative insurance"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Insurance Narrative
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Generates a concise, clinically accurate narrative letter for dental insurance pre-authorization requests. It documents the diagnosis, relevant clinical findings, why the proposed treatment is medically necessary, and references the appropriate CDT codes. Written in the formal, objective language payers expect.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/insurance-narrative [procedure, tooth number(s), diagnosis, clinical findings, CDT code(s), any prior treatment history]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Collect clinical data
|
|
18
|
+
Extract or prompt for: patient age/gender (optional), tooth number(s) and surface(s), diagnosis (e.g., recurrent decay, irreversible pulpitis, periodontal disease stage/grade), clinical findings (pocket depths, bleeding on probing, radiographic findings, symptoms), CDT code(s) being submitted, and any prior treatment attempted.
|
|
19
|
+
|
|
20
|
+
### Step 2 — State the diagnosis clearly
|
|
21
|
+
Open with a direct clinical statement: tooth number, diagnosis, and duration or progression. Reference objective findings (radiographic evidence, probing depths, vitality test results) that support the diagnosis.
|
|
22
|
+
|
|
23
|
+
### Step 3 — Describe clinical findings
|
|
24
|
+
List relevant objective data in a structured format. Use clinical terminology appropriate for a dental reviewer. Include radiographic findings (periapical pathology, bone loss percentage, caries depth), periodontal measurements, or other supporting data.
|
|
25
|
+
|
|
26
|
+
### Step 4 — Establish medical necessity
|
|
27
|
+
Explain why the proposed treatment is the appropriate, necessary course of action. Address why less invasive alternatives are not indicated. Reference clinical guidelines where applicable (AAE, AAP, ADA).
|
|
28
|
+
|
|
29
|
+
### Step 5 — CDT code summary and closing
|
|
30
|
+
List each CDT code with a one-line description and the tooth/surface it applies to. Close with the treating provider's name and credentials placeholder and a request for expedited review if urgent.
|
|
31
|
+
|
|
32
|
+
## Example outputs
|
|
33
|
+
A formal 250–400 word narrative on practice letterhead (placeholder), structured with labeled sections: Diagnosis, Clinical Findings, Medical Necessity, Proposed Treatment, and Provider Attestation.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: patient-recall-letter
|
|
3
|
+
description: Writes a warm, personalized patient recall or reactivation letter explaining why they're overdue, what the appointment will cover, and making it easy to schedule.
|
|
4
|
+
triggers: ["recall letter", "reactivation letter", "patient overdue letter", "bring patient back"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Patient Recall Letter
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Generates a warm, professional recall or reactivation letter for patients who are overdue for a hygiene visit or have not been seen in an extended period. The letter explains why regular care matters, what the appointment will include, and provides a clear, easy call-to-action to schedule. Tone is friendly and caring — never guilt-inducing.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/patient-recall-letter [patient name, time since last visit, any relevant notes e.g. "needs perio follow-up"]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Gather context
|
|
18
|
+
Identify the patient's name, time elapsed since last visit, the type of recall (routine hygiene, perio maintenance, incomplete treatment, post-op check), and any personal details to include (e.g., treatment previously discussed).
|
|
19
|
+
|
|
20
|
+
### Step 2 — Open with warmth
|
|
21
|
+
Begin with a friendly greeting that acknowledges the patient by name and expresses genuine care. Reference how long it has been without making them feel judged.
|
|
22
|
+
|
|
23
|
+
### Step 3 — Explain why it matters
|
|
24
|
+
In 2–3 sentences, remind the patient why regular dental visits are important for their specific situation. Keep it benefit-focused ("catch small issues early") rather than fear-based.
|
|
25
|
+
|
|
26
|
+
### Step 4 — Describe what the visit will include
|
|
27
|
+
Briefly outline what their appointment will cover: exam, cleaning, X-rays if due, any follow-up items. This reduces anxiety by setting clear expectations.
|
|
28
|
+
|
|
29
|
+
### Step 5 — Clear call to action
|
|
30
|
+
End with a single, frictionless CTA: phone number, online booking link placeholder, or reply-to-this-letter option. Offer flexible scheduling. Close warmly with the practice name and provider signature block.
|
|
31
|
+
|
|
32
|
+
## Example outputs
|
|
33
|
+
A 200–300 word letter with a subject line, personalized greeting, 3–4 short paragraphs, and a bolded scheduling CTA. Suitable for print mail or email with minimal edits.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: treatment-plan-explainer
|
|
3
|
+
description: Explains a dental treatment plan in clear, patient-friendly language covering what's needed, why, sequence, cost overview, and what to expect.
|
|
4
|
+
triggers: ["explain treatment plan", "patient-friendly treatment", "help patient understand treatment"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Treatment Plan Explainer
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Takes a clinical dental treatment plan and rewrites it in plain language a patient can understand. It covers what procedures are recommended, why each is necessary, the recommended sequence, a general cost overview, and what the patient should expect before, during, and after treatment.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/treatment-plan-explainer [paste or describe the treatment plan]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Parse the treatment plan
|
|
18
|
+
Identify all procedures listed (CDT codes or plain descriptions), the tooth or area involved, and any urgency notes. Group related procedures (e.g., extractions, restorations, periodontal treatment).
|
|
19
|
+
|
|
20
|
+
### Step 2 — Translate to patient language
|
|
21
|
+
Rewrite each procedure in everyday English. Avoid jargon; when a clinical term is necessary, define it in parentheses. Explain *why* each procedure is recommended and what happens if it is deferred.
|
|
22
|
+
|
|
23
|
+
### Step 3 — Sequence and prioritize
|
|
24
|
+
Present procedures in the order they will be performed. Briefly explain why that order matters (e.g., "We address the infection first so your mouth is healthy before placing the crown").
|
|
25
|
+
|
|
26
|
+
### Step 4 — Cost and insurance overview
|
|
27
|
+
Provide a plain-language summary of estimated costs, insurance coverage concepts (if applicable), and any payment options to mention. Use ranges rather than exact figures unless specifics are provided.
|
|
28
|
+
|
|
29
|
+
### Step 5 — What to expect
|
|
30
|
+
For each major procedure, add a short "what to expect" note: preparation steps, what happens chairside, recovery time, and any post-op instructions to anticipate.
|
|
31
|
+
|
|
32
|
+
## Example outputs
|
|
33
|
+
A friendly, section-by-section breakdown titled "Your Personalized Treatment Plan" with headers for each procedure, a numbered sequence, a cost summary box, and a "Questions to ask your dentist" section at the end.
|