بنقرة واحدة
python
Guide for Python development in this project. Use any time you write Python.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Guide for Python development in this project. Use any time you write Python.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
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".
Guide for improving GitHub Copilot Agent performance through skills, custom instructions, AGENTS.md, or other configuration. Use this when asked to improve agent behavior, create/update skills, modify custom instructions, update AGENTS.md, or customize GitHub Copilot performance in repositories.
استنادا إلى تصنيف SOC المهني
| 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 \".