database-expert
Expert database architect specializing in schema design, query optimization, data modeling, and migration strategies. Japanese: データベースエキスパート
Specialist in designing insurance policy management systems including product configuration, rating engines, and lifecycle management.
> /plugin marketplace add Fujigo-Software/f5-framework-claudeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Specialist in designing insurance policy management systems including product configuration, rating engines, and lifecycle management.
id: insurance-policy-designer name: Insurance Policy Designer tier: 2 domain: insurance triggers: - policy management - insurance products - premium calculation - policy lifecycle capabilities: - Policy product configuration - Premium rating engine design - Policy lifecycle management - Endorsement and renewal workflows
Specialist in designing insurance policy management systems including product configuration, rating engines, and lifecycle management.
interface InsurancePolicy {
id: string;
policyNumber: string;
productId: string;
lineOfBusiness: LineOfBusiness;
// Parties
insured: Insured;
additionalInsureds?: Insured[];
agent?: Agent;
// Terms
effectiveDate: Date;
expirationDate: Date;
policyTerm: PolicyTerm;
status: PolicyStatus;
// Coverage
coverages: Coverage[];
limits: PolicyLimits;
deductibles: Deductible[];
endorsements: Endorsement[];
// Premium
premium: {
annual: Money;
installment?: Money;
billingPlan: BillingPlan;
paymentSchedule: PaymentSchedule[];
};
// Risk
riskItems: RiskItem[];
underwritingInfo: UnderwritingInfo;
// Documents
documents: PolicyDocument[];
forms: PolicyForm[];
}
type LineOfBusiness =
| 'personal_auto'
| 'homeowners'
| 'renters'
| 'life'
| 'health'
| 'commercial_property'
| 'general_liability'
| 'workers_comp';
type PolicyStatus =
| 'quote'
| 'application'
| 'bound'
| 'active'
| 'pending_cancellation'
| 'cancelled'
| 'expired'
| 'renewed';interface RatingEngine {
// Rate calculation
calculatePremium(
product: InsuranceProduct,
riskData: RiskData,
effectiveDate: Date
): Promise<PremiumCalculation>;
// Factor application
applyRatingFactors(
basePremium: Money,
factors: RatingFactor[]
): Money;
// Discount calculation
applyDiscounts(
premium: Money,
eligibleDiscounts: Discount[]
): DiscountedPremium;
// Territory rating
getTerrritoryFactor(
location: Address,
lineOfBusiness: LineOfBusiness
): number;
}
interface RatingFactor {
factorType: string;
value: number;
description: string;
effectiveDate: Date;
expirationDate?: Date;
}
interface PremiumCalculation {
basePremium: Money;
factors: AppliedFactor[];
discounts: AppliedDiscount[];
fees: Fee[];
taxes: Tax[];
totalPremium: Money;
breakdown: PremiumBreakdown;
}interface PolicyLifecycleService {
// Quote
createQuote(request: QuoteRequest): Promise<Quote>;
updateQuote(quoteId: string, changes: Partial<QuoteRequest>): Promise<Quote>;
// Application
submitApplication(quoteId: string, application: ApplicationData): Promise<Application>;
// Binding
bindPolicy(applicationId: string): Promise<Policy>;
issuePolicy(policyId: string): Promise<PolicyDocument[]>;
// Changes
processEndorsement(policyId: string, endorsement: EndorsementRequest): Promise<Policy>;
processRenewal(policyId: string, renewalTerms?: RenewalTerms): Promise<Policy>;
// Cancellation
cancelPolicy(policyId: string, reason: CancellationReason): Promise<Policy>;
reinstate(policyId: string): Promise<Policy>;
}Repo: Fujigo-Software/f5-framework-claude
Expert database architect specializing in schema design, query optimization, data modeling, and migration strategies. Japanese: データベースエキスパート
Expert DevOps architect specializing in CI/CD pipelines, infrastructure as code, containerization, and monitoring. Japanese: DevOpsアーキテクト
Mobile app architecture specialist. iOS, Android, React Native, Flutter.
Backend architecture specialist. Microservices, APIs, databases.
Frontend architecture specialist. React, Vue, Angular, Next.js.