guidewire-core-workflow-b

Featured

Execute Guidewire claims workflow in ClaimCenter: FNOL, investigation, reserves, and settlement. Trigger: "claimcenter workflow", "create claim", "FNOL", "claim settlement", "process claim".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Guidewire Core Workflow B: Claims Processing ## Overview Claims lifecycle in ClaimCenter: First Notice of Loss (FNOL), investigation, reserve setting, payment processing, and settlement. ## Claims Lifecycle ``` FNOL -> Investigation -> Reserve -> Payment -> Settlement -> Close ``` ## Instructions ### Step 1: Create Claim (FNOL) ```typescript const claim = await fetch(`${GW_CC}/claim/v1/claims`, { method: 'POST', headers, body: JSON.stringify({ data: { attributes: { lossDate: '2025-03-15T14:30:00Z', lossCause: { code: 'vehcollision' }, lossType: { code: 'AUTO' }, policyNumber: 'PA-000001', description: 'Rear-end collision at intersection', reporter: { firstName: 'John', lastName: 'Smith', primaryPhone: { phoneNumber: '555-0100' }, }, }} }), }).then(r => r.json()); console.log(`Claim created: ${claim.data.attributes.claimNumber}`); ``` ### Step 2: Set Reserves ```typescript await fetch(`${GW_CC}/claim/v1/claims/${claimId}/reserves`, { method: 'POST', headers, body: JSON.stringify({ data: { attributes: { reserveAmount: { amount: 5000, currency: 'usd' }, costType: { code: 'claimcost' }, costCategory: { code: 'body' }, }} }), }); ``` ### Step 3: Create Payment ```typescript await fetch(`${GW_CC}/claim/v1/claims/${claimId}/payments`, { method: 'POST', headers, body: JSON.stringify({ data: { attributes: { paymentType: { code: 'partial' }, amount: {...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

guidewire-core-workflow-a

Execute Guidewire primary workflow: Policy lifecycle in PolicyCenter. Use when implementing quoting, binding, issuing, endorsing, or renewing policies. Trigger: "policycenter workflow", "create policy", "bind submission", "issue policy".

2,266 Updated today
jeremylongshore
AI & Automation Listed

claims-workflow

Analyze insurance claims workflow systems for intake optimization, adjudication rules, subrogation, litigation management, and settlement analytics. Use when: 'audit claims process', 'review FNOL workflow', 'evaluate claims automation', 'check subrogation recovery', 'assess claims fraud detection', 'optimize claims cycle time', 'review Guidewire ClaimCenter setup'.

4 Updated today
tinh2
AI & Automation Featured

guidewire-hello-world

Execute first API calls to Guidewire PolicyCenter, ClaimCenter, and BillingCenter. Use when testing connectivity, exploring Cloud API structure, or learning REST patterns. Trigger: "guidewire hello world", "first guidewire call", "test policycenter api".

2,266 Updated today
jeremylongshore
AI & Automation Featured

guidewire-observability

Monitor Guidewire InsuranceSuite: logging, metrics, tracing, and alerting via GCC. Trigger: "guidewire observability", "observability".

2,266 Updated today
jeremylongshore
AI & Automation Solid

warranty-claims-processor

Streamlined warranty claim validation and processing skill improving customer satisfaction and reducing processing time

1,034 Updated today
a5c-ai