docz-cli 0.2.1 → 0.2.2

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 +10 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -146,6 +146,16 @@ Add to your MCP settings:
146
146
  | `docsync_delete` | Delete file/folder |
147
147
  | `docsync_file_history` | View change history |
148
148
 
149
+ ## AI Agent Skill
150
+
151
+ Install as a [reskill](https://github.com/kanyun-inc/reskill) skill to teach AI agents how to use docz-cli:
152
+
153
+ ```bash
154
+ npx reskill install github:kanyun-inc/docz-cli/skills -a claude-code cursor -y
155
+ ```
156
+
157
+ The skill provides command reference, usage scenarios, and addressing format documentation so agents can autonomously browse, read, and write DocSync documents.
158
+
149
159
  ## API Reference
150
160
 
151
161
  docz-cli wraps the DocSync REST API:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docz-cli",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "DocSync CLI — read and write company documents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",