skills/healthcare-monitor/SKILL.md
医疗行业企业融资监控系统。实时监控医疗健康企业的工商变更,识别融资信号,自动推送告警。支持天眼查/企查查数据采集、AI融资判断、多渠道推送。
npx skillsauth add aaaaqwq/agi-super-team healthcare-monitorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
本技能实现医疗健康行业企业的融资信号实时监控,通过工商变更数据识别未披露的融资事件,为媒体、投资机构提供情报服务。
skills/healthcare-monitor/
├── SKILL.md # 技能说明
├── config/
│ ├── companies.json # 监控企业列表
│ └── settings.json # 配置参数
├── scripts/
│ ├── monitor.py # 主监控脚本
│ ├── scraper.py # 数据采集
│ ├── analyzer.py # 融资分析
│ └── notifier.py # 推送通知
├── data/
│ ├── snapshots/ # 企业快照
│ ├── changes/ # 变更记录
│ └── reports/ # 生成的报告
└── templates/
├── alert.md # 告警模板
└── daily_report.md # 日报模板
# 添加单个企业
python3 ~/clawd/skills/healthcare-monitor/scripts/monitor.py add "北京某某医疗科技有限公司"
# 批量导入
python3 ~/clawd/skills/healthcare-monitor/scripts/monitor.py import companies.csv
# 检查所有企业
python3 ~/clawd/skills/healthcare-monitor/scripts/monitor.py check
# 检查单个企业
python3 ~/clawd/skills/healthcare-monitor/scripts/monitor.py check "公司名称"
# 每小时检查重点企业
# 使用 OpenClaw cron 工具设置
| 信号 | 描述 | 权重 | |------|------|------| | 新增机构股东 | 股东名称包含"投资/资本/基金/创投" | +40 | | 注册资本增加 | 增幅 >10% | +30 | | 股权稀释 | 创始人持股比例下降 | +20 |
| 信号 | 描述 | 权重 | |------|------|------| | 新增自然人股东 | 可能是投资人代持 | +15 | | 经营范围扩大 | 业务扩张信号 | +10 | | 办公地址变更 | 搬迁到更好区域 | +10 |
| 信号 | 描述 | 权重 | |------|------|------| | 仅注册资本增加 | 可能是内部增资 | +10 | | 法人变更 | 可能是内部调整 | +5 |
种子/天使轮:
- 公司成立 <2 年
- 注册资本 <500 万
- 新股东为天使投资人
A轮:
- 公司成立 2-4 年
- 注册资本增幅 20-50%
- 新股东为知名 VC
B轮+:
- 公司成立 >3 年
- 注册资本增幅 10-30%
- 新股东为大型 PE/战略投资者
# 采集字段
fields = {
"basic": ["公司名称", "法人", "注册资本", "成立日期", "经营状态"],
"shareholders": ["股东名称", "持股比例", "认缴出资", "出资日期"],
"changes": ["变更时间", "变更项目", "变更前", "变更后"],
"investments": ["被投企业", "投资金额", "投资时间"],
}
策略:
- 使用 Playwright 无头浏览器
- 随机延迟 3-10 秒
- 轮换 User-Agent
- 代理 IP 池 (可选)
- 模拟人类行为 (滚动、点击)
限制:
- 每小时最多 100 次请求
- 单企业每天最多查询 3 次
- 遇到验证码暂停并告警
{
"telegram": {
"enabled": true,
"bot_token": "从 config 读取",
"chat_id": "8518085684",
"alert_level": "high"
}
}
{
"feishu": {
"enabled": true,
"webhook": "从 config 读取",
"alert_level": "all"
}
}
🚨 **融资信号告警**
**企业**: {{company_name}}
**变更时间**: {{change_date}}
**置信度**: {{confidence}}%
**变更详情**:
- 注册资本: {{old_capital}} → {{new_capital}}
- 新增股东: {{new_shareholders}}
- 股权变化: {{equity_changes}}
**AI 分析**:
- 融资轮次: {{round_estimate}}
- 融资金额: {{amount_estimate}}
- 投资方: {{investors}}
**数据来源**: 天眼查
**监控时间**: {{monitor_time}}
GET /api/company/{company_name}
Response:
{
"name": "公司名称",
"last_check": "2026-02-03 22:00:00",
"status": "normal",
"recent_changes": [...],
"funding_signals": [...]
}
POST /api/monitor
{
"company_name": "公司名称",
"priority": "high",
"check_interval": "hourly"
}
动脉网等医疗媒体使用,第一时间获取融资新闻线索。
工作流:
1. 系统检测到融资信号
2. 推送到编辑 Telegram
3. 编辑核实后发布新闻
4. 比竞争对手快 24-48 小时
VC/PE 使用,发现潜在投资标的或跟投机会。
工作流:
1. 系统检测到 A 轮融资
2. 推送到投资经理
3. 评估是否跟进
4. 主动联系企业
药企商务拓展部门使用,寻找合作/收购标的。
工作流:
1. 系统检测到目标领域企业融资
2. 推送到 BD 团队
3. 评估合作可能性
4. 发起商务接触
{
"check_interval": {
"high_priority": "1h",
"normal": "6h",
"low": "24h"
},
"alert_threshold": {
"confidence": 60,
"capital_change_percent": 10
},
"scraper": {
"delay_min": 3,
"delay_max": 10,
"max_requests_per_hour": 100
},
"notification": {
"telegram": true,
"feishu": true,
"email": false
}
}
# 检查日志
tail -f ~/clawd/skills/healthcare-monitor/data/logs/scraper.log
# 常见原因
- IP 被封: 更换代理
- 验证码: 人工处理或接入打码平台
- 页面结构变化: 更新选择器
# 调整置信度阈值
# 编辑 config/settings.json
{
"alert_threshold": {
"confidence": 70 # 提高阈值
}
}
~/clawd/docs/solutions/healthcare-data-intelligence.md - 完整解决方案~/.openclaw/agents/healthcare-monitor/ - Agent 配置~/clawd/skills/healthcare-monitor/data/ - 数据存储development
Technology-agnostic prompt generator that creates customizable AI prompts for scanning codebases and identifying high-quality code exemplars. Supports multiple programming languages (.NET, Java, JavaScript, TypeScript, React, Angular, Python) with configurable analysis depth, categorization methods, and documentation formats to establish coding standards and maintain consistency across development teams.
tools
Expert-level browser automation, debugging, and performance analysis using Chrome DevTools MCP. Use for interacting with web pages, capturing screenshots, analyzing network traffic, and profiling performance.
data-ai
Prompt for creating detailed feature implementation plans, following Epoch monorepo structure.
tools
Interactive prompt refinement workflow: interrogates scope, deliverables, constraints; copies final markdown to clipboard; never writes code. Requires the Joyride extension.