@agentforge/tools 0.1.0 → 0.1.1

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 +14 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # @agentforge/tools
2
2
 
3
- > Standard tools collection for AgentForge framework - 68 production-ready tools for web, data, file, and utility operations.
3
+ > Production-ready tools collection for AgentForge - 68 tools for web, data, file, and utility operations
4
+
5
+ [![npm version](https://img.shields.io/npm/v/@agentforge/tools)](https://www.npmjs.com/package/@agentforge/tools)
6
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue)](https://www.typescriptlang.org/)
7
+ [![License](https://img.shields.io/badge/license-MIT-green)](../../LICENSE)
8
+
9
+ ## 🎉 Status: Production Ready & Published
10
+
11
+ **68 production-ready tools** | **Full TypeScript support** | **Comprehensive documentation** | **LangChain compatible**
4
12
 
5
13
  ## 📦 Installation
6
14
 
@@ -14,19 +22,20 @@ yarn add @agentforge/tools
14
22
 
15
23
  ## 🎯 Overview
16
24
 
17
- This package provides a comprehensive collection of **68 ready-to-use tools** organized into four categories:
25
+ This package provides **68 ready-to-use tools** organized into 4 categories:
18
26
 
19
27
  - **🌐 Web Tools** (10 tools) - HTTP requests, web scraping, HTML parsing, URL manipulation
20
28
  - **📊 Data Tools** (18 tools) - JSON, CSV, XML processing and data transformation
21
29
  - **📁 File Tools** (18 tools) - File operations, directory management, path utilities
22
30
  - **🔧 Utility Tools** (22 tools) - Date/time, strings, math, validation
23
31
 
24
- All tools are built using the AgentForge tool builder API with:
25
- - ✅ Full TypeScript support
32
+ All tools feature:
33
+ - ✅ Full TypeScript support with type inference
26
34
  - ✅ Zod schema validation
27
35
  - ✅ Comprehensive error handling
28
- - ✅ Detailed documentation
36
+ - ✅ Detailed documentation and examples
29
37
  - ✅ LangChain compatibility
38
+ - ✅ Production-tested and ready
30
39
 
31
40
  ## 🚀 Quick Start
32
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/tools",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Standard tools collection for AgentForge framework - web, data, file, and utility tools",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,7 +25,7 @@
25
25
  "csv-stringify": "^6.5.2",
26
26
  "fast-xml-parser": "^4.5.0",
27
27
  "date-fns": "^4.1.0",
28
- "@agentforge/core": "0.1.0"
28
+ "@agentforge/core": "0.1.1"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@eslint/js": "^9.17.0",