@agentforge/tools 0.12.6 → 0.13.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 +16 -0
- package/dist/index.cjs +5207 -57
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1894 -248
- package/dist/index.d.ts +1894 -248
- package/dist/index.js +5171 -58
- package/dist/index.js.map +1 -1
- package/package.json +25 -3
package/README.md
CHANGED
|
@@ -20,6 +20,22 @@ pnpm add @agentforge/tools
|
|
|
20
20
|
yarn add @agentforge/tools
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
+
### Optional Peer Dependencies
|
|
24
|
+
|
|
25
|
+
Some tools require additional peer dependencies. Install only what you need:
|
|
26
|
+
|
|
27
|
+
**Relational Database Tools** (PostgreSQL, MySQL, SQLite):
|
|
28
|
+
```bash
|
|
29
|
+
# PostgreSQL
|
|
30
|
+
pnpm add pg @types/pg
|
|
31
|
+
|
|
32
|
+
# MySQL
|
|
33
|
+
pnpm add mysql2
|
|
34
|
+
|
|
35
|
+
# SQLite
|
|
36
|
+
pnpm add better-sqlite3 @types/better-sqlite3
|
|
37
|
+
```
|
|
38
|
+
|
|
23
39
|
## 🎯 Overview
|
|
24
40
|
|
|
25
41
|
This package provides **88 ready-to-use tools** organized into 5 categories:
|