@agentforge/patterns 0.1.3 → 0.1.4

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 +19 -15
  2. package/package.json +1 -1
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 Agent Guide](./docs/react-agent-guide.md) - Comprehensive ReAct usage guide
293
- - [Plan-Execute Pattern Guide](./docs/plan-execute-pattern.md) - Comprehensive Plan-Execute guide
294
- - [Reflection Pattern Guide](./docs/reflection-pattern.md) - Comprehensive Reflection guide
295
- - [Multi-Agent Pattern Guide](./docs/multi-agent-pattern.md) - Comprehensive Multi-Agent guide
296
- - [Pattern Comparison Guide](./docs/pattern-comparison.md) - Choose the right pattern
297
-
298
- ### Implementation Details
299
- - [Phase 3.1 Summary](./docs/phase-3.1.4-summary.md) - ReAct implementation details
300
-
301
- ### Examples
302
- - [ReAct Examples](./examples/react/) - ReAct pattern examples
303
- - [Plan-Execute Examples](./examples/plan-execute/) - Plan-Execute pattern examples
304
- - [Reflection Examples](./examples/reflection/) - Reflection pattern examples
305
- - [Multi-Agent Examples](./examples/multi-agent/) - Multi-Agent pattern examples
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/patterns",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Agent patterns (ReAct, Planner-Executor) for AgentForge framework",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",