@gonzih/skills-insurance 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 +51 -0
- package/install.js +15 -0
- package/package.json +34 -0
- package/skills/claim-summary/SKILL.md +27 -0
- package/skills/coverage-explainer/SKILL.md +27 -0
- package/skills/renewal-letter/SKILL.md +27 -0
- package/skills/underwriting-notes/SKILL.md +27 -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,51 @@
|
|
|
1
|
+
# skills-insurance
|
|
2
|
+
|
|
3
|
+
Claude Code skill suite for insurance agents, brokers, and adjusters. Four ready-to-use skills for the most common insurance workflows.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @gonzih/skills-insurance
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or install globally:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g @gonzih/skills-insurance
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Restart Claude Code after installing.
|
|
18
|
+
|
|
19
|
+
## Skills
|
|
20
|
+
|
|
21
|
+
### `/claim-summary`
|
|
22
|
+
Summarize an insurance claim: loss description, applicable coverage, reserve recommendation, and next steps.
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
/claim-summary [paste or describe the claim details]
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### `/coverage-explainer`
|
|
29
|
+
Explain a policy's coverage in plain language: what's covered, what's excluded, limits, deductibles, and real-world examples.
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
/coverage-explainer [paste policy language or describe the coverage section]
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### `/underwriting-notes`
|
|
36
|
+
Draft underwriting notes for a risk: risk profile, favorable factors, concerns, proposed terms, and conditions.
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
/underwriting-notes [describe the risk or paste submission details]
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### `/renewal-letter`
|
|
43
|
+
Write a policy renewal letter: coverage summary, changes from prior term, premium explanation, and renewal instructions.
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
/renewal-letter [provide policy details, any changes, and premium information]
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
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 = ['claim-summary', 'coverage-explainer', 'underwriting-notes', 'renewal-letter'];
|
|
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-insurance",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Claude Code skill suite for insurance agents, brokers, and adjusters",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "install.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"postinstall": "node install.js"
|
|
9
|
+
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"skills-insurance": "install.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"skills/",
|
|
15
|
+
"install.js",
|
|
16
|
+
"README.md",
|
|
17
|
+
"LICENSE"
|
|
18
|
+
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"claude",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"skills",
|
|
23
|
+
"insurance",
|
|
24
|
+
"claims",
|
|
25
|
+
"underwriting",
|
|
26
|
+
"coverage"
|
|
27
|
+
],
|
|
28
|
+
"author": "gonzih",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/gonzih/skills-insurance"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: claim-summary
|
|
3
|
+
description: Summarize an insurance claim including loss description, applicable coverage, reserve recommendation, and next steps.
|
|
4
|
+
triggers: ["summarize this claim", "claim summary", "review this claim"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Claim Summary
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Produces a structured summary of an insurance claim. It identifies the loss description and circumstances, maps the facts to applicable coverage, recommends a reserve amount, and outlines actionable next steps for the adjuster or examiner.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/claim-summary [paste or describe the claim details]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Gather claim facts
|
|
18
|
+
Extract the key facts: date of loss, claimant, policy number, type of loss, reported circumstances, and any supporting documentation provided.
|
|
19
|
+
|
|
20
|
+
### Step 2 — Map to coverage
|
|
21
|
+
Identify which coverage parts apply (e.g., dwelling, liability, auto physical damage, bodily injury), note any exclusions or conditions that may affect coverage, and flag any coverage questions requiring investigation.
|
|
22
|
+
|
|
23
|
+
### Step 3 — Reserve and next steps
|
|
24
|
+
Recommend an initial reserve based on the exposure described, then list the next steps: contacts to make, documents to obtain, inspections to schedule, and any referrals (SIU, legal, medical management).
|
|
25
|
+
|
|
26
|
+
## Example outputs
|
|
27
|
+
A structured report with sections: **Loss Description**, **Coverage Analysis**, **Reserve Recommendation**, and **Next Steps**, each with clear bullet points suitable for a claim file note.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: coverage-explainer
|
|
3
|
+
description: Explain a policy's coverage in plain language including what's covered, what's excluded, limits, deductibles, and examples.
|
|
4
|
+
triggers: ["explain this coverage", "what does this policy cover", "coverage explainer"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Coverage Explainer
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Translates dense policy language into plain English for agents, brokers, or insureds. It summarizes what is covered and what is excluded, highlights key limits and deductibles, and provides real-world examples to make the coverage tangible and easy to understand.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/coverage-explainer [paste policy language or describe the coverage section]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Parse the coverage grant
|
|
18
|
+
Identify the insuring agreement: what event or peril triggers coverage, who is covered, and what property or liability is protected.
|
|
19
|
+
|
|
20
|
+
### Step 2 — Summarize exclusions and conditions
|
|
21
|
+
List the major exclusions clearly, note any conditions the insured must satisfy (e.g., prompt notice, cooperation), and flag endorsements that modify the base coverage.
|
|
22
|
+
|
|
23
|
+
### Step 3 — Illustrate with examples
|
|
24
|
+
Provide two or three concrete examples showing when a claim would be covered, when it would be excluded, and how the deductible and limits would apply in each scenario.
|
|
25
|
+
|
|
26
|
+
## Example outputs
|
|
27
|
+
A plain-language brief with sections: **What's Covered**, **What's Excluded**, **Limits & Deductibles**, and **Examples**, written at a level appropriate for a policyholder conversation.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: renewal-letter
|
|
3
|
+
description: Write a policy renewal letter covering coverage summary, any changes, premium explanation, and renewal instructions.
|
|
4
|
+
triggers: ["write a renewal letter", "draft renewal notice", "renewal letter"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Renewal Letter
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Drafts a professional, client-ready policy renewal letter. It summarizes the renewing coverage, clearly explains any changes from the prior term, breaks down the premium, and provides the insured with simple renewal instructions and key contact information.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/renewal-letter [provide policy details, any changes, and premium information]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Summarize renewing coverage
|
|
18
|
+
Open with a warm introduction and provide a concise summary of the coverage being renewed: policy type, coverage lines, effective dates, and key limits.
|
|
19
|
+
|
|
20
|
+
### Step 2 — Highlight changes and premium
|
|
21
|
+
Clearly call out any changes from the prior term (coverage modifications, new endorsements, exclusions, limit adjustments), then explain the renewal premium and any factors driving an increase or decrease.
|
|
22
|
+
|
|
23
|
+
### Step 3 — Provide renewal instructions and next steps
|
|
24
|
+
Give the insured clear instructions for confirming the renewal, payment options and due dates, who to contact with questions, and any action items required before the renewal binds (e.g., signed applications, updated schedules).
|
|
25
|
+
|
|
26
|
+
## Example outputs
|
|
27
|
+
A polished, professional letter with a greeting, **Coverage Summary**, **Changes This Term**, **Your Renewal Premium**, and **Next Steps** sections, ready to send on agency or carrier letterhead.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: underwriting-notes
|
|
3
|
+
description: Draft underwriting notes for a risk including risk profile, favorable factors, concerns, proposed terms, and conditions.
|
|
4
|
+
triggers: ["draft underwriting notes", "underwriting memo", "write up this risk"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Underwriting Notes
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Produces professional underwriting notes for a submission or renewal. It synthesizes the risk profile into a structured memo covering favorable characteristics, material concerns, proposed terms, and any conditions or exclusions recommended before binding.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/underwriting-notes [describe the risk or paste submission details]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Summarize the risk profile
|
|
18
|
+
Capture the key risk characteristics: insured name, operation or property type, location, size (revenue, payroll, TIV, etc.), years in business, and prior loss history.
|
|
19
|
+
|
|
20
|
+
### Step 2 — Identify favorable factors and concerns
|
|
21
|
+
List the attributes that support writing the risk (e.g., experienced management, strong loss control, favorable loss history) alongside concerns that require attention or mitigation (e.g., CAT exposure, prior losses, hazardous operations).
|
|
22
|
+
|
|
23
|
+
### Step 3 — Propose terms and conditions
|
|
24
|
+
Recommend coverage terms, pricing direction, sublimits, deductibles, and any conditions, warranties, or exclusions needed to make the risk acceptable. Note any referrals or approvals required.
|
|
25
|
+
|
|
26
|
+
## Example outputs
|
|
27
|
+
A memo-style document with sections: **Risk Profile**, **Favorable Factors**, **Concerns**, **Proposed Terms & Conditions**, and **Recommendation**, formatted for inclusion in an underwriting file.
|