@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 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
@@ -7,6 +7,7 @@ var ToolCategory = /* @__PURE__ */ ((ToolCategory2) => {
7
7
  ToolCategory2["API"] = "api";
8
8
  ToolCategory2["UTILITY"] = "utility";
9
9
  ToolCategory2["CUSTOM"] = "custom";
10
+ ToolCategory2["SKILLS"] = "skills";
10
11
  return ToolCategory2;
11
12
  })(ToolCategory || {});
12
13
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agentforge/core",
3
- "version": "0.13.0",
4
- "description": "Core abstractions for AgentForge - production-ready deep agents framework",
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
- "agents",
21
- "ai",
22
- "langchain",
23
- "langgraph",
24
- "tools"
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",