@artinet/sdk 0.5.8 → 0.5.9
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.
- package/README.md +11 -0
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -11,9 +11,20 @@ The artinet SDK is a TypeScript library designed for Agentic Communication. It's
|
|
|
11
11
|
|
|
12
12
|
This SDK leverages a service-oriented architecture for building AI agents allowing developers to easily create agents as simple processes or seamlessly embed them within a dedicated server.
|
|
13
13
|
|
|
14
|
+
## Quick Start
|
|
15
|
+
|
|
16
|
+
Use the [`create-agent`](https://github.com/the-artinet-project/create-agent) command:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npx @artinet/create-agent@latest
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
It has [serveral template projects](https://github.com/the-artinet-project/create-agent/tree/main/templates) that you can use to jump right into agent building.
|
|
23
|
+
|
|
14
24
|
## Table of Contents
|
|
15
25
|
|
|
16
26
|
- [artinet SDK](#artinet-sdk)
|
|
27
|
+
- [Quick Start](#quick-start)
|
|
17
28
|
- [Table of Contents](#table-of-contents)
|
|
18
29
|
- [Features](#features)
|
|
19
30
|
- [Installation](#installation)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artinet/sdk",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
4
4
|
"description": "A TypeScript SDK for building collaborative AI agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -69,17 +69,16 @@
|
|
|
69
69
|
"eventsource-parser": "^3.0.1",
|
|
70
70
|
"express": "^5.1.0",
|
|
71
71
|
"uuid": "^11.1.0",
|
|
72
|
-
"zod": "^3.23.8"
|
|
72
|
+
"zod": "^3.23.8",
|
|
73
|
+
"@types/cors": "^2.8.17",
|
|
74
|
+
"@types/escape-html": "^1.0.4",
|
|
75
|
+
"@types/express": "^5.0.1"
|
|
73
76
|
},
|
|
74
77
|
"devDependencies": {
|
|
78
|
+
"@types/node": "^20.17.50",
|
|
75
79
|
"@eslint/js": "^9.25.1",
|
|
76
|
-
"@types/cors": "^2.8.17",
|
|
77
|
-
"@types/escape-html": "^1.0.4",
|
|
78
|
-
"@types/express": "^5.0.1",
|
|
79
80
|
"@types/jest": "^29.5.14",
|
|
80
|
-
"@types/node": "^20.17.50",
|
|
81
81
|
"@types/supertest": "latest",
|
|
82
|
-
"@types/uuid": "^9.0.6",
|
|
83
82
|
"eslint": "^9.25.1",
|
|
84
83
|
"globals": "^16.0.0",
|
|
85
84
|
"jest": "^29.7.0",
|