@dawnswwwww/zhihu-cli 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -49,6 +49,22 @@ zhihu search global "Rust 入门" --count 5
|
|
|
49
49
|
zhihu ask "Rust 和 Go 怎么选?" --model thinking
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
+
## Claude Skill
|
|
53
|
+
|
|
54
|
+
This repository includes a Claude skill to help you use `zhihu-cli` from Claude Code or Claude.ai.
|
|
55
|
+
|
|
56
|
+
Install it with the [Skills CLI](https://skills.sh/):
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
# Install from GitHub
|
|
60
|
+
npx skills add dawnswwwww/zhihu-cli
|
|
61
|
+
|
|
62
|
+
# Or install globally
|
|
63
|
+
npx skills add dawnswwwww/zhihu-cli -g
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Once installed, Claude will automatically use the skill whenever you ask about searching Zhihu, using the Zhida API, or configuring `zhihu-cli`.
|
|
67
|
+
|
|
52
68
|
## Commands
|
|
53
69
|
|
|
54
70
|
| Command | Description |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dawnswwwww/zhihu-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "CLI for the Zhihu Open Platform API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"README.md"
|
|
16
16
|
],
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@dawnswwwww/zhihu-cli-darwin-x64": "0.1.
|
|
19
|
-
"@dawnswwwww/zhihu-cli-darwin-arm64": "0.1.
|
|
20
|
-
"@dawnswwwww/zhihu-cli-linux-x64": "0.1.
|
|
21
|
-
"@dawnswwwww/zhihu-cli-linux-arm64": "0.1.
|
|
22
|
-
"@dawnswwwww/zhihu-cli-win32-x64": "0.1.
|
|
18
|
+
"@dawnswwwww/zhihu-cli-darwin-x64": "0.1.4",
|
|
19
|
+
"@dawnswwwww/zhihu-cli-darwin-arm64": "0.1.4",
|
|
20
|
+
"@dawnswwwww/zhihu-cli-linux-x64": "0.1.4",
|
|
21
|
+
"@dawnswwwww/zhihu-cli-linux-arm64": "0.1.4",
|
|
22
|
+
"@dawnswwwww/zhihu-cli-win32-x64": "0.1.4"
|
|
23
23
|
},
|
|
24
24
|
"os": ["darwin", "linux", "win32"],
|
|
25
25
|
"cpu": ["x64", "arm64"]
|