用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/FDU-INS/Insurance-Skills --skill auto-insurance-recommendation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Complete architecture reference for the A3 insurance platform — file locations, data flow, conventions, microservice map, and fullstack patterns
Drafts U.S. commercial real estate access and indemnity (right-of-entry) agreements for pre-closing due diligence. Covers license grants, non-invasive vs invasive testing gates, insurance/endorsement requirements, indemnity with discovery carve-outs, restoration and lien remedies, confidentiality, and anti-indemnity guardrails. Trigger: access agreement, right of entry, due diligence access, Phase I/II, invasive testing, pre-PSA site inspection.
Guide actuarial analysis for insurance pricing. TRIGGERS - Use when user needs help with actuarial-analysis related tasks.
正在显示 SKILL.md
基于 SOC 职业分类
| name | auto-insurance-recommendation |
| description | 顧客の年齢・年収・プロフィールに基づき、最適な自動車保険プランを提案する。 |
顧客情報(年齢・年収・家族構成・ニーズ)をもとに、最適な自動車保険プランを提案する。
recommend.py を呼ぶ前に、車種区分(普通車/軽自動車/SUVなど)と車齢が顧客から得られていること。不明な場合はこのスキルを呼ばずに先に顧客へ質問するcustomer_context)に含まれている。必ずコンテキストの実値を使うこと
annual_income: 0 は禁止。コンテキストに値がある場合は必ずその値を渡すcustomer_context.annual_income は文字列で格納されている(例: "5500000")。スクリプトに渡す際は整数に変換すること(例: 5500000)customer_context.age も同様に文字列の場合がある。整数に変換して渡すこと{"customer_id": "C001", "age": 35, "annual_income": 6000000} ← 正しい(整数){"customer_id": "C001", "age": "35", "annual_income": "6000000"} ← 文字列のまま渡すのは誤り{"customer_id": "C001", "age": 35, "annual_income": 0} ← 禁止(0は誤り)scripts/recommend.py を呼び出し候補プランを取得する| プラン | 月額保険料 | 保障内容 | 特徴 |
|---|---|---|---|
| {商品名} | {金額}円 | {保障の概要} | {特徴} |
activity_log_writer を 呼び出さないscripts/recommend.py — 条件に合うプラン一覧の取得
--age(必須), --annual_income(必須), --customer_id(任意)のみ--vehicle_type, --vehicle_age, --preferences 等の引数は存在しない。渡すと exit code 2 で失敗するため絶対に渡さないことdemo_app/data/products.csvdemo_app/data/contracts.csvreferences/RECOMMENDATION_RULES.md