@agentforge/core 0.13.0 → 0.15.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/dist/index.cjs +1 -0
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +1 -0
- package/package.json +15 -7
package/dist/index.cjs
CHANGED
|
@@ -182,6 +182,7 @@ var ToolCategory = /* @__PURE__ */ ((ToolCategory2) => {
|
|
|
182
182
|
ToolCategory2["API"] = "api";
|
|
183
183
|
ToolCategory2["UTILITY"] = "utility";
|
|
184
184
|
ToolCategory2["CUSTOM"] = "custom";
|
|
185
|
+
ToolCategory2["SKILLS"] = "skills";
|
|
185
186
|
return ToolCategory2;
|
|
186
187
|
})(ToolCategory || {});
|
|
187
188
|
|
package/dist/index.d.cts
CHANGED
|
@@ -58,7 +58,12 @@ declare enum ToolCategory {
|
|
|
58
58
|
* Custom/user-defined tools
|
|
59
59
|
* Use this for tools that don't fit other categories
|
|
60
60
|
*/
|
|
61
|
-
CUSTOM = "custom"
|
|
61
|
+
CUSTOM = "custom",
|
|
62
|
+
/**
|
|
63
|
+
* Tools for Agent Skills activation and resource loading
|
|
64
|
+
* Examples: activate-skill, read-skill-resource
|
|
65
|
+
*/
|
|
66
|
+
SKILLS = "skills"
|
|
62
67
|
}
|
|
63
68
|
/**
|
|
64
69
|
* ToolExample - Example usage of a tool
|
package/dist/index.d.ts
CHANGED
|
@@ -58,7 +58,12 @@ declare enum ToolCategory {
|
|
|
58
58
|
* Custom/user-defined tools
|
|
59
59
|
* Use this for tools that don't fit other categories
|
|
60
60
|
*/
|
|
61
|
-
CUSTOM = "custom"
|
|
61
|
+
CUSTOM = "custom",
|
|
62
|
+
/**
|
|
63
|
+
* Tools for Agent Skills activation and resource loading
|
|
64
|
+
* Examples: activate-skill, read-skill-resource
|
|
65
|
+
*/
|
|
66
|
+
SKILLS = "skills"
|
|
62
67
|
}
|
|
63
68
|
/**
|
|
64
69
|
* ToolExample - Example usage of a tool
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentforge/core",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.15.0",
|
|
4
|
+
"description": "Production-ready TypeScript agent framework built on LangGraph with orchestration, middleware, and typed abstractions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -17,11 +17,19 @@
|
|
|
17
17
|
"dist"
|
|
18
18
|
],
|
|
19
19
|
"keywords": [
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
20
|
+
"agent-framework",
|
|
21
|
+
"llm-framework",
|
|
22
|
+
"ai-framework",
|
|
23
|
+
"typescript",
|
|
24
|
+
"nodejs",
|
|
25
|
+
"langchain-typescript",
|
|
26
|
+
"langgraph-typescript",
|
|
27
|
+
"agent-orchestration",
|
|
28
|
+
"workflow-engine",
|
|
29
|
+
"ai-middleware",
|
|
30
|
+
"typed-agents",
|
|
31
|
+
"production-ai",
|
|
32
|
+
"agent-runtime"
|
|
25
33
|
],
|
|
26
34
|
"author": "Tom Van Schoor",
|
|
27
35
|
"license": "MIT",
|