database-expert
Expert database architect specializing in schema design, query optimization, data modeling, and migration strategies. Japanese: データベースエキスパート
Specialist in designing tenant-facing portals that streamline communication, maintenance, and self-service operations.
> /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 tenant-facing portals that streamline communication, maintenance, and self-service operations.
id: realestate-tenant-designer name: Tenant Portal Designer tier: 2 domain: real-estate triggers: - tenant portal - maintenance requests - tenant communication - rental applications capabilities: - Tenant self-service portal design - Maintenance request workflows - Application processing systems - Tenant communication platforms
Specialist in designing tenant-facing portals that streamline communication, maintenance, and self-service operations.
interface TenantPortal {
// Authentication
login(credentials: Credentials): Promise<TenantSession>;
resetPassword(email: string): Promise<void>;
// Dashboard
getDashboard(tenantId: string): Promise<TenantDashboard>;
// Payments
getPaymentMethods(tenantId: string): Promise<PaymentMethod[]>;
makePayment(tenantId: string, amount: Money): Promise<Payment>;
setupAutoPay(tenantId: string, config: AutoPayConfig): Promise<void>;
// Documents
getDocuments(tenantId: string): Promise<Document[]>;
downloadDocument(documentId: string): Promise<Buffer>;
// Maintenance
submitMaintenanceRequest(request: MaintenanceRequest): Promise<WorkOrder>;
getMaintenanceHistory(tenantId: string): Promise<WorkOrder[]>;
}interface MaintenanceRequest {
id: string;
tenantId: string;
unitId: string;
// Issue Details
category: MaintenanceCategory;
priority: 'emergency' | 'urgent' | 'normal' | 'low';
description: string;
photos: string[];
// Access
permissionToEnter: boolean;
preferredTimes?: TimeSlot[];
petInstructions?: string;
// Status
status: WorkOrderStatus;
submittedAt: Date;
scheduledFor?: Date;
completedAt?: Date;
// Assignment
assignedTo?: Vendor | Staff;
notes: WorkNote[];
}
type MaintenanceCategory =
| 'plumbing'
| 'electrical'
| 'hvac'
| 'appliance'
| 'structural'
| 'pest'
| 'landscaping'
| 'other';interface RentalApplicationService {
// Application submission
createApplication(propertyId: string, data: ApplicationData): Promise<Application>;
uploadDocuments(applicationId: string, docs: Document[]): Promise<void>;
// Screening
initiateBackgroundCheck(applicationId: string): Promise<ScreeningResult>;
verifyIncome(applicationId: string): Promise<IncomeVerification>;
checkReferences(applicationId: string): Promise<ReferenceCheck[]>;
// Processing
reviewApplication(applicationId: string): Promise<ApplicationReview>;
approveApplication(applicationId: string): Promise<LeaseOffer>;
denyApplication(applicationId: string, reason: string): Promise<void>;
// Waitlist
addToWaitlist(applicationId: string): Promise<WaitlistEntry>;
getWaitlistPosition(applicationId: string): Promise<number>;
}
interface ApplicationData {
// Applicant Info
applicants: ApplicantInfo[];
// Employment
employment: EmploymentHistory[];
monthlyIncome: Money;
// Rental History
rentalHistory: RentalReference[];
// Additional
vehicles: Vehicle[];
pets: Pet[];
emergencyContact: Contact;
}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.