Loading...
Loading...
Social media intelligence monitoring for Novita. Use when systematically browsing X/Twitter accounts from personal following list (@Jax_Zhang_4R) to gather AI industry intelligence. Performs sequential account review with per-account record keeping (including original tweet links), followed by comprehensive summary. Always use @skills/twitterapi-cli for data retrieval.
npx skill4agent add jaxzhang-svg/novita-skills novita-social-monitortwitterapi user following Jax_Zhang_4R --limit 200idscreen_namenamedescriptionfollowers_countverified# Read last check time from state file
STATE_FILE="$HOME/.novita-monitor/state.json"
LAST_CHECK=$(cat "$STATE_FILE" | grep -o '"last_check": "[^"]*"' | cut -d'"' -f4 2>/dev/null || echo "2026-01-01_00:00:00_UTC")
# Get current time
UNTIL=$(date -u +"%Y-%m-%d_%H:%M:%S_UTC")
# Fetch tweets from last check to now
twitterapi tweet search "from:<account> since:${LAST_CHECK} until:${UNTIL}" --limit 3 --compact
# Update state file with current time
echo "{\"last_check\": \"$UNTIL\"}" > "$STATE_FILE"twitterapi user tweets <account> --limit 3 --compacttwitterapi tweet search "@novita_labs" --limit 50 --compactdescriptionfollowingdescriptionnamefollowers_countverified~/.novita-monitor/
├── <datetime>/ # Per-run directory (e.g., 2026-02-26_14-30)
│ ├── @<account>.md # Individual account reviews
│ ├── brand-mentions.md # @novita_labs brand mentions
│ └── summary.md # End-of-run summary
└── state.json # Last check timestampYYYY-MM-DD_HH-MM# Get current datetime for directory name
RUN_DATETIME=$(date -u +"%Y-%m-%d_%H-%M")
mkdir -p "$HOME/.novita-monitor/$RUN_DATETIME"~/.novita-monitor/<datetime>/@<account>.md# @<account> - <日期>
## 账户信息
- **分类**: [分类]
- **粉丝数**: [数量]
- **认证**: [是/否]
## 推文分析
### [摘要]
- **互动**: [点赞] 点赞, [转发] 转发
- **时间**: [时间戳]
- **链接**: https://x.com/<account>/status/<tweet_id>
- **相关性**: [为什么重要]~/.novita-monitor/<datetime>/brand-mentions.md# 品牌提及 - <日期时间>
## 概述
总提及数: [数量]
## 重要提及
### @<提及账户>
- **推文**: [摘要]
- **链接**: https://x.com/<account>/status/<tweet_id>
- **情感**: [正面/负面/中性]
- **需要行动**: [是/否]~/.novita-monitor/<datetime>/summary.md# 运行总结 - <日期时间>
## 已审查账户
总计: [数量]
## 按分类统计
- **LLM 竞争对手**: [数量] - [关键洞察]
- **GPU 竞争对手**: [数量] - [关键洞察]
- **合作伙伴**: [数量] - [关键洞察]
- **生态领袖**: [数量] - [关键洞察]
- **中国开源**: [数量] - [关键洞察]
- **AI KOL**: [数量] - [关键洞察]
- **未分类**: [数量]
## 重大动态
[需要关注的关键事件]
## 行动项
- [ ] [行动 1]
- [ ] [行动 2]# Get all summaries from today
cat ~/.novita-monitor/2026-02-26_*/summary.md
# Get all records for a specific account across all runs
find ~/.novita-monitor -name "@github.md" -exec cat {} \;~/.novita-monitor/state.json{
"last_check": "2026-02-26_14:50:00_UTC"
}since:2026-01-01_00:00:00_UTC"请生成英文报告" or "Generate reports in English"