@agenticprimitives/acp 0.0.0-alpha.2 → 0.0.0-alpha.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 +2 -0
- package/package.json +17 -2
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @agenticprimitives/acp
|
|
2
2
|
|
|
3
|
+
> Part of **[Agentic Primitives](https://agenticprimitives.dev)** — the open-source trust substrate for agentic applications: identity that can sign, authority checked at act time, evidence the owner carries. [Developer kit](https://github.com/agentictrustlabs/agentic-primitives) · [All packages](https://agenticprimitives.dev/developers)
|
|
4
|
+
|
|
3
5
|
Run an [Agent Client Protocol](https://agentclientprotocol.com) agent — Claude Code, goose, Codex, any ACP-speaking
|
|
4
6
|
runtime — as a **member of a workspace**, with the workspace deciding what it may do, on chain, at every act.
|
|
5
7
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenticprimitives/acp",
|
|
3
|
-
"version": "0.0.0-alpha.
|
|
3
|
+
"version": "0.0.0-alpha.3",
|
|
4
4
|
"description": "Agent Client Protocol (ACP) host binding: ADMIT an existing general-purpose runtime that speaks ACP (Claude Code, goose, Codex) as a workspace MEMBER, without a rewrite — whose every act in the workspace goes through the standard A2A surface as itself, under a revocable session wire (spec 400 W1 / spec 372 S3). ACP sits behind A2A; it is never a second authority model.",
|
|
5
|
+
"homepage": "https://agenticprimitives.dev",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/agentictrustlabs/agenticprimitives/issues"
|
|
8
|
+
},
|
|
9
|
+
"author": {
|
|
10
|
+
"name": "Agentic Trust Labs",
|
|
11
|
+
"url": "https://agenticprimitives.dev"
|
|
12
|
+
},
|
|
5
13
|
"type": "module",
|
|
6
14
|
"exports": {
|
|
7
15
|
".": {
|
|
@@ -17,7 +25,7 @@
|
|
|
17
25
|
"bin"
|
|
18
26
|
],
|
|
19
27
|
"dependencies": {
|
|
20
|
-
"@agenticprimitives/types": "1.0.0-alpha.
|
|
28
|
+
"@agenticprimitives/types": "1.0.0-alpha.26"
|
|
21
29
|
},
|
|
22
30
|
"devDependencies": {
|
|
23
31
|
"vitest": "^4.1.8"
|
|
@@ -26,6 +34,13 @@
|
|
|
26
34
|
"access": "public"
|
|
27
35
|
},
|
|
28
36
|
"license": "MIT",
|
|
37
|
+
"keywords": [
|
|
38
|
+
"agentic-primitives",
|
|
39
|
+
"agenticprimitives",
|
|
40
|
+
"ai-agents",
|
|
41
|
+
"agent-authority",
|
|
42
|
+
"agentic-trust"
|
|
43
|
+
],
|
|
29
44
|
"scripts": {
|
|
30
45
|
"build": "tsc -p tsconfig.build.json",
|
|
31
46
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|