用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kmavrodis/kratos-agent --skill crm命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Read the plant-floor Azure IoT surface — device twins (spindles, conveyors, robotic arms, vision systems), time-series telemetry with pre-annotated alarms, downtime events with cause codes and lot ids, and per-line OEE rollups (Availability × Performance × Quality).
Share generated files (PDFs, charts, CSVs) with Frank by writing them to /tmp and referencing the absolute path. The frontend auto-converts /tmp paths into download links.
Build the downloadable incident brief PDF — cover + KPI strip + OEE chart + downtime timeline + root-cause narrative + supplier/material signals + recommended actions + sign-off, per SOP §7.1. Renders via the inline HTML template + Playwright.
基于 SOC 职业分类
正在显示 SKILL.md
| name | crm |
| description | Search and retrieve wealth-management client profiles, financial data, and portfolio holdings from the CRM system |
| enabled | true |
When the user asks about a client, customer, or account holder — including their profile, contact details, financial situation, investment preferences, or portfolio — use this skill to look them up in the CRM.
Determine how to search based on what the user provides:
| User provides | Function to call | Example |
|---|---|---|
| A name or partial name | load_from_crm_by_client_fullname | "Look up Pete Mitchell", "find client Bradshaw" |
| A client ID | load_from_crm_by_client_id | "Get client 123456", "pull up account 234567" |
| Request for portfolio details | get_client_portfolio | "Show me Pete's holdings", "what's in client 123456's portfolio" |
| General overview | list_all_clients | "Show me all clients", "who are our clients" |
get_client_portfolio to get the full positions listWhen displaying client information, organize it clearly:
Personal Details
Financial Overview
Investment Profile
Compliance
When the user asks about portfolio holdings, use get_client_portfolio and present positions in a table:
| Ticker | Company | Sector | Asset Class | Avg Cost | Units |
|---|---|---|---|---|---|
| MSFT | Microsoft Corp | Technology | Equity | $350 | 200 |
Include the portfolio summary:
For complex requests, combine CRM data with other skills:
load_from_crm_by_client_fullname → get_client_portfolio → hand off to portfolio-review or code_interpreter for analysispdf-wealth-report to generate a formatted PDFweb_search for current prices and news on those tickers