allem-sdk 0.1.2 → 0.1.3

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 +3 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  <img src="https://img.shields.io/badge/react-19-61dafb" alt="React 19" />
9
9
  <img src="https://img.shields.io/badge/typescript-strict-blue" alt="TypeScript" />
10
10
  <img src="https://img.shields.io/badge/AI_SDK-v6-black" alt="AI SDK v6" />
11
- <img src="https://img.shields.io/badge/tests-44_passing-brightgreen" alt="Tests" />
11
+ <img src="https://img.shields.io/badge/tests-53_passing-brightgreen" alt="Tests" />
12
12
  </p>
13
13
 
14
14
  # allem-sdk
@@ -26,6 +26,7 @@ Or install individual packages:
26
26
  ```bash
27
27
  npm install @allem-sdk/hooks # React hooks
28
28
  npm install @allem-sdk/ai # AI chat & completions
29
+ npm install @allem-sdk/agents # Agentic AI with tool calling
29
30
  npm install @allem-sdk/forms # Form management
30
31
  npm install @allem-sdk/analytics # Analytics tracking
31
32
  npm install @allem-sdk/auth # Authentication
@@ -50,6 +51,7 @@ import { useDebounce, useAllemChat, useForm, useAuth } from "allem-sdk";
50
51
  |---------|-------------|
51
52
  | [`@allem-sdk/hooks`](https://www.npmjs.com/package/@allem-sdk/hooks) | 8 essential React hooks: useDebounce, useLocalStorage, useMediaQuery, and more |
52
53
  | [`@allem-sdk/ai`](https://www.npmjs.com/package/@allem-sdk/ai) | AI hooks built on Vercel AI SDK v6 with multi-provider chat & completions |
54
+ | [`@allem-sdk/agents`](https://www.npmjs.com/package/@allem-sdk/agents) | Agentic AI with tool calling, status tracking, and typed tool definitions |
53
55
  | [`@allem-sdk/forms`](https://www.npmjs.com/package/@allem-sdk/forms) | Lightweight form management with 9 built-in validators |
54
56
  | [`@allem-sdk/analytics`](https://www.npmjs.com/package/@allem-sdk/analytics) | Provider-agnostic analytics. Works with Mixpanel, Segment, PostHog, etc. |
55
57
  | [`@allem-sdk/auth`](https://www.npmjs.com/package/@allem-sdk/auth) | Authentication helpers with session management and protected routes |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allem-sdk",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "The complete Allem SDK — hooks, AI, forms, analytics, and auth for React",
5
5
  "license": "MIT",
6
6
  "author": "Ahmed Allem (https://kingallem.com)",
@@ -49,12 +49,12 @@
49
49
  ],
50
50
  "sideEffects": false,
51
51
  "dependencies": {
52
- "@allem-sdk/ai": "0.1.1",
53
52
  "@allem-sdk/hooks": "0.1.1",
54
- "@allem-sdk/analytics": "0.1.1",
55
53
  "@allem-sdk/forms": "0.1.1",
54
+ "@allem-sdk/analytics": "0.1.1",
56
55
  "@allem-sdk/auth": "0.1.1",
57
- "@allem-sdk/agents": "0.2.0"
56
+ "@allem-sdk/agents": "0.2.1",
57
+ "@allem-sdk/ai": "0.1.1"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/react": "^19.0.0",