Loading...
Loading...
Healthcare Enterprise Funding Monitoring System. Real-time monitoring of industrial and commercial changes of healthcare enterprises, identification of funding signals, and automatic alert pushing. Supports data collection from Tianyancha/Qichacha, AI funding judgment, and multi-channel pushing.
npx skill4agent add aaaaqwq/claude-code-skills healthcare-monitorskills/healthcare-monitor/
├── SKILL.md # Skill Description
├── config/
│ ├── companies.json # Monitored Enterprise List
│ └── settings.json # Configuration Parameters
├── scripts/
│ ├── monitor.py # Main Monitoring Script
│ ├── scraper.py # Data Collection
│ ├── analyzer.py # Funding Analysis
│ └── notifier.py # Push Notification
├── data/
│ ├── snapshots/ # Enterprise Snapshots
│ ├── changes/ # Change Records
│ └── reports/ # Generated Reports
└── templates/
├── alert.md # Alert Template
└── daily_report.md # Daily Report Template# Add single enterprise
python3 ~/clawd/skills/healthcare-monitor/scripts/monitor.py add "北京某某医疗科技有限公司"
# Batch import
python3 ~/clawd/skills/healthcare-monitor/scripts/monitor.py import companies.csv# Check all enterprises
python3 ~/clawd/skills/healthcare-monitor/scripts/monitor.py check
# Check single enterprise
python3 ~/clawd/skills/healthcare-monitor/scripts/monitor.py check "公司名称"# Check high-priority enterprises hourly
# Set using OpenClaw cron tool| Signal | Description | Weight |
|---|---|---|
| Institutional Shareholder Added | Shareholder name contains "Investment/Capital/Fund/Venture Capital" | +40 |
| Registered Capital Increase | Growth rate >10% | +30 |
| Equity Dilution | Founder's shareholding ratio decreases | +20 |
| Signal | Description | Weight |
|---|---|---|
| Natural Person Shareholder Added | May be held by investor on behalf | +15 |
| Business Scope Expansion | Business expansion signal | +10 |
| Office Address Change | Relocated to a better area | +10 |
| Signal | Description | Weight |
|---|---|---|
| Only Registered Capital Increase | May be internal capital increase | +10 |
| Legal Representative Change | May be internal adjustment | +5 |
Seed/Angel Round:
- Company established < 2 years
- Registered capital < 5 million RMB
- New shareholder is angel investor
Series A:
- Company established 2-4 years
- Registered capital growth 20-50%
- New shareholder is well-known VC
Series B+:
- Company established > 3 years
- Registered capital growth 10-30%
- New shareholder is large PE/strategic investor# Collection Fields
fields = {
"basic": ["Company Name", "Legal Representative", "Registered Capital", "Establishment Date", "Operating Status"],
"shareholders": ["Shareholder Name", "Shareholding Ratio", "Subscribed Capital", "Capital Contribution Date"],
"changes": ["Change Time", "Change Item", "Before Change", "After Change"],
"investments": ["Invested Enterprise", "Investment Amount", "Investment Time"],
}Strategies:
- Use Playwright headless browser
- Random delay 3-10 seconds
- Rotate User-Agent
- Proxy IP pool (optional)
- Simulate human behavior (scrolling, clicking)
Limits:
- Maximum 100 requests per hour
- Maximum 3 queries per enterprise per day
- Pause and alert when encountering captcha{
"telegram": {
"enabled": true,
"bot_token": "Read from config",
"chat_id": "8518085684",
"alert_level": "high"
}
}{
"feishu": {
"enabled": true,
"webhook": "Read from config",
"alert_level": "all"
}
}🚨 **Funding Signal Alert**
**Enterprise**: {{company_name}}
**Change Time**: {{change_date}}
**Confidence**: {{confidence}}%
**Change Details**:
- Registered Capital: {{old_capital}} → {{new_capital}}
- New Shareholders: {{new_shareholders}}
- Equity Changes: {{equity_changes}}
**AI Analysis**:
- Funding Round: {{round_estimate}}
- Estimated Funding Amount: {{amount_estimate}}
- Investors: {{investors}}
**Data Source**: Tianyancha
**Monitoring Time**: {{monitor_time}}GET /api/company/{company_name}
Response:
{
"name": "Company Name",
"last_check": "2026-02-03 22:00:00",
"status": "normal",
"recent_changes": [...],
"funding_signals": [...]
}POST /api/monitor
{
"company_name": "Company Name",
"priority": "high",
"check_interval": "hourly"
}Workflow:
1. System detects funding signal
2. Push to editor's Telegram
3. Editor verifies and publishes news
4. 24-48 hours faster than competitorsWorkflow:
1. System detects Series A funding
2. Push to investment manager
3. Evaluate whether to follow up
4. Proactively contact the enterpriseWorkflow:
1. System detects funding of enterprises in target fields
2. Push to BD team
3. Evaluate cooperation possibility
4. Initiate business contact{
"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
}
}# Check logs
tail -f ~/clawd/skills/healthcare-monitor/data/logs/scraper.log
# Common Causes
- IP blocked: Replace proxy
- Captcha: Manual processing or access captcha-solving platform
- Page structure changed: Update selectors# Adjust confidence threshold
# Edit config/settings.json
{
"alert_threshold": {
"confidence": 70 # Increase threshold
}
}~/clawd/docs/solutions/healthcare-data-intelligence.md~/.openclaw/agents/healthcare-monitor/~/clawd/skills/healthcare-monitor/data/