一键导入
Guide for Python development in this project. Use any time you write Python.
npx skills add https://github.com/cas-team-analyst/team-analyst --skill python复制此命令并粘贴到 Claude Code 中以安装该技能
Guide for Python development in this project. Use any time you write Python.
npx skills add https://github.com/cas-team-analyst/team-analyst --skill python复制此命令并粘贴到 Claude Code 中以安装该技能
Actuarial reserving analysis workflow. Use when the user requests reserving. Do NOT use for peer review (separate skill exists).
Peer review of completed reserve analysis. Use after reserving-analysis workflow finishes. Do NOT use during initial analysis (separate skill exists).
Guidelines and utility knowledge for working with formula-driven Excel workbooks and openpyxl.
Guidelines for creating formula-driven Excel workbooks with xlsxwriter. Inject live Excel formulas with cached values so workbooks display immediately and recalculate when actuaries change selections. Covers formula patterns, cross-workbook references, and shared formatting modules.
Get oriented with the TeamAnalyst plugin and explore available skills. Use when first getting started, checking what analysis capabilities are available, or surveying skills before beginning work. Trigger phrases "start", "get started", "what can you do", "help", "overview", "show skills".
View the base actuarial LDF selection logic used for chain-ladder selections. Use when an actuary wants to review or understand the selection framework, criteria, and diagnostic rules.
| name | python |
| description | Guide for Python development in this project. Use any time you write Python. |
Guide for Python development in this project.
Guidelines:
Code organization:
Critical rules:
__init__.py unless necessaryPackage Installation:
requirements.txt; 2. Run .venv/Scripts/Activate.ps1; pip-audit -r requirements.txt to check for vulnerabilities (do not install packages with known high vulnerabilities); 3. Run .venv/Scripts/Activate.ps1; pip install -r requirements.txt to do the install.Running Python:
.venv/Scripts/Activate.ps1; path-to-file/python script.pyTesting:
pytest tests as appropriate..venv\Scripts\Activate.ps1 ; python my_script.py", use "", not \".