guidewire-core-workflow-a

Featured

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".

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 A: Policy Lifecycle ## Overview The complete policy lifecycle in PolicyCenter: account creation, submission, quoting, binding, issuance, endorsements, and renewals via Cloud API. ## Policy Lifecycle States ``` Account -> Submission -> Quote -> Bind -> Issue -> In-Force | Endorse / Renew / Cancel ``` ## Instructions ### Step 1: Create Account ```typescript const account = await fetch(`${GW_PC}/account/v1/accounts`, { method: 'POST', headers, body: JSON.stringify({ data: { attributes: { accountHolderContact: { firstName: 'John', lastName: 'Smith', primaryAddress: { addressLine1: '123 Main St', city: 'Atlanta', state: 'GA', postalCode: '30301' }, dateOfBirth: '1985-03-15', }, producerCodes: [{ id: 'pc:100' }], }} }), }).then(r => r.json()); console.log(`Account: ${account.data.attributes.accountNumber}`); ``` ### Step 2: Create Submission ```typescript const submission = await fetch(`${GW_PC}/job/v1/submissions`, { method: 'POST', headers, body: JSON.stringify({ data: { attributes: { account: { id: account.data.id }, baseState: 'GA', effectiveDate: '2025-04-01', product: { code: 'PersonalAuto' }, producerCode: { id: 'pc:100' }, }} }), }).then(r => r.json()); ``` ### Step 3: Quote -> Bind -> Issue ```typescript // Quote the submission await fetch(`${GW_PC}/jo...

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