@agentforge/tools 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +32 -8
  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
 
@@ -444,11 +453,26 @@ Contributions are welcome! Please see the main AgentForge repository for contrib
444
453
 
445
454
  MIT
446
455
 
456
+ ## 📖 Documentation
457
+
458
+ - 📚 **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
459
+ - 🚀 **[Quick Start](https://tvscoundrel.github.io/agentforge/guide/quick-start)**
460
+ - 🛠️ **[Tools API Reference](https://tvscoundrel.github.io/agentforge/api/tools)**
461
+ - 💡 **[Custom Tools Tutorial](https://tvscoundrel.github.io/agentforge/tutorials/custom-tools)**
462
+ - 📦 **[Examples](https://tvscoundrel.github.io/agentforge/examples/custom-tools)**
463
+
447
464
  ## 🔗 Links
448
465
 
449
- - [AgentForge Documentation](https://github.com/agentforge/agentforge)
450
- - [Tool Builder API](../core/docs/TOOL_BUILDER.md)
451
- - [LangChain Integration](../core/docs/LANGCHAIN_INTEGRATION.md)
466
+ - [GitHub Repository](https://github.com/TVScoundrel/agentforge)
467
+ - [npm Package](https://www.npmjs.com/package/@agentforge/tools)
468
+ - [Report Issues](https://github.com/TVScoundrel/agentforge/issues)
469
+
470
+ ## 📚 Related Packages
471
+
472
+ - [@agentforge/core](https://www.npmjs.com/package/@agentforge/core) - Core abstractions
473
+ - [@agentforge/patterns](https://www.npmjs.com/package/@agentforge/patterns) - Agent patterns
474
+ - [@agentforge/testing](https://www.npmjs.com/package/@agentforge/testing) - Testing utilities
475
+ - [@agentforge/cli](https://www.npmjs.com/package/@agentforge/cli) - CLI tool
452
476
 
453
477
  ---
454
478
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/tools",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
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.2"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@eslint/js": "^9.17.0",