@avemeva/agent-telegram 0.1.15 → 0.1.17

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 +6 -10
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -25,19 +25,19 @@ brew install avemeva/tap/agent-telegram
25
25
  ### curl (macOS/Linux)
26
26
 
27
27
  ```bash
28
- curl -fsSL https://raw.githubusercontent.com/avemeva/kurier/main/install | bash
28
+ curl -fsSL https://kurier.sh/install | bash
29
29
  ```
30
30
 
31
31
  ### PowerShell (Windows)
32
32
 
33
33
  ```powershell
34
- irm https://raw.githubusercontent.com/avemeva/kurier/main/install.ps1 | iex
34
+ irm https://kurier.sh/install.ps1 | iex
35
35
  ```
36
36
 
37
37
  ### CMD (Windows)
38
38
 
39
39
  ```cmd
40
- curl -fsSL https://raw.githubusercontent.com/avemeva/kurier/main/install.cmd -o install.cmd && install.cmd
40
+ curl -fsSL https://kurier.sh/install.cmd -o install.cmd && install.cmd
41
41
  ```
42
42
 
43
43
  ### Verify
@@ -52,9 +52,7 @@ agent-telegram doctor
52
52
  agent-telegram connects to your **real Telegram account** — it reads and sends actual messages, not a sandbox. Authenticate before first use:
53
53
 
54
54
  ```bash
55
- agent-telegram auth phone +1234567890 # Your phone number
56
- agent-telegram auth code 12345 # Code from Telegram
57
- agent-telegram auth password <pass> # 2FA password (if enabled)
55
+ agent-telegram login # Log in to Telegram (interactive)
58
56
  agent-telegram me # Verify connection
59
57
  ```
60
58
 
@@ -133,10 +131,8 @@ agent-telegram daemon start | stop | status | log
133
131
  ### Auth
134
132
 
135
133
  ```bash
136
- agent-telegram auth # Check auth state
137
- agent-telegram auth phone <number> # Submit phone number
138
- agent-telegram auth code <code> # Submit verification code
139
- agent-telegram auth password <password> # Submit 2FA password
134
+ agent-telegram login # Log in to Telegram (interactive)
135
+ agent-telegram logout # Log out of Telegram
140
136
  ```
141
137
 
142
138
  ### Advanced
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avemeva/agent-telegram",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "Telegram CLI for AI agents",
5
5
  "bin": {
6
6
  "agent-telegram": "./bin/agent-telegram.js"
@@ -9,11 +9,11 @@
9
9
  "postinstall": "node ./postinstall.mjs"
10
10
  },
11
11
  "optionalDependencies": {
12
- "@avemeva/agent-telegram-win32-x64": "0.1.15",
13
- "@avemeva/agent-telegram-darwin-x64": "0.1.15",
14
- "@avemeva/agent-telegram-linux-arm64": "0.1.15",
15
- "@avemeva/agent-telegram-darwin-arm64": "0.1.15",
16
- "@avemeva/agent-telegram-linux-x64": "0.1.15"
12
+ "@avemeva/agent-telegram-win32-x64": "0.1.17",
13
+ "@avemeva/agent-telegram-darwin-x64": "0.1.17",
14
+ "@avemeva/agent-telegram-linux-arm64": "0.1.17",
15
+ "@avemeva/agent-telegram-darwin-arm64": "0.1.17",
16
+ "@avemeva/agent-telegram-linux-x64": "0.1.17"
17
17
  },
18
18
  "license": "GPL-3.0",
19
19
  "repository": {