@agentforge/tools 0.1.1 → 0.1.3

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 (3) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +18 -3
  3. package/package.json +2 -2
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Tom Van Schoor
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
package/README.md CHANGED
@@ -453,11 +453,26 @@ Contributions are welcome! Please see the main AgentForge repository for contrib
453
453
 
454
454
  MIT
455
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
+
456
464
  ## 🔗 Links
457
465
 
458
- - [AgentForge Documentation](https://github.com/agentforge/agentforge)
459
- - [Tool Builder API](../core/docs/TOOL_BUILDER.md)
460
- - [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
461
476
 
462
477
  ---
463
478
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/tools",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
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.1"
28
+ "@agentforge/core": "0.1.3"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@eslint/js": "^9.17.0",