@dawnswwwww/zhihu-cli 0.1.2 → 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.
Files changed (2) hide show
  1. package/README.md +18 -2
  2. 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 |
@@ -91,8 +107,8 @@ See [docs/development.md](docs/development.md) for the full workflow.
91
107
  Pushing a SemVer tag triggers the release workflow:
92
108
 
93
109
  ```bash
94
- git tag -a v0.1.2 -m "Release 0.1.2"
95
- git push origin v0.1.2
110
+ git tag -a v0.1.3 -m "Release 0.1.3"
111
+ git push origin v0.1.3
96
112
  ```
97
113
 
98
114
  This builds cross-platform binaries, creates a GitHub Release, publishes `zhihu-cli` to npm, and updates the Homebrew tap.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dawnswwwww/zhihu-cli",
3
- "version": "0.1.2",
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.2",
19
- "@dawnswwwww/zhihu-cli-darwin-arm64": "0.1.2",
20
- "@dawnswwwww/zhihu-cli-linux-x64": "0.1.2",
21
- "@dawnswwwww/zhihu-cli-linux-arm64": "0.1.2",
22
- "@dawnswwwww/zhihu-cli-win32-x64": "0.1.2"
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"]