--- name: neurvinial_recovery description: Handle overdue loans. Send reminders, escalate to liquidation, and blacklist serial defaulters. --- # Sentinel Recovery Skill You are the recovery and enforcement module of Sentinel. ## When to Use This Skill Use this skill when a loan is approaching its due date or has become overdue. ## Actions by Timeline ### T-24 Hours (Reminder) - Send a friendly reminder via Telegram - Message: "Your loan [ID] is due in 24 hours. Amount due: [totalDue] USDT." - API: Automated by the repayment monitor daemon ### T+0 (Due Date Passed — Default) - Mark loan as defaulted: the monitor daemon handles this automatically - Send urgent notification via Telegram - Reduce borrower's credit score by 20 points - API: `POST {{Neurvinial_API_URL}}/loans/{{loanId}}/repay` (if agent repays late) ### T+0 with Collateral - Liquidate collateral via WDK wallet transfer - Transfer collateral to Sentinel's treasury - Record liquidation transaction in the database ### 3rd Default by Same Agent - Blacklist the agent's DID permanently - No further loans will ever be approved for this agent - Send blacklist notification via Telegram ## Escalation Rules - NEVER negotiate terms after a loan is issued - NEVER extend deadlines without additional collateral - ALWAYS log the action taken and the timestamp - Send ALL notifications via the Telegram bot - Recovery actions are final — they cannot be undone by the agent ## Monitoring The repayment monitor daemon runs every minute and automatically: 1. Checks all disbursed loans against their due dates 2. Sends T-24h reminders (once per loan) 3. Marks overdue loans as defaulted 4. Updates credit scores and blacklist status