@hmawla/co-assistant 1.0.8 → 1.0.10
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 +7 -1
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# 🤖 Co-Assistant
|
|
2
2
|
|
|
3
|
+
[](https://github.com/hmawla/co-assistant/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@hmawla/co-assistant)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
|
|
7
|
+
**[Homepage](https://hmawla.github.io/co-assistant)** · **[npm](https://www.npmjs.com/package/@hmawla/co-assistant)** · **[Plugin Guide](docs/plugin-development.md)** · **[CLI Reference](docs/cli-reference.md)**
|
|
8
|
+
|
|
3
9
|
AI-powered Telegram personal assistant built on the GitHub Copilot SDK.
|
|
4
10
|
|
|
5
11
|
Chat with state-of-the-art AI models (GPT-5, Claude Sonnet 4, o3, and more) directly from Telegram. Extend it with plugins for Gmail, Google Calendar, or build your own.
|
|
@@ -385,7 +391,7 @@ Both files are injected as system-level context on every message:
|
|
|
385
391
|
|
|
386
392
|
| Plugin | Tools provided |
|
|
387
393
|
|--------|---------------|
|
|
388
|
-
| **Gmail** | Search emails, read email, send email,
|
|
394
|
+
| **Gmail** | Search threads, search emails, read email, send email, get thread |
|
|
389
395
|
| **Google Calendar** | List events, create event, update event, delete event |
|
|
390
396
|
|
|
391
397
|
### Install Plugins
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmawla/co-assistant",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "AI-powered Telegram personal assistant using GitHub Copilot SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
],
|
|
24
24
|
"scripts": {
|
|
25
25
|
"build": "tsup",
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"test:watch": "vitest",
|
|
26
28
|
"dev": "tsx src/cli/index.ts",
|
|
27
29
|
"start": "node dist/index.js",
|
|
28
30
|
"cli": "tsx src/cli/index.ts",
|
|
@@ -55,7 +57,7 @@
|
|
|
55
57
|
"bugs": {
|
|
56
58
|
"url": "https://github.com/hmawla/co-assistant/issues"
|
|
57
59
|
},
|
|
58
|
-
"homepage": "https://github.
|
|
60
|
+
"homepage": "https://hmawla.github.io/co-assistant",
|
|
59
61
|
"engines": {
|
|
60
62
|
"node": ">=20.0.0"
|
|
61
63
|
},
|
|
@@ -64,9 +66,9 @@
|
|
|
64
66
|
"better-sqlite3": "^12.8.0",
|
|
65
67
|
"commander": "^14.0.3",
|
|
66
68
|
"dotenv": "^17.4.0",
|
|
69
|
+
"esbuild": ">=0.20.0",
|
|
67
70
|
"pino": "^10.3.1",
|
|
68
71
|
"telegraf": "^4.16.3",
|
|
69
|
-
"esbuild": ">=0.20.0",
|
|
70
72
|
"zod": "^4.3.6"
|
|
71
73
|
},
|
|
72
74
|
"devDependencies": {
|
|
@@ -74,6 +76,7 @@
|
|
|
74
76
|
"@types/node": "^25.5.2",
|
|
75
77
|
"pino-pretty": "^13.1.3",
|
|
76
78
|
"tsup": "^8.5.1",
|
|
77
|
-
"typescript": "^6.0.2"
|
|
79
|
+
"typescript": "^6.0.2",
|
|
80
|
+
"vitest": "^4.1.2"
|
|
78
81
|
}
|
|
79
82
|
}
|