Agent skill
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".
Install this agent skill to your Project
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/guidewire-pack/skills/guidewire-core-workflow-a
SKILL.md
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 |
|---|---|---|
Cannot quote |
Missing coverages/vehicles | Add required data before quoting |
UW hold |
Underwriting referral | Process UW approval in PolicyCenter |
Rating error |
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.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?