@openacp/cli 2026.402.5 → 2026.403.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.
- package/README.md +25 -8
- package/dist/{channel-DzDoNxa7.d.ts → channel-BL33p1ZP.d.ts} +1 -1
- package/dist/cli.js +1263 -854
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1459 -1438
- package/dist/index.js +14843 -14224
- package/dist/index.js.map +1 -1
- package/dist/testing.d.ts +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)
|
|
@@ -519,4 +519,4 @@ declare abstract class ChannelAdapter<TCore = unknown> implements IChannelAdapte
|
|
|
519
519
|
archiveSessionTopic(_sessionId: string): Promise<void>;
|
|
520
520
|
}
|
|
521
521
|
|
|
522
|
-
export { type ToolUpdateMeta as $, type
|
|
522
|
+
export { type ToolUpdateMeta as $, type Attachment as A, type ModelInfo as B, type ConfigOption as C, type DisplayVerbosity as D, type NewSessionResponse as E, type PermissionOption as F, type PromptResponse as G, type RegistryBinaryTarget as H, type IChannelAdapter as I, type RegistryDistribution as J, KIND_ICONS as K, STATUS_ICONS as L, type McpServerConfig as M, type NotificationMessage as N, type OutgoingMessage as O, type PermissionRequest as P, type SessionListItem as Q, type RegistryAgent as R, type StopReason as S, type ToolCallMeta as T, type UsageRecord as U, type ViewerLinks as V, type SessionListResponse as W, type SessionMode as X, type SessionModeState as Y, type SessionModelState as Z, type TelegramPlatformData as _, type AgentEvent as a, type AgentCapabilities as b, type AgentDefinition as c, type SetConfigOptionValue as d, type InstalledAgent as e, type AgentListItem as f, type AvailabilityResult as g, type InstallProgress as h, type InstallResult as i, type SessionStatus as j, type AgentSwitchEntry as k, type AgentCommand as l, type SessionRecord as m, type UsageRecordEvent as n, type IncomingMessage as o, type ChannelConfig as p, type AdapterCapabilities as q, type OutputMode as r, type PlanEntry as s, type AgentDistribution as t, type AuthMethod as u, type AuthenticateRequest as v, ChannelAdapter as w, type ConfigSelectChoice as x, type ConfigSelectGroup as y, type ContentBlock as z };
|