zhihu
$
npx mdskill add sigcli/sigcli/zhihuInteract with Zhihu to browse questions, read answers, and search Chinese Q&A content
- Solves the task of accessing and retrieving information from Zhihu's Chinese Q&A platform
- Depends on Zhihu's website and its structured content for browsing and searching
- Decides actions based on user input such as URLs, topics, or specific Zhihu references
- Delivers results by fetching and summarizing Zhihu content directly for the user
SKILL.md
.github/skills/zhihuView on GitHub ↗
---
name: zhihu
description: 'Interact with Zhihu (zhihu.com) — browse hot questions, read answers, search content, view topics, check user profiles. Use this skill whenever the user mentions Zhihu, 知乎, zhihu.com, wants to browse Chinese Q&A content, read Zhihu answers, search Zhihu questions, check Zhihu hot list, or look up Zhihu users/topics. Also trigger when the user pastes a Zhihu URL (e.g. zhihu.com/question/12345), mentions a Zhihu topic, or asks about Chinese knowledge sharing platforms.'
---
# Zhihu
Browse, search, read, and interact with Zhihu — China's largest Q&A platform.
## Skill Directory
`<SKILL_DIR>` is the directory containing this SKILL.md file. Determine it ONCE at the start and reuse it.
## Setup (run FIRST — every time, before any operation)
You MUST complete this setup before running any script. Do NOT skip this step.
```bash
sig status zhihu 2>&1
```
Check the JSON output fields `configured` and `valid`:
- **`configured: false`** → run Provider Setup below. Do NOT proceed without completing it.
- **`valid: false` (but configured: true)** → run `sig login zhihu`, then re-check.
- **`valid: true`** → detect proxy (see below), then execute the user's request.
### Provider Setup
1. Read `<SKILL_DIR>/references/provider-config.yaml`
2. Append the provider block to `~/.sig/config.yaml` under `providers:`
3. Ask the user: "Do you need a proxy to access this site?" — if yes, add `networkProxy: <url>` under the provider in config.yaml
4. Run `sig login zhihu` (with `--network-proxy <url>` if proxy was specified)
5. Verify: run `sig status zhihu` again — must show `valid: true` before proceeding
### Proxy Detection (after provider is valid)
```bash
grep -A15 "^\s*zhihu:" ~/.sig/config.yaml | grep networkProxy | awk '{print $2}'
```
If this outputs a URL, prefix ALL python3 commands with `HTTPS_PROXY=<url> HTTP_PROXY=<url>`.
If using socks5, convert to socks5h for python (e.g. `socks5://...` → `socks5h://...`).
If empty, no proxy needed.
## Running Scripts
All scripts require setup to be completed first (see above).
**All operations** — use `sig run` to inject cookie (required for all Zhihu endpoints):
```bash
sig run zhihu -- bash -c 'python3 <SKILL_DIR>/scripts/zhihu_hot.py --cookie "$SIG_ZHIHU_COOKIE" --limit 10'
```
Env var: `SIG_ZHIHU_COOKIE`
**On auth error (401/403):** run `sig login zhihu` automatically (no user prompt), then retry.
## Scripts Reference
All scripts are in this skill's `scripts/` directory. Run via Bash tool.
### Read Operations
| Script | Purpose | Auth |
| ------------------- | ------------------------------ | -------- |
| `zhihu_hot.py` | Hot list (知乎热榜) | Required |
| `zhihu_question.py` | Question answers + info | Required |
| `zhihu_answer.py` | Single answer detail | Required |
| `zhihu_search.py` | Search questions/topics/people | Required |
| `zhihu_member.py` | User profile + answers | Required |
| `zhihu_topic.py` | Search topics by keyword | Required |
### zhihu_hot.py
```
--cookie COOKIE Zhihu session cookie (required)
--limit N Max items (default: 50)
```
### zhihu_question.py
```
--cookie COOKIE Zhihu session cookie (required)
--id ID Question ID (required)
--answers-limit N Max answers to fetch (default: 10)
--sort SORT Sort answers: "default" or "created" (default: "default")
```
Note: Question title and ID are extracted from the answers endpoint since Zhihu's question detail API is protected by anti-crawler measures.
### zhihu_answer.py
```
--cookie COOKIE Zhihu session cookie (required)
--id ID Answer ID (required)
```
### zhihu_search.py
```
--cookie COOKIE Zhihu session cookie (required)
--query TEXT Search query (required)
--type TYPE Search type: "general", "topic", or "people" (default: "general")
--limit N Max results (default: 20)
```
### zhihu_member.py
```
--cookie COOKIE Zhihu session cookie (required)
--url-token NAME Member URL token (required)
--include-answers Also fetch member's recent answers (flag)
```
### zhihu_topic.py
```
--cookie COOKIE Zhihu session cookie (required)
--query TEXT Topic search query (required)
--limit N Max results (default: 10)
```
Note: Direct topic detail API is protected by anti-crawler. This script searches topics by keyword instead.
## Key Concepts
**Questions** — The core unit on Zhihu. Each question has a title, detail, and a list of answers. Found in URLs like `zhihu.com/question/12345`. Get from hot list or search results, then use with `zhihu_question.py`.
**Answers** — Responses to questions, ranked by votes. Each answer has content, vote count, and author info. Use `zhihu_answer.py` to fetch a single answer by ID.
**Hot List (知乎热榜)** — Zhihu's trending questions, ranked by heat score. Use `zhihu_hot.py` to browse.
**Topics** — Zhihu organizes content into topics (like tags). Examples: AI, programming, science. Use `zhihu_topic.py` to search topics by keyword.
**Members** — User profiles identified by `url_token` (found in URLs like `zhihu.com/people/zhang-san`). Use `zhihu_member.py` to view profile and answers.
**Search** — Zhihu supports searching across questions, topics, and people. Use `zhihu_search.py` with the `--type` flag to filter.
## Error Handling
| Error | Cause | Fix |
| ---------------- | --------------------------- | --------------------------------------------------- |
| 401 Unauthorized | Session expired / no cookie | Auto-run `sig login` (no user prompt needed), retry |
| 403 Forbidden | Anti-crawler or rate limit | Wait and retry, or check cookie |
| 404 Not Found | Invalid ID | Check question/answer ID |
| `RATE_LIMITED` | Too many requests | Wait and retry |
## Workflow Examples
### Browse hot questions
1. `sig run zhihu -- bash -c 'python3 <SKILL_DIR>/scripts/zhihu_hot.py --cookie "$SIG_ZHIHU_COOKIE" --limit 10'`
### Read a question and its answers
1. `sig run zhihu -- bash -c 'python3 <SKILL_DIR>/scripts/zhihu_question.py --cookie "$SIG_ZHIHU_COOKIE" --id 20010554 --answers-limit 5'`
### Search for content
1. `sig run zhihu -- bash -c 'python3 <SKILL_DIR>/scripts/zhihu_search.py --cookie "$SIG_ZHIHU_COOKIE" --query "machine learning" --type general --limit 10'`
### View a user profile
1. `sig run zhihu -- bash -c 'python3 <SKILL_DIR>/scripts/zhihu_member.py --cookie "$SIG_ZHIHU_COOKIE" --url-token zhang-san --include-answers'`
### Search topics
1. `sig run zhihu -- bash -c 'python3 <SKILL_DIR>/scripts/zhihu_topic.py --cookie "$SIG_ZHIHU_COOKIE" --query "Python" --limit 5'`
More from sigcli/sigcli
- bilibiliInteract with Bilibili (B站) — browse trending videos, view video details, read comments, search videos and users, view user profiles, like, coin, and favorite videos. Use this skill whenever the user mentions Bilibili, B站, wants to browse Bilibili content, search Bilibili videos, read Bilibili comments, look up Bilibili users, or interact with Bilibili content. Also trigger when the user pastes a Bilibili URL (e.g. bilibili.com/video/BV...) or mentions a BV ID.
- douyinProvide authenticated cookies for Douyin (抖音/TikTok China) — two providers: douyin (www.douyin.com for scraping) and douyin-live (live.douyin.com for livestream). Use this skill whenever the user needs Douyin cookies for scraping tools like DouYin_Spider, or needs to authenticate with Douyin services. Trigger when the user mentions 抖音, Douyin, TikTok China, douyin cookies, or wants to use tools that require Douyin login cookies.
- hackernewsInteract with Hacker News (news.ycombinator.com) — browse top, new, and best stories, read item details and comment threads, look up user profiles, and search posts via Algolia. Use this skill whenever the user mentions Hacker News, HN, YCombinator news, ycombinator.com, news.ycombinator.com, wants to browse tech news, read HN discussions, search HN posts, or look up HN users. Also trigger when the user pastes an HN URL (e.g. news.ycombinator.com/item?id=12345). Keywords: Hacker News, HN, YC, ycombinator, tech news, Show HN, Ask HN, HN front page.
- linkedinInteract with LinkedIn — view your profile, browse other profiles, read the feed, search jobs/posts/people, get job details, create posts, like/unlike posts, comment, send connection requests, and follow/unfollow users. Use this skill whenever the user mentions LinkedIn, wants to search for jobs or people, read their LinkedIn feed, view a profile, get job details, create a post, like or comment on content, send a connection request, or follow someone. Also trigger when the user pastes a LinkedIn URL (e.g. linkedin.com/in/..., linkedin.com/jobs/view/...) or mentions LinkedIn networking.
- msteamsInteract with Microsoft Teams — send and read messages, search conversations, look up people, check calendar, get meeting transcripts, and manage chats. Use this skill whenever the user mentions Teams, MS Teams, Microsoft Teams, wants to send a message, read chat history, search conversations, look up a colleague, check their calendar, find meeting recordings or transcripts, see direct reports or manager, or do anything involving Teams communication. Also trigger when the user asks about scheduling, org chart, people search, or wants to message someone.
- redditInteract with Reddit — browse subreddits, read posts and comments, search content, view user profiles, post comments, vote, save posts, subscribe to subreddits. Use this skill whenever the user mentions Reddit, r/, subreddit, wants to browse Reddit posts, read Reddit discussions, search Reddit, look up Reddit users, or interact with Reddit content. Also trigger when the user pastes a Reddit URL (e.g. reddit.com/r/programming/...) or mentions a subreddit name.
- sigcliGuide Claude to use SigCLI correctly — check auth, login, get credentials, configure providers, and onboard new websites. Trigger when using sig commands, editing ~/.sig/config.yaml, or needing authenticated API access.
- tiktokProvide authenticated cookies for TikTok (www.tiktok.com). Use this skill whenever the user needs TikTok cookies for scraping tools, downloaders, or needs to authenticate with TikTok services. Trigger when the user mentions TikTok, tiktok cookies, or wants to use tools that require TikTok login cookies.
- v2exInteract with V2EX (v2ex.com) — browse hot and latest topics, read topic details and replies, search posts, create topics, reply to discussions, thank posts, favorite topics/nodes, follow members, daily check-in. Use this skill whenever the user mentions V2EX, v2ex.com, wants to browse tech forum topics, read V2EX discussions, search V2EX posts, check V2EX notifications, create or reply to V2EX topics, or look up V2EX users/nodes. Also trigger when the user pastes a V2EX URL (e.g. v2ex.com/t/12345), mentions a V2EX node name, or asks about Chinese tech community discussions. Keywords: V2EX, v2ex, 论坛, 技术社区, 节点, 主题, 回复.
- xInteract with X (Twitter) — view profiles, read tweets and threads, search posts, check trending topics, view followers, post tweets, like, retweet, follow users, and bookmark tweets. Use this skill whenever the user mentions X, Twitter, tweets, @handles, wants to browse X posts, search X, view user profiles, or interact with X content. Also trigger when the user pastes an x.com or twitter.com URL.