track-zhihu-user — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited track-zhihu-user (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
获取知乎用户的资料和最新动态,分析其活跃度和内容偏好。
用户输入用户 URL token 或主页链接
│
├─ Step 1: 解析输入,获取 user token
│
├─ Step 2: 获取用户资料
│
├─ Step 3: 抓取最新动态
│
├─ Step 4: 深入阅读重点内容(可选)
│
└─ Step 5: 输出用户画像/动态报告从用户输入中提取 URL token:
https://www.zhihu.com/people/xu-ze-qiu → token = xu-ze-qiuxu-ze-qiu → 直接使用user_profile(token="xu-ze-qiu")获取:
get_activities(user="xu-ze-qiu", count=10)获取用户最近的活动(回答问题、发表文章、赞同内容等),包含:
活动会自动存入本地数据库,方便后续查询历史。
如果需要查看之前抓取过的数据:
get_new_since(hours=168, user="xu-ze-qiu")这会查询数据库中最近 N 小时内该用户的活动记录(无需再次爬取)。
如果用户关心某条动态的具体内容,根据链接类型调用对应工具:
get_answer_detail(question_id, answer_id)get_article_detail(article_id)get_question_detail(question_id)从链接中解析 ID:
zhihu.com/question/123/answer/456 → question_id=123, answer_id=456zhuanlan.zhihu.com/p/789 → article_id=789zhihu.com/question/123 → question_id=123## 知乎用户:{用户名}
> {一句话介绍}
### 基本信息
- 关注:{关注数} · 粉丝:{粉丝数}
- 获赞:{获赞数}
- 回答:{回答数} · 文章:{文章数}
### 个人简介
{个人简介}
### 最近动态({N} 条)
1. [{标题}]({链接}) — {时间}
{摘要}
2. ...
### 活跃领域分析
根据最近动态的话题分布:
- 领域 1:XX 条相关内容
- 领域 2:XX 条相关内容## {用户名} 的最新动态
> 上次检查:{时间} · 新增 {N} 条活动
### 新动态
1. [{标题}]({链接}) — {时间}
{摘要}
### 数据库统计
- 累计追踪:{总活动数} 条
- 追踪时长:{天数} 天get_activities 是实时爬取,每次调用会启动浏览器访问知乎,注意频率get_new_since 只查本地数据库,速度快且不触发反爬~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.