@openacp/cli 2026.403.1 → 2026.403.3
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 +25 -8
- package/dist/cli.js +488 -455
- package/dist/cli.js.map +1 -1
- package/dist/index.js +282 -272
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,29 +47,46 @@ Your Codebase
|
|
|
47
47
|
</table>
|
|
48
48
|
</div>
|
|
49
49
|
|
|
50
|
-
##
|
|
50
|
+
## Installation
|
|
51
|
+
|
|
52
|
+
**Requirements:** Node.js 20+ (the installer handles this for you)
|
|
53
|
+
|
|
54
|
+
### macOS
|
|
51
55
|
|
|
52
56
|
```bash
|
|
53
|
-
# macOS / Linux
|
|
54
57
|
curl -fsSL https://raw.githubusercontent.com/Open-ACP/OpenACP/main/scripts/install.sh | bash
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### Linux
|
|
55
61
|
|
|
56
|
-
|
|
62
|
+
```bash
|
|
63
|
+
curl -fsSL https://raw.githubusercontent.com/Open-ACP/OpenACP/main/scripts/install.sh | bash
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
> Works on Debian/Ubuntu, Fedora/RHEL, Arch, and other distros. Also supports WSL (Windows Subsystem for Linux).
|
|
67
|
+
|
|
68
|
+
### Windows
|
|
69
|
+
|
|
70
|
+
Open PowerShell and run:
|
|
71
|
+
|
|
72
|
+
```powershell
|
|
57
73
|
powershell -c "irm https://raw.githubusercontent.com/Open-ACP/OpenACP/main/scripts/install.ps1 | iex"
|
|
58
74
|
```
|
|
59
75
|
|
|
60
|
-
|
|
76
|
+
> Requires PowerShell 5.1+ (built into Windows 10/11).
|
|
77
|
+
|
|
78
|
+
### Manual install via npm
|
|
61
79
|
|
|
62
|
-
|
|
63
|
-
<summary>Or install via npm</summary>
|
|
80
|
+
If you already have Node.js 20+ installed:
|
|
64
81
|
|
|
65
82
|
```bash
|
|
66
83
|
npm install -g @openacp/cli
|
|
67
84
|
openacp
|
|
68
85
|
```
|
|
69
86
|
|
|
70
|
-
|
|
87
|
+
---
|
|
71
88
|
|
|
72
|
-
|
|
89
|
+
After installation, the **interactive setup wizard** walks you through everything:
|
|
73
90
|
|
|
74
91
|
1. Choose your platform (Telegram, Discord, Slack, or multiple)
|
|
75
92
|
2. Connect your bot (token validation + auto-detection)
|