@hazeljs/agent 0.2.0-beta.48 → 0.2.0-beta.49
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/README.md +4 -2
- package/coverage/clover.xml +2 -2
- package/coverage/lcov-report/index.html +1 -1
- package/logs/combined.log +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @hazeljs/agent
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Build AI agents that actually do things.**
|
|
4
|
+
|
|
5
|
+
Stateful, tool-using, memory-enabled. Define tools with `@Tool`, add approval workflows for sensitive actions, integrate RAG. Production-grade agents without the complexity.
|
|
4
6
|
|
|
5
7
|
[](https://www.npmjs.com/package/@hazeljs/agent)
|
|
6
8
|
[](https://www.npmjs.com/package/@hazeljs/agent)
|
|
@@ -8,7 +10,7 @@
|
|
|
8
10
|
|
|
9
11
|
## Overview
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
Unlike stateless request handlers, agents are:
|
|
12
14
|
|
|
13
15
|
- **Stateful** - Maintain context across multiple steps
|
|
14
16
|
- **Long-running** - Execute complex workflows over time
|
package/coverage/clover.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
2
|
+
<coverage generated="1772306129975" clover="3.2.0">
|
|
3
|
+
<project timestamp="1772306129975" name="All files">
|
|
4
4
|
<metrics statements="1069" coveredstatements="1006" conditionals="350" coveredconditionals="286" methods="250" coveredmethods="237" elements="1669" coveredelements="1529" complexity="0" loc="1069" ncloc="1069" packages="10" files="23" classes="23"/>
|
|
5
5
|
<package name="src">
|
|
6
6
|
<metrics statements="23" coveredstatements="21" conditionals="5" coveredconditionals="3" methods="12" coveredmethods="12"/>
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
237
237
|
Code coverage generated by
|
|
238
238
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
239
|
-
at 2026-02-
|
|
239
|
+
at 2026-02-28T19:15:29.947Z
|
|
240
240
|
</div>
|
|
241
241
|
<script src="prettify.js"></script>
|
|
242
242
|
<script>
|
package/logs/combined.log
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2026-02-
|
|
1
|
+
2026-02-28 19:15:23 [INFO] Application started | {"service":"hazeljs","version":"0.1.0","environment":"test"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hazeljs/agent",
|
|
3
|
-
"version": "0.2.0-beta.
|
|
3
|
+
"version": "0.2.0-beta.49",
|
|
4
4
|
"description": "AI-native Agent Runtime for HazelJS - stateful, long-running agents with tools, memory, and human-in-the-loop",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"directory": "packages/agent"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@hazeljs/core": "^0.2.0-beta.
|
|
34
|
-
"@hazeljs/rag": "^0.2.0-beta.
|
|
35
|
-
"@hazeljs/resilience": "^0.2.0-beta.
|
|
33
|
+
"@hazeljs/core": "^0.2.0-beta.49",
|
|
34
|
+
"@hazeljs/rag": "^0.2.0-beta.49",
|
|
35
|
+
"@hazeljs/resilience": "^0.2.0-beta.49",
|
|
36
36
|
"reflect-metadata": "^0.2.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"url": "https://github.com/hazeljs/hazel-js/issues"
|
|
62
62
|
},
|
|
63
63
|
"homepage": "https://hazeljs.com",
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "263b1f8c87ad9008ae21b6472860eb1b6cf1a6ce"
|
|
65
65
|
}
|