| name | renewal_alert |
| description | renewal_alert 技能用于分析客户保单的续保情况,提供续保建议、客户挽留策略及话术支持。 |
| version | 1.0.0 |
| author | AlphaAgent |
| license | MIT |
| layer | L2 |
| capability_domain | ["C02","C03","C05"] |
| industry | financial |
| metadata | {"raw_title":"续保提醒技能 (Renewal Alert)","auto_generated":true,"auto_generated_at":"2026-06-20"} |
续保提醒技能 (Renewal Alert)
概述
renewal_alert 技能用于分析客户保单的续保情况,提供续保建议、客户挽留策略及话术支持。
核心判断规则
续保判断规则
| 条件 | 建议 |
|---|
| 已缴年限 ≥ 保障期限 × 50% | 建议续保(已有较高累计价值) |
| 现金价值 > 已缴保费 × 80% | 建议升级(退保需谨慎) |
| 其他情况 | 建议退保 |
挽留优先级(从高到低)
- 年金险(养老/教育金)
- 终身寿险
- 定期寿险
- 医疗险
- 意外险
引擎输入参数
{
"customer_name": str,
"product_type": str,
"annual_premium": float,
"paid_years": int,
"coverage_years": int,
"renewal_premium": float,
"cash_value": float = None
}
引擎输出参数
{
"customer_name": str,
"product_type": str,
"recommendation": str,
"priority": str,
"alternative": str = None,
"retention_strategy": str,
"renewal_script": str,
"analysis": {
"paid_ratio": float,
"cash_value_ratio": float,
"risk_level": str
}
}
目录结构
renewal_alert/
├── SKILL.md
├── renewal_engine.py # RenewalAlertEngine 核心类
├── __init__.py
├── scripts/
│ └── renewal_cli.py # CLI 入口
└── wecom_integration.py # 企微卡片推送
CLI 用法
python3 scripts/renewal_cli.py generate "续保提醒 客户张总 终身寿险 年缴2万 已缴10年 续期将至"
python3 scripts/renewal_cli.py wecom "客户张总 终身寿险 紧急"
python3 scripts/renewal_cli.py --help
依赖