multi-agent-protocol 0.0.2 → 0.0.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 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -24,16 +24,16 @@ MAP provides a standardized way for:
24
24
 
25
25
  | Package | Description |
26
26
  |---------|-------------|
27
- | [@anthropic/map-sdk](./ts-sdk) | TypeScript SDK for MAP |
27
+ | [@multi-agent-protocol/sdk](./ts-sdk) | TypeScript SDK for MAP |
28
28
 
29
29
  ## Quick Start
30
30
 
31
31
  ```bash
32
- npm install @anthropic/map-sdk
32
+ npm install @multi-agent-protocol/sdk
33
33
  ```
34
34
 
35
35
  ```typescript
36
- import { ClientConnection, createStreamPair } from '@anthropic/map-sdk';
36
+ import { ClientConnection, createStreamPair } from '@multi-agent-protocol/sdk';
37
37
 
38
38
  // Connect to a MAP server
39
39
  const client = new ClientConnection(stream, { name: 'My Client' });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agent-protocol",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Multi-Agent Protocol (MAP) - A protocol for observing, coordinating, and routing messages within multi-agent AI systems",
5
5
  "type": "module",
6
6
  "main": "./schema/schema.json",