@agentforge/core 0.1.1 → 0.1.2

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 +12 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -119,13 +119,21 @@ const app = workflow.compile();
119
119
 
120
120
  ## Documentation
121
121
 
122
- - [Tool System](./docs/TOOL_SYSTEM.md)
123
- - [LangChain Integration](./docs/LANGCHAIN_INTEGRATION.md)
124
- - [LangGraph Integration](./docs/LANGGRAPH_INTEGRATION.md)
122
+ 📚 **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
123
+
124
+ ### Core Guides
125
+ - [Getting Started](https://tvscoundrel.github.io/agentforge/guide/getting-started)
126
+ - [Core Concepts](https://tvscoundrel.github.io/agentforge/guide/concepts/tools)
127
+ - [API Reference](https://tvscoundrel.github.io/agentforge/api/core)
128
+
129
+ ### Tutorials
130
+ - [Building Your First Agent](https://tvscoundrel.github.io/agentforge/tutorials/first-agent)
131
+ - [Creating Custom Tools](https://tvscoundrel.github.io/agentforge/tutorials/custom-tools)
132
+ - [Advanced Patterns](https://tvscoundrel.github.io/agentforge/tutorials/advanced-patterns)
125
133
 
126
134
  ## Examples
127
135
 
128
- See the [examples](./examples) directory for complete working examples.
136
+ See the [examples documentation](https://tvscoundrel.github.io/agentforge/examples/react-agent) for complete working examples.
129
137
 
130
138
  ## Development
131
139
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Core abstractions for AgentForge - production-ready deep agents framework",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",