@chucky.cloud/sdk 0.2.5 → 0.2.7

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 +6 -1
  2. package/package.json +19 -3
package/README.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # @chucky.cloud/sdk
2
2
 
3
- SDK for interacting with Chucky sandbox - supports both browser and Node.js.
3
+ [![npm version](https://img.shields.io/npm/v/@chucky.cloud/sdk.svg)](https://www.npmjs.com/package/@chucky.cloud/sdk)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.7-blue.svg)](https://www.typescriptlang.org/)
6
+ [![Node.js](https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg)](https://nodejs.org/)
7
+
8
+ Universal TypeScript SDK for [Chucky](https://chucky.cloud) - build Claude-powered AI assistants for browser and Node.js.
4
9
 
5
10
  ## Installation
6
11
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chucky.cloud/sdk",
3
- "version": "0.2.5",
4
- "description": "SDK for interacting with Chucky sandbox - supports both browser and Node.js",
3
+ "version": "0.2.7",
4
+ "description": "Universal TypeScript SDK for Chucky - build Claude-powered AI assistants for browser and Node.js",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -37,10 +37,26 @@
37
37
  "anthropic",
38
38
  "ai",
39
39
  "sdk",
40
- "agent"
40
+ "agent",
41
+ "assistant",
42
+ "llm",
43
+ "mcp",
44
+ "websocket",
45
+ "ai-assistant",
46
+ "chatbot",
47
+ "tools",
48
+ "streaming"
41
49
  ],
42
50
  "author": "Chucky Cloud",
43
51
  "license": "MIT",
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git+https://github.com/Chucky-Cloud/chucky-sdk-typescript.git"
55
+ },
56
+ "homepage": "https://chucky.cloud",
57
+ "bugs": {
58
+ "url": "https://github.com/Chucky-Cloud/chucky-sdk-typescript/issues"
59
+ },
44
60
  "dependencies": {
45
61
  "ws": "^8.18.0"
46
62
  },