@agentforge/core 0.16.21 → 0.16.23

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 (2) hide show
  1. package/README.md +10 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,13 +6,13 @@
6
6
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue)](https://www.typescriptlang.org/)
7
7
  [![License](https://img.shields.io/badge/license-MIT-green)](../../LICENSE)
8
8
 
9
- ## 🎉 Status: Production Ready & Published
9
+ ## Status: Production Ready & Published
10
10
 
11
11
  **All features complete** | **500+ tests passing** | **Full TypeScript support** | **Comprehensive documentation**
12
12
 
13
- ## Features
13
+ ## Features
14
14
 
15
- ### 🛠️ Tool System
15
+ ### Tool System
16
16
  - **Rich Metadata** - Categories, tags, examples, and detailed descriptions
17
17
  - **Fluent Builder API** - Easy tool creation with `createTool()`
18
18
  - **Tool Registry** - Centralized management with querying and events
@@ -20,7 +20,7 @@
20
20
  - **Prompt Generation** - Automatic LLM-friendly prompt generation
21
21
  - **113 tests** - Comprehensive test coverage
22
22
 
23
- ### 📊 LangGraph Utilities
23
+ ### LangGraph Utilities
24
24
  - **State Management** - Type-safe state annotations with Zod validation
25
25
  - **Workflow Builders** - Sequential, parallel, and conditional patterns
26
26
  - **Error Handling** - Retry, error handling, and timeout utilities
@@ -35,7 +35,7 @@
35
35
  - **Development Tools** - Logging, debugging, and testing middleware
36
36
  - **94 tests** - Comprehensive middleware testing
37
37
 
38
- ### 🌊 Streaming & Real-time
38
+ ### Streaming & Real-time
39
39
  - **Stream Transformers** - Filter, map, batch, debounce, throttle
40
40
  - **Stream Aggregators** - Collect, reduce, window operations
41
41
  - **SSE Support** - Server-Sent Events for real-time updates
@@ -43,13 +43,13 @@
43
43
  - **Progress Tracking** - Monitor long-running operations
44
44
  - **68 tests** - Full streaming coverage
45
45
 
46
- ### 🛠️ Advanced Tools
46
+ ### Advanced Tools
47
47
  - **Async Execution** - Parallel and sequential tool execution
48
48
  - **Lifecycle Management** - Setup, teardown, and cleanup hooks
49
49
  - **Tool Composition** - Combine tools into pipelines
50
50
  - **Testing Utilities** - Mock tools and test helpers
51
51
 
52
- ### 📦 Resource Management
52
+ ### Resource Management
53
53
  - **Connection Pooling** - Efficient resource reuse
54
54
  - **Memory Management** - Automatic cleanup and limits
55
55
  - **Batch Processing** - Efficient bulk operations
@@ -61,7 +61,7 @@
61
61
  - **Alerts** - Configurable alerting system
62
62
  - **Audit Logging** - Comprehensive activity tracking
63
63
 
64
- ### 🚀 Deployment
64
+ ### Deployment
65
65
  - **Docker Support** - Production-ready containers
66
66
  - **Kubernetes** - Deployment manifests and guides
67
67
  - **CI/CD Templates** - GitHub Actions, GitLab CI
@@ -119,7 +119,7 @@ const app = workflow.compile();
119
119
 
120
120
  ## Documentation
121
121
 
122
- 📚 **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
122
+ - **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
123
123
 
124
124
  ### Core Guides
125
125
  - [Getting Started](https://tvscoundrel.github.io/agentforge/guide/getting-started)
@@ -151,7 +151,7 @@ pnpm test
151
151
  pnpm typecheck
152
152
  ```
153
153
 
154
- ## 🔗 Links
154
+ ## Links
155
155
 
156
156
  - [GitHub Repository](https://github.com/TVScoundrel/agentforge)
157
157
  - [npm Package](https://www.npmjs.com/package/@agentforge/core)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/core",
3
- "version": "0.16.21",
3
+ "version": "0.16.23",
4
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",