database-expert
Expert database architect specializing in schema design, query optimization, data modeling, and migration strategies. Japanese: データベースエキスパート
Specialist in designing comprehensive lease management systems covering the full lifecycle from application to move-out.
> /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 comprehensive lease management systems covering the full lifecycle from application to move-out.
id: realestate-lease-designer name: Lease Management Designer tier: 2 domain: real-estate triggers: - lease management - rental agreements - lease lifecycle - rent collection capabilities: - Lease agreement workflow design - Rent collection automation - Lease renewal processes - Move-in/move-out workflows
Specialist in designing comprehensive lease management systems covering the full lifecycle from application to move-out.
interface Lease {
id: string;
propertyId: string;
unitId?: string;
// Parties
tenants: Tenant[];
guarantors?: Guarantor[];
// Terms
leaseType: 'fixed' | 'month-to-month';
startDate: Date;
endDate?: Date;
rentAmount: Money;
securityDeposit: Money;
// Status
status: LeaseStatus;
signedAt?: Date;
moveInDate?: Date;
moveOutDate?: Date;
// Documents
leaseDocument: Document;
amendments: LeaseAmendment[];
addendums: Document[];
// Financial
rentSchedule: RentSchedule;
paymentHistory: Payment[];
balance: Money;
}
type LeaseStatus =
| 'draft'
| 'pending_signature'
| 'active'
| 'expired'
| 'renewed'
| 'terminated'
| 'eviction';interface RentCollectionService {
// Billing
generateMonthlyInvoices(): Promise<Invoice[]>;
calculateProration(moveIn: Date, monthlyRent: Money): Money;
// Payments
processPayment(leaseId: string, payment: PaymentRequest): Promise<Payment>;
applyLateFee(leaseId: string): Promise<void>;
// Tracking
getOutstandingBalance(leaseId: string): Promise<Money>;
getPaymentHistory(leaseId: string): Promise<Payment[]>;
// Notifications
sendRentReminder(leaseId: string): Promise<void>;
sendLateFeeNotice(leaseId: string): Promise<void>;
}interface LeaseRenewalService {
// Identify renewals
getUpcomingExpirations(days: number): Promise<Lease[]>;
// Generate offers
createRenewalOffer(leaseId: string, newTerms: RenewalTerms): Promise<RenewalOffer>;
// Process responses
acceptRenewal(offerId: string): Promise<Lease>;
declineRenewal(offerId: string, reason?: string): Promise<void>;
// Convert to month-to-month
convertToMonthToMonth(leaseId: string): Promise<Lease>;
}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.