@agentforge/patterns 0.1.3 → 0.1.5
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 +20 -16
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -288,21 +288,25 @@ console.log(result.response); // Aggregated response
|
|
|
288
288
|
|
|
289
289
|
## Documentation
|
|
290
290
|
|
|
291
|
-
### Guides
|
|
292
|
-
- [ReAct
|
|
293
|
-
- [Plan-Execute Pattern Guide](
|
|
294
|
-
- [Reflection Pattern Guide](
|
|
295
|
-
- [Multi-Agent Pattern Guide](
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
- [
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
- [
|
|
291
|
+
### 📖 Pattern Guides (GitHub Pages)
|
|
292
|
+
- 🤖 **[ReAct Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/react)** - Comprehensive ReAct usage guide
|
|
293
|
+
- 📋 **[Plan-Execute Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/plan-execute)** - Comprehensive Plan-Execute guide
|
|
294
|
+
- 🔄 **[Reflection Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/reflection)** - Comprehensive Reflection guide
|
|
295
|
+
- 👥 **[Multi-Agent Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/multi-agent)** - Comprehensive Multi-Agent guide
|
|
296
|
+
|
|
297
|
+
### 💡 Examples (GitHub Pages)
|
|
298
|
+
- **[ReAct Examples](https://tvscoundrel.github.io/agentforge/examples/react-agent)** - ReAct pattern examples
|
|
299
|
+
- **[Plan-Execute Examples](https://tvscoundrel.github.io/agentforge/examples/plan-execute)** - Plan-Execute pattern examples
|
|
300
|
+
- **[Reflection Examples](https://tvscoundrel.github.io/agentforge/examples/reflection)** - Reflection pattern examples
|
|
301
|
+
- **[Multi-Agent Examples](https://tvscoundrel.github.io/agentforge/examples/multi-agent)** - Multi-Agent pattern examples
|
|
302
|
+
|
|
303
|
+
### 📂 Source Documentation
|
|
304
|
+
For contributors and advanced users, detailed implementation docs are available in the repository:
|
|
305
|
+
- [Pattern Comparison](./docs/pattern-comparison.md) - Detailed pattern comparison
|
|
306
|
+
- [ReAct Implementation](./docs/react-pattern.md) - ReAct implementation details
|
|
307
|
+
- [Plan-Execute Implementation](./docs/plan-execute-pattern.md) - Plan-Execute implementation details
|
|
308
|
+
- [Reflection Implementation](./docs/reflection-pattern.md) - Reflection implementation details
|
|
309
|
+
- [Multi-Agent Implementation](./docs/multi-agent-pattern.md) - Multi-Agent implementation details
|
|
306
310
|
|
|
307
311
|
## API Reference
|
|
308
312
|
|
|
@@ -512,5 +516,5 @@ pnpm typecheck
|
|
|
512
516
|
|
|
513
517
|
## License
|
|
514
518
|
|
|
515
|
-
MIT
|
|
519
|
+
MIT © 2026 Tom Van Schoor
|
|
516
520
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentforge/patterns",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Agent patterns (ReAct, Planner-Executor) for AgentForge framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@langchain/core": "^0.3.29",
|
|
40
40
|
"@langchain/langgraph": "^0.2.20",
|
|
41
41
|
"zod": "^3.23.8",
|
|
42
|
-
"@agentforge/core": "0.1.
|
|
42
|
+
"@agentforge/core": "0.1.5"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@eslint/js": "^9.17.0",
|