Claude-code-plugins-plus-skills guidewire-core-workflow-a
install
source · Clone the upstream repo
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/saas-packs/guidewire-pack/skills/guidewire-core-workflow-a" ~/.claude/skills/jeremylongshore-claude-code-plugins-plus-skills-guidewire-core-workflow-a && rm -rf "$T"
manifest:
plugins/saas-packs/guidewire-pack/skills/guidewire-core-workflow-a/SKILL.mdsource 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
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
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
// Quote the submission await fetch(`${GW_PC}/job/v1/submissions/${submission.data.id}/quote`, { method: 'POST', headers }); // Bind await fetch(`${GW_PC}/job/v1/submissions/${submission.data.id}/bind`, { method: 'POST', headers }); // Issue await fetch(`${GW_PC}/job/v1/submissions/${submission.data.id}/issue`, { method: 'POST', headers }); console.log('Policy issued successfully');
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Missing coverages/vehicles | Add required data before quoting |
| Underwriting referral | Process UW approval in PolicyCenter |
| Rate table issue | Check product configuration |
For detailed Gosu and API examples, see: implementation guide
Resources
Next Steps
For claims processing, see
guidewire-core-workflow-b.