用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HKUSTDial/DeepEar --skill deepear-analysis-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | DeepEar Analysis Skill |
| description | A skill that performs financial signal analysis using the DeepEar workflow. |
This skill wraps the DeepEar analysis workflow, allowing you to trigger comprehensive financial signal analysis via an API.
Triggers the DeepEar analysis workflow.
Request Body:
{
"query": "A-share tech sector",
"sources": "all",
"wide": 10,
"depth": "auto",
"concurrency": 5,
"update_from": "20240203_110000"
}
query (optional): The user intent or topic to analyze.sources (optional): News sources ('all', 'financial', 'social', 'tech', or comma-separated). Default: 'all'.wide (optional): Number of items to fetch per source. Default: 10.depth (optional): Analysis depth ('auto' or integer). Default: 'auto'.concurrency (optional): Number of concurrent threads. Default: 5.update_from (optional): Provide a run_id to update an existing analysis with new market data/logic.Response:
{
"job_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "pending",
"submitted_at": "2024-02-04T12:00:00.000000"
}
Check the progress and get the result of the analysis job.
Response (Completed):
{
"job_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "completed",
"result": {
"report_path": "/path/to/DeepEar/reports/daily_report_20240204_1205.html",
"message": "Analysis completed successfully."
},
"timestamp": "2024-02-04T12:05:00.000000"
}
Run the server:
uv run skills/deepear/scripts/server.py