@agentified/react 0.0.4 → 0.0.5-beta.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 +10 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # @agentified/react
2
2
 
3
- React bindings for [Agentified](../../README.md) — Provider, hooks, and a built-in Inspector debug panel.
3
+ React hooks + Inspector debug panel for Agentified.
4
+
5
+ Provider, hooks, and a built-in Inspector for [Agentified](../../../README.md). Register [frontend tools](../../../docs/concepts/frontend-tools.md) with `useAgentifiedTool`, debug with `<Inspector>`.
4
6
 
5
7
  ## Install
6
8
 
@@ -119,7 +121,14 @@ The Inspector is draggable and resizable.
119
121
  ## Links
120
122
 
121
123
  - [Root README](../../../README.md)
124
+ - [Documentation](../../../docs/)
125
+ - [Frontend Tools concept](../../../docs/concepts/frontend-tools.md)
126
+ - [Mastra guide](../../../docs/guides/mastra.md) — Full-stack example
122
127
  - [Frontend Client](../fe-client/README.md) — underlying client library
123
128
  - [TypeScript SDK](../sdk/README.md)
124
129
  - [Mastra Adapter](../mastra/README.md)
125
130
  - [QuickHR Example](../../../examples/quickhr/) — full-stack app using all React bindings
131
+
132
+ ## License
133
+
134
+ [MIT](../../../LICENSE.md#mit-license)
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@agentified/react",
3
- "version": "0.0.4",
3
+ "version": "0.0.5-beta.2",
4
+ "license": "MIT",
4
5
  "type": "module",
5
6
  "main": "dist/index.js",
6
7
  "types": "dist/index.d.ts",
@@ -25,7 +26,7 @@
25
26
  "react": ">=18.0.0"
26
27
  },
27
28
  "dependencies": {
28
- "@agentified/fe-client": "0.0.4"
29
+ "@agentified/fe-client": "0.0.5-beta.2"
29
30
  },
30
31
  "devDependencies": {
31
32
  "@testing-library/react": "^16.0.0",