@artinet/sdk 0.5.2 → 0.5.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.
- package/README.md +12 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,8 +11,19 @@ Artinet SDK is a [Agent2Agent (A2A) Protocol](https://github.com/google/A2A) com
|
|
|
11
11
|
|
|
12
12
|
This SDK significantly enhances the foundational A2A concepts and samples provided by Google, offering a production-ready solution with a focus on developer experience, reliability, and comprehensive features.
|
|
13
13
|
|
|
14
|
+
### Quick Start
|
|
15
|
+
|
|
16
|
+
To build your own agent/server use the [`create-quick-agent`](https://www.npmjs.com/package/@artinet/create-quick-agent) command:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npx @artinet/create-quick-agent@latest
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Its got [serveral template projects](https://github.com/the-artinet-project/create-quick-agent) that you can use to get started building agents today.
|
|
23
|
+
|
|
14
24
|
## Table of Contents
|
|
15
25
|
- [Artinet SDK](#artinet-sdk)
|
|
26
|
+
- [Quick Start](#quick-start)
|
|
16
27
|
- [Table of Contents](#table-of-contents)
|
|
17
28
|
- [Features](#features)
|
|
18
29
|
- [Installation](#installation)
|
|
@@ -551,7 +562,7 @@ Key features include:
|
|
|
551
562
|
console.log("Deployment Result:", deploymentResult);
|
|
552
563
|
```
|
|
553
564
|
|
|
554
|
-
- **Dedicated Endpoints:** Once deployed your agent will be available On-Demand at its dedicated enpoint. (e.g. "https://agents.
|
|
565
|
+
- **Dedicated Endpoints:** Once deployed your agent will be available On-Demand at its dedicated enpoint. (e.g. "https://agents.artinet.io/agentId=0xabf698845743538727a81352bfcfdb724e5c2bbe3113a26362482248f9f3e5fa/.well-known/agent.json")
|
|
555
566
|
- **New Types:** To support these features, new types for server deployment requests and responses (such as `ServerDeploymentRequestParams`, `ServerDeploymentResponse`) have been added to `src/types/extended-schema.ts`. New types for sandboxed agent interactions (`TaskProxy`, `ConnectAPICallback`, `ClientProxy`, etc.) are in `src/types/proxy.ts`.
|
|
556
567
|
|
|
557
568
|
**QUICK-AGENT FAQs**
|