novita-social-monitor
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseNovita Social Monitor
Novita社交媒体监控工具
AI industry intelligence gathering through sequential X/Twitter account review.
通过按顺序审查X/Twitter账户来收集AI行业情报。
Output Language
输出语言
Default: Chinese (中文) - All reports, summaries, and records should be in Chinese unless the user explicitly requests English.
默认: 中文 - 所有报告、总结和记录均需使用中文,除非用户明确要求英文。
Commands
命令
Get Following List
获取关注列表
bash
twitterapi user following Jax_Zhang_4R --limit 200Response includes: , , , , , for each account. No additional API calls needed for account info.
idscreen_namenamedescriptionfollowers_countverifiedbash
twitterapi user following Jax_Zhang_4R --limit 200返回内容包含: , , , , , 字段。无需额外调用API获取账户信息。
idscreen_namenamedescriptionfollowers_countverifiedFetch Tweets (Time-Filtered)
获取推文(按时间过滤)
bash
undefinedbash
undefinedRead last check time from state file
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")
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
Get current time
UNTIL=$(date -u +"%Y-%m-%d_%H:%M:%S_UTC")
UNTIL=$(date -u +"%Y-%m-%d_%H:%M:%S_UTC")
Fetch tweets from last check to now
Fetch tweets from last check to now
twitterapi tweet search "from:<account> since:${LAST_CHECK} until:${UNTIL}" --limit 3 --compact
twitterapi tweet search "from:<account> since:${LAST_CHECK} until:${UNTIL}" --limit 3 --compact
Update state file with current time
Update state file with current time
echo "{"last_check": "$UNTIL"}" > "$STATE_FILE"
undefinedecho "{"last_check": "$UNTIL"}" > "$STATE_FILE"
undefinedFallback (No Time Filter)
备用方案(无时间过滤)
bash
twitterapi user tweets <account> --limit 3 --compactbash
twitterapi user tweets <account> --limit 3 --compactSearch Brand Mentions
搜索品牌提及
bash
twitterapi tweet search "@novita_labs" --limit 50 --compactbash
twitterapi tweet search "@novita_labs" --limit 50 --compactProcessing Workflow
处理流程
For each account in the following list:
-
按描述分类 - 使用 following 列表返回的字段确定分类:
description- LLM 竞争对手: LLM 提供商、模型托管、推理 API
- GPU 竞争对手: GPU 云、计算基础设施
- 合作伙伴: 集成合作伙伴、生态协作者
- 生态领袖: 主要平台 (OpenAI、Anthropic 等)
- 中国开源: 中国 AI 模型提供商
- AI KOL: 行业思想领袖、研究人员
- 未分类: 一般 AI 行业相关性
注意:命令已返回following、description、name和followers_count状态 - 无需单独获取账户信息。verified -
获取推文 - 使用上述时间过滤命令
-
按分类分析:
- 竞争对手: 产品发布、定价、合作
- 合作伙伴: 集成更新
- 生态: 平台变化
- 检查互动: 100-500 (有趣)、500-2000 (值得关注)、2000+ (重要)
-
立即记录 - 重要: 在完成每个账户审查后立即保存结果到文件,然后再处理下一个账户。这确保:
- 如果进程中断不会丢失数据
- 可以进行增量汇总
- 为将来提供审计追踪
对于关注列表中的每个账户:
-
按描述分类 - 使用following列表返回的字段确定分类:
description- LLM 竞争对手: LLM 提供商、模型托管、推理 API
- GPU 竞争对手: GPU 云、计算基础设施
- 合作伙伴: 集成合作伙伴、生态协作者
- 生态领袖: 主要平台 (OpenAI、Anthropic 等)
- 中国开源: 中国 AI 模型提供商
- AI KOL: 行业思想领袖、研究人员
- 未分类: 一般 AI 行业相关性
注意:命令已返回following、description、name和followers_count状态 - 无需单独获取账户信息。verified -
获取推文 - 使用上述时间过滤命令
-
按分类分析:
- 竞争对手: 产品发布、定价、合作
- 合作伙伴: 集成更新
- 生态: 平台变化
- 检查互动: 100-500 (有趣)、500-2000 (值得关注)、2000+ (重要)
-
立即记录 - 重要: 在完成每个账户审查后立即保存结果到文件,然后再处理下一个账户。这确保:
- 如果进程中断不会丢失数据
- 可以进行增量汇总
- 为将来提供审计追踪
Record Format & File Storage
记录格式与文件存储
Directory Structure
目录结构
~/.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 timestampDateTime format: (UTC)
YYYY-MM-DD_HH-MMEach execution creates a new directory based on the start time:
bash
undefined~/.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 timestamp日期时间格式: (UTC)
YYYY-MM-DD_HH-MM每次执行都会根据开始时间创建一个新目录:
bash
undefinedGet current datetime for directory name
Get current datetime for directory name
RUN_DATETIME=$(date -u +"%Y-%m-%d_%H-%M")
mkdir -p "$HOME/.novita-monitor/$RUN_DATETIME"
undefinedRUN_DATETIME=$(date -u +"%Y-%m-%d_%H-%M")
mkdir -p "$HOME/.novita-monitor/$RUN_DATETIME"
undefinedIndividual Account Record
单个账户记录
File:
~/.novita-monitor/<datetime>/@<account>.mdCreate immediately after reviewing each account.
markdown
undefined文件路径:
~/.novita-monitor/<datetime>/@<account>.md审查完每个账户后立即创建。
markdown
undefined@<account> - <日期>
@<account> - <日期>
账户信息
账户信息
- 分类: [分类]
- 粉丝数: [数量]
- 认证: [是/否]
- 分类: [分类]
- 粉丝数: [数量]
- 认证: [是/否]
推文分析
推文分析
[摘要]
[摘要]
- 互动: [点赞] 点赞, [转发] 转发
- 时间: [时间戳]
- 链接: https://x.com/<account>/status/<tweet_id>
- 相关性: [为什么重要]
**每条推文必须包含原始链接。**- 互动: [点赞] 点赞, [转发] 转发
- 时间: [时间戳]
- 链接: https://x.com/<account>/status/<tweet_id>
- 相关性: [为什么重要]
**每条推文必须包含原始链接。**Brand Mentions Record
品牌提及记录
File:
~/.novita-monitor/<datetime>/brand-mentions.mdmarkdown
undefined文件路径:
~/.novita-monitor/<datetime>/brand-mentions.mdmarkdown
undefined品牌提及 - <日期时间>
品牌提及 - <日期时间>
概述
概述
总提及数: [数量]
总提及数: [数量]
重要提及
重要提及
@<提及账户>
@<提及账户>
- 推文: [摘要]
- 链接: https://x.com/<account>/status/<tweet_id>
- 情感: [正面/负面/中性]
- 需要行动: [是/否]
undefined- 推文: [摘要]
- 链接: https://x.com/<account>/status/<tweet_id>
- 情感: [正面/负面/中性]
- 需要行动: [是/否]
undefinedEnd-of-Run Summary
运行结束总结
File:
~/.novita-monitor/<datetime>/summary.mdmarkdown
undefined文件路径:
~/.novita-monitor/<datetime>/summary.mdmarkdown
undefined运行总结 - <日期时间>
运行总结 - <日期时间>
已审查账户
已审查账户
总计: [数量]
总计: [数量]
按分类统计
按分类统计
- LLM 竞争对手: [数量] - [关键洞察]
- GPU 竞争对手: [数量] - [关键洞察]
- 合作伙伴: [数量] - [关键洞察]
- 生态领袖: [数量] - [关键洞察]
- 中国开源: [数量] - [关键洞察]
- AI KOL: [数量] - [关键洞察]
- 未分类: [数量]
- LLM 竞争对手: [数量] - [关键洞察]
- GPU 竞争对手: [数量] - [关键洞察]
- 合作伙伴: [数量] - [关键洞察]
- 生态领袖: [数量] - [关键洞察]
- 中国开源: [数量] - [关键洞察]
- AI KOL: [数量] - [关键洞察]
- 未分类: [数量]
重大动态
重大动态
[需要关注的关键事件]
[需要关注的关键事件]
行动项
行动项
- [行动 1]
- [行动 2]
undefined- [行动 1]
- [行动 2]
undefinedData Aggregation (Optional)
数据聚合(可选)
To aggregate data across multiple runs:
bash
undefined如需跨多次运行聚合数据:
bash
undefinedGet all summaries from today
Get all summaries from today
cat ~/.novita-monitor/2026-02-26_*/summary.md
cat ~/.novita-monitor/2026-02-26_*/summary.md
Get all records for a specific account across all runs
Get all records for a specific account across all runs
find ~/.novita-monitor -name "@github.md" -exec cat {} ;
undefinedfind ~/.novita-monitor -name "@github.md" -exec cat {} ;
undefinedState File
状态文件
Location:
~/.novita-monitor/state.jsonjson
{
"last_check": "2026-02-26_14:50:00_UTC"
}Purpose: Records last execution time. Each run reads this time as value, then updates to current time after fetching tweets.
since:First run: Create file manually or script will use default .
2026-01-01_00:00:00_UTC存储位置:
~/.novita-monitor/state.jsonjson
{
"last_check": "2026-02-26_14:50:00_UTC"
}用途: 记录上次执行时间。每次运行会读取该时间作为参数,获取推文后更新为当前时间。
since:首次运行: 手动创建文件,或脚本将使用默认值。
2026-01-01_00:00:00_UTCLanguage Preference
语言偏好
Default: All reports are generated in Chinese (中文).
English output: If you explicitly request English reports, specify at the start of your request:
"请生成英文报告" or "Generate reports in English"This applies to:
- Individual account records
- Brand mentions summaries
- End-of-run summaries
- All analysis and insights
默认: 所有报告均使用中文生成。
英文输出: 如需生成英文报告,请在请求开头明确说明:
"请生成英文报告" or "Generate reports in English"此设置适用于:
- 单个账户记录
- 品牌提及总结
- 运行结束总结
- 所有分析和洞察