alvin-bot 3.0.1 → 3.0.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 +12 -4
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -61,7 +61,15 @@ Alvin Bot is an open-source, self-hosted AI agent that lives where you chat. Bui
|
|
|
61
61
|
|
|
62
62
|
That's it. No paid subscriptions required — free AI providers available.
|
|
63
63
|
|
|
64
|
-
###
|
|
64
|
+
### Option 1: npm (recommended)
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
npm install -g alvin-bot
|
|
68
|
+
alvin-bot setup # Interactive wizard
|
|
69
|
+
alvin-bot start # Start the bot
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### Option 2: From source
|
|
65
73
|
|
|
66
74
|
```bash
|
|
67
75
|
git clone https://github.com/alvbln/alvin-bot.git
|
|
@@ -82,7 +90,7 @@ Download the pre-built installer for your platform:
|
|
|
82
90
|
|
|
83
91
|
| Platform | File | Architecture |
|
|
84
92
|
|----------|------|-------------|
|
|
85
|
-
| macOS | `Alvin Bot-3.0.0-arm64.dmg
|
|
93
|
+
| macOS | [`Alvin Bot-3.0.1-arm64.dmg`](https://github.com/alvbln/alvin-bot/releases/download/v3.0.1/Alvin.Bot-3.0.1-arm64.dmg) | Apple Silicon (M1+) |
|
|
86
94
|
| Windows | Coming soon | x64 |
|
|
87
95
|
| Linux | Coming soon | x64 |
|
|
88
96
|
|
|
@@ -415,12 +423,12 @@ alvin-bot version # Show version
|
|
|
415
423
|
- [ ] Windows `.exe` (NSIS) via electron-builder
|
|
416
424
|
- [ ] Linux `.AppImage` + `.deb` via electron-builder
|
|
417
425
|
- [x] Auto-update mechanism (electron-updater)
|
|
418
|
-
- [
|
|
426
|
+
- [x] GUI Setup Wizard (provider selection, Telegram token, first-run experience)
|
|
419
427
|
- [x] Homebrew formula (`brew install alvin-bot`)
|
|
420
428
|
- [x] Scoop manifest for Windows
|
|
421
429
|
- [x] One-line install script (`curl -fsSL https://install.alvin-bot.dev | sh`)
|
|
422
430
|
- [x] Docker Compose polish (production-ready `docker-compose.yml`)
|
|
423
|
-
- [
|
|
431
|
+
- [x] **Phase 13** — npm publish (security audit)
|
|
424
432
|
|
|
425
433
|
---
|
|
426
434
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alvin-bot",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "Alvin Bot
|
|
3
|
+
"version": "3.0.2",
|
|
4
|
+
"description": "Alvin Bot — Your personal AI agent on Telegram, WhatsApp, Discord, Signal, and Web.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -128,8 +128,7 @@
|
|
|
128
128
|
"!**/*.log",
|
|
129
129
|
"!**/*.bak"
|
|
130
130
|
],
|
|
131
|
-
"afterPack": "./electron/afterPack.cjs"
|
|
132
|
-
"main": "electron/dist/main.cjs"
|
|
131
|
+
"afterPack": "./electron/afterPack.cjs"
|
|
133
132
|
},
|
|
134
133
|
"keywords": [
|
|
135
134
|
"telegram",
|