@toolpack-sdk/agents 3.0.0 → 3.1.0
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 +5 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Build production-ready AI agents with channels, workflows, and event-driven arch
|
|
|
22
22
|
## Installation
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npm install @toolpack-sdk/agents
|
|
25
|
+
npm install toolpack-sdk @toolpack-sdk/agents
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
## Stable API (Phase 4)
|
|
@@ -561,9 +561,12 @@ const toolpack = await Toolpack.init({
|
|
|
561
561
|
|
|
562
562
|
## Peer Dependencies
|
|
563
563
|
|
|
564
|
-
|
|
564
|
+
Requires `toolpack-sdk` (`^3.1.0`). Optional peers — install only what you need:
|
|
565
565
|
|
|
566
566
|
```bash
|
|
567
|
+
# Knowledge / RAG (optional)
|
|
568
|
+
npm install @toolpack-sdk/knowledge
|
|
569
|
+
|
|
567
570
|
# For DiscordChannel
|
|
568
571
|
npm install discord.js
|
|
569
572
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolpack-sdk/agents",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Production AI agents for Toolpack SDK — 8 channel integrations (Slack, Discord, Telegram, SMS, Email, Webhook, Scheduled, MCP), AgentMind persistent cognitive layer (goals, beliefs, reflections), interceptors, evals, and multi-agent coordination",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20"
|
|
@@ -89,11 +89,11 @@
|
|
|
89
89
|
},
|
|
90
90
|
"peerDependencies": {
|
|
91
91
|
"@opentelemetry/api": "^1.x",
|
|
92
|
-
"@toolpack-sdk/knowledge": "^3.
|
|
92
|
+
"@toolpack-sdk/knowledge": "^3.1.0",
|
|
93
93
|
"better-sqlite3": "^12.6.2",
|
|
94
94
|
"discord.js": "^14.x",
|
|
95
95
|
"nodemailer": "^6.x",
|
|
96
|
-
"toolpack-sdk": "^3.
|
|
96
|
+
"toolpack-sdk": "^3.1.0",
|
|
97
97
|
"twilio": "^5.x"
|
|
98
98
|
},
|
|
99
99
|
"peerDependenciesMeta": {
|