@agentforge/patterns 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 +22 -22
  2. package/package.json +3 -3
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 4 patterns complete** | **143 tests passing** | **Full TypeScript support** | **Comprehensive documentation**
12
12
 
13
- ## 🤖 Agent Patterns
13
+ ## Agent Patterns
14
14
 
15
- ### ReAct Pattern (Reasoning and Action)
15
+ ### ReAct Pattern (Reasoning and Action)
16
16
 
17
17
  The ReAct pattern implements a thought-action-observation loop for exploratory tasks:
18
18
 
@@ -30,7 +30,7 @@ The ReAct pattern implements a thought-action-observation loop for exploratory t
30
30
  - Comprehensive error handling
31
31
  - **55 tests** - Full coverage
32
32
 
33
- ### Plan-Execute Pattern
33
+ ### Plan-Execute Pattern
34
34
 
35
35
  The Plan-Execute pattern separates planning from execution for complex, structured tasks:
36
36
 
@@ -49,7 +49,7 @@ The Plan-Execute pattern separates planning from execution for complex, structur
49
49
  - Progress tracking
50
50
  - **35+ tests** - Comprehensive coverage
51
51
 
52
- ### Reflection Pattern
52
+ ### Reflection Pattern
53
53
 
54
54
  The Reflection pattern implements iterative self-improvement through critique and revision:
55
55
 
@@ -68,7 +68,7 @@ The Reflection pattern implements iterative self-improvement through critique an
68
68
  - Configurable iteration limits
69
69
  - **30+ tests** - Full coverage
70
70
 
71
- ### Multi-Agent Pattern
71
+ ### Multi-Agent Pattern
72
72
 
73
73
  The Multi-Agent pattern coordinates multiple specialized agents for complex tasks:
74
74
 
@@ -284,19 +284,19 @@ console.log(result.response); // Aggregated response
284
284
 
285
285
  ## Documentation
286
286
 
287
- ### 📖 Pattern Guides (GitHub Pages)
288
- - 🤖 **[ReAct Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/react)** - Comprehensive ReAct usage guide
289
- - 📋 **[Plan-Execute Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/plan-execute)** - Comprehensive Plan-Execute guide
290
- - 🔄 **[Reflection Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/reflection)** - Comprehensive Reflection guide
291
- - 👥 **[Multi-Agent Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/multi-agent)** - Comprehensive Multi-Agent guide
287
+ ### Pattern Guides (GitHub Pages)
288
+ - **[ReAct Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/react)** - Comprehensive ReAct usage guide
289
+ - **[Plan-Execute Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/plan-execute)** - Comprehensive Plan-Execute guide
290
+ - **[Reflection Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/reflection)** - Comprehensive Reflection guide
291
+ - **[Multi-Agent Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/multi-agent)** - Comprehensive Multi-Agent guide
292
292
 
293
- ### 💡 Examples (GitHub Pages)
293
+ ### Examples (GitHub Pages)
294
294
  - **[ReAct Examples](https://tvscoundrel.github.io/agentforge/examples/react-agent)** - ReAct pattern examples
295
295
  - **[Plan-Execute Examples](https://tvscoundrel.github.io/agentforge/examples/plan-execute)** - Plan-Execute pattern examples
296
296
  - **[Reflection Examples](https://tvscoundrel.github.io/agentforge/examples/reflection)** - Reflection pattern examples
297
297
  - **[Multi-Agent Examples](https://tvscoundrel.github.io/agentforge/examples/multi-agent)** - Multi-Agent pattern examples
298
298
 
299
- ### 📂 Source Documentation
299
+ ### Source Documentation
300
300
  For contributors and advanced users, detailed implementation docs are available in the repository:
301
301
  - [Pattern Comparison](./docs/pattern-comparison.md) - Detailed pattern comparison
302
302
  - [ReAct Implementation](./docs/react-pattern.md) - ReAct implementation details
@@ -499,17 +499,17 @@ import {
499
499
  | **Reflection** | Quality-critical outputs | Iterative improvement | Slow, expensive |
500
500
  | **Multi-Agent** | Specialized tasks | Coordinated expertise | High complexity |
501
501
 
502
- 📚 **[Pattern Comparison Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/comparison)** - Detailed guidance on choosing the right pattern
502
+ - **[Pattern Comparison Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/comparison)** - Detailed guidance on choosing the right pattern
503
503
 
504
504
  ## Documentation
505
505
 
506
- - 📖 **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
507
- - 🚀 **[Quick Start](https://tvscoundrel.github.io/agentforge/guide/quick-start)**
508
- - 🤖 **[ReAct Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/react)**
509
- - 📋 **[Plan-Execute Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/plan-execute)**
510
- - 🔄 **[Reflection Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/reflection)**
511
- - 👥 **[Multi-Agent Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/multi-agent)**
512
- - 💡 **[Examples](https://tvscoundrel.github.io/agentforge/examples/react-agent)**
506
+ - **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
507
+ - **[Quick Start](https://tvscoundrel.github.io/agentforge/guide/quick-start)**
508
+ - **[ReAct Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/react)**
509
+ - **[Plan-Execute Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/plan-execute)**
510
+ - **[Reflection Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/reflection)**
511
+ - **[Multi-Agent Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/multi-agent)**
512
+ - **[Examples](https://tvscoundrel.github.io/agentforge/examples/react-agent)**
513
513
 
514
514
  ## Development
515
515
 
@@ -530,7 +530,7 @@ pnpm test:coverage
530
530
  pnpm typecheck
531
531
  ```
532
532
 
533
- ## 🔗 Links
533
+ ## Links
534
534
 
535
535
  - [GitHub Repository](https://github.com/TVScoundrel/agentforge)
536
536
  - [npm Package](https://www.npmjs.com/package/@agentforge/patterns)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/patterns",
3
- "version": "0.16.21",
3
+ "version": "0.16.23",
4
4
  "description": "Production-ready agent workflow patterns for TypeScript including ReAct and Planner-Executor, built on LangGraph.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -41,13 +41,13 @@
41
41
  "url": "https://github.com/TVScoundrel/agentforge/issues"
42
42
  },
43
43
  "dependencies": {
44
- "@agentforge/core": "0.16.21",
44
+ "@agentforge/core": "0.16.23",
45
45
  "@langchain/core": "^1.1.17",
46
46
  "@langchain/langgraph": "^1.1.2",
47
47
  "zod": "^3.23.8"
48
48
  },
49
49
  "devDependencies": {
50
- "@agentforge/testing": "0.16.21",
50
+ "@agentforge/testing": "0.16.23",
51
51
  "@eslint/js": "^9.17.0",
52
52
  "@types/node": "^22.10.2",
53
53
  "eslint": "^9.17.0",