@hazeljs/agent 0.4.0 → 0.5.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/README.md +13 -1
- package/coverage/clover.xml +371 -306
- package/coverage/lcov-report/index.html +50 -50
- package/coverage/lcov.info +687 -559
- package/dist/agent.module.d.ts +47 -5
- package/dist/agent.module.d.ts.map +1 -1
- package/dist/agent.module.js +182 -13
- package/dist/agent.module.js.map +1 -1
- package/dist/decorators/agent.decorator.d.ts +5 -1
- package/dist/decorators/agent.decorator.d.ts.map +1 -1
- package/dist/decorators/agent.decorator.js +15 -1
- package/dist/decorators/agent.decorator.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/registry/tool.registry.d.ts.map +1 -1
- package/dist/registry/tool.registry.js +4 -1
- package/dist/registry/tool.registry.js.map +1 -1
- package/dist/runtime/agent.runtime.d.ts +5 -0
- package/dist/runtime/agent.runtime.d.ts.map +1 -1
- package/dist/runtime/agent.runtime.js +9 -0
- package/dist/runtime/agent.runtime.js.map +1 -1
- package/logs/combined.log +1 -1
- package/package.json +6 -6
- package/tsconfig.tsbuildinfo +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
**Build AI agents that actually do things.**
|
|
4
4
|
|
|
5
|
-
Stateful, tool-using, memory-enabled. Define tools with `@Tool`, delegate between agents with `@Delegate`, orchestrate multi-agent pipelines with `AgentGraph`, and route tasks automatically with `SupervisorAgent`. Production-grade agent infrastructure without the complexity.
|
|
5
|
+
Part of the HazelJS AI-Native Backend Framework. Stateful, tool-using, memory-enabled. Define tools with `@Tool`, delegate between agents with `@Delegate`, orchestrate multi-agent pipelines with `AgentGraph`, and route tasks automatically with `SupervisorAgent`. Production-grade agent infrastructure without the complexity.
|
|
6
|
+
|
|
7
|
+
**🚀 Trusted by 200K+ monthly downloads • 37+ GitHub stars • 15+ daily active developers**
|
|
6
8
|
|
|
7
9
|
[](https://www.npmjs.com/package/@hazeljs/agent)
|
|
8
10
|
[](https://www.npmjs.com/package/@hazeljs/agent)
|
|
9
11
|
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
10
12
|
|
|
13
|
+
## Why @hazeljs/agent?
|
|
14
|
+
|
|
15
|
+
Built for **AI-native applications** - not just another agent framework. When you combine @hazeljs/agent with @hazeljs/core, @hazeljs/ai, and @hazeljs/rag, you get a complete stack for intelligent backends.
|
|
16
|
+
|
|
17
|
+
**Perfect for:**
|
|
18
|
+
- AI startups building production agent systems
|
|
19
|
+
- Teams creating customer support or automation agents
|
|
20
|
+
- Developers who want stateful, long-running workflows
|
|
21
|
+
- Projects needing multi-agent orchestration
|
|
22
|
+
|
|
11
23
|
## Overview
|
|
12
24
|
|
|
13
25
|
Unlike stateless request handlers, agents are:
|