@laiye-adp/agentic-doc-parse-and-extract-cli 1.11.0-beta.4 → 1.11.0-beta.5
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 +11 -1
- package/README.zh.md +11 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -19,7 +19,17 @@ Official command-line tool for [Laiye ADP (Agentic Document Processing)](https:/
|
|
|
19
19
|
|
|
20
20
|
`.jpg` `.jpeg` `.png` `.bmp` `.tiff` `.tif` `.pdf` `.doc` `.docx` `.xls` `.xlsx` `.ppt` `.pptx` (max 50MB per file)
|
|
21
21
|
|
|
22
|
-
##
|
|
22
|
+
## Agent Integration
|
|
23
|
+
|
|
24
|
+
If you are an AI agent, install the ADP skills:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npx skills add https://github.com/laiye-ai/adp-cli -y -g
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
The skills package will guide you through CLI installation, authentication, and usage automatically.
|
|
31
|
+
|
|
32
|
+
## Install (Manual)
|
|
23
33
|
|
|
24
34
|
```bash
|
|
25
35
|
# npm (recommended)
|
package/README.zh.md
CHANGED
|
@@ -19,7 +19,17 @@
|
|
|
19
19
|
|
|
20
20
|
`.jpg` `.jpeg` `.png` `.bmp` `.tiff` `.tif` `.pdf` `.doc` `.docx` `.xls` `.xlsx` `.ppt` `.pptx`(单文件最大 50MB)
|
|
21
21
|
|
|
22
|
-
##
|
|
22
|
+
## Agent 集成
|
|
23
|
+
|
|
24
|
+
如果你是 AI Agent,安装 ADP skills:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npx skills add https://github.com/laiye-ai/adp-cli -y -g
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Skills 会自动引导 CLI 安装、认证配置和使用。
|
|
31
|
+
|
|
32
|
+
## 安装(手动)
|
|
23
33
|
|
|
24
34
|
```bash
|
|
25
35
|
# npm(推荐)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@laiye-adp/agentic-doc-parse-and-extract-cli",
|
|
3
|
-
"version": "1.11.0-beta.
|
|
3
|
+
"version": "1.11.0-beta.5",
|
|
4
4
|
"description": "Official CLI for Laiye ADP (Agentic Document Processing) - document parsing and intelligent extraction",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adp",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"arm64"
|
|
40
40
|
],
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@laiye-adp/adp-cli-linux-x64": "1.11.0-beta.
|
|
43
|
-
"@laiye-adp/adp-cli-linux-arm64": "1.11.0-beta.
|
|
44
|
-
"@laiye-adp/adp-cli-darwin-x64": "1.11.0-beta.
|
|
45
|
-
"@laiye-adp/adp-cli-darwin-arm64": "1.11.0-beta.
|
|
46
|
-
"@laiye-adp/adp-cli-win32-x64": "1.11.0-beta.
|
|
47
|
-
"@laiye-adp/adp-cli-win32-arm64": "1.11.0-beta.
|
|
42
|
+
"@laiye-adp/adp-cli-linux-x64": "1.11.0-beta.5",
|
|
43
|
+
"@laiye-adp/adp-cli-linux-arm64": "1.11.0-beta.5",
|
|
44
|
+
"@laiye-adp/adp-cli-darwin-x64": "1.11.0-beta.5",
|
|
45
|
+
"@laiye-adp/adp-cli-darwin-arm64": "1.11.0-beta.5",
|
|
46
|
+
"@laiye-adp/adp-cli-win32-x64": "1.11.0-beta.5",
|
|
47
|
+
"@laiye-adp/adp-cli-win32-arm64": "1.11.0-beta.5"
|
|
48
48
|
}
|
|
49
49
|
}
|