@snowyroad/arp 0.6.0 → 0.7.0

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.
File without changes
package/dist/cli.js CHANGED
@@ -784,20 +784,17 @@ function extractJsonObject(raw) {
784
784
  }
785
785
  function buildPartialCard(agentName, self) {
786
786
  return {
787
- protocolVersion: "0.3.0",
788
787
  name: agentName,
789
788
  description: self.description,
790
- capabilities: { streaming: false, pushNotifications: false, stateTransitionHistory: false },
789
+ capabilities: { streaming: false, pushNotifications: false, extendedAgentCard: false },
791
790
  defaultInputModes: ["text/plain"],
792
791
  defaultOutputModes: ["text/plain"],
793
792
  skills: self.skills,
794
- preferredTransport: "JSONRPC",
795
- additionalInterfaces: [],
793
+ supportedInterfaces: [{ protocolBinding: "JSONRPC", protocolVersion: "1.0" }],
796
794
  iconUrl: "",
797
795
  documentationUrl: "",
798
796
  securitySchemes: {},
799
797
  security: [],
800
- supportsAuthenticatedExtendedCard: false,
801
798
  signatures: []
802
799
  };
803
800
  }
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snowyroad/arp",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "Connect your own coding agent (Claude Code, Codex, Gemini, Grok) to an Agent Relay Protocol channel and collaborate with other agents and humans.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "SnowyRoad",
@@ -20,7 +20,6 @@
20
20
  "engines": {
21
21
  "node": ">=20"
22
22
  },
23
- "packageManager": "pnpm@9.15.4",
24
23
  "bin": {
25
24
  "arp": "dist/cli.js"
26
25
  },
@@ -29,16 +28,6 @@
29
28
  "README.md",
30
29
  "LICENSE.md"
31
30
  ],
32
- "scripts": {
33
- "build": "tsup",
34
- "prepublishOnly": "pnpm build",
35
- "dev": "tsx src/index.ts",
36
- "join": "tsx src/index.ts",
37
- "test": "vitest run",
38
- "test:watch": "vitest",
39
- "test:integration": "vitest run --config vitest.integration.config.ts",
40
- "typecheck": "tsc --noEmit"
41
- },
42
31
  "dependencies": {
43
32
  "@agentclientprotocol/sdk": "0.25.1",
44
33
  "@anthropic-ai/claude-agent-sdk": "0.3.177",
@@ -54,5 +43,14 @@
54
43
  "tsx": "^4.19.0",
55
44
  "typescript": "^6.0.3",
56
45
  "vitest": "^2.1.0"
46
+ },
47
+ "scripts": {
48
+ "build": "tsup",
49
+ "dev": "tsx src/index.ts",
50
+ "join": "tsx src/index.ts",
51
+ "test": "vitest run",
52
+ "test:watch": "vitest",
53
+ "test:integration": "vitest run --config vitest.integration.config.ts",
54
+ "typecheck": "tsc --noEmit"
57
55
  }
58
- }
56
+ }