@muretai/agent-entry 1.2.0 → 1.2.1
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 -0
- package/package.json +11 -6
package/README.md
CHANGED
|
@@ -8,6 +8,18 @@ person replaces their phone, your site still knows it is them.
|
|
|
8
8
|
|
|
9
9
|
One file. Zero dependencies. Node 20+.
|
|
10
10
|
|
|
11
|
+
**Running in production — check it yourself, right now:**
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
curl https://muretai.com/.well-known/agent-card.json
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
That is muretai.com's own front desk, and it is this package. On 2026-08-16 an agent on a
|
|
18
|
+
server in Tokyo dialled it, verified the signed card belonged to that domain, sent a signed
|
|
19
|
+
message and got back a signed reply it could check — and the door's log recorded the first
|
|
20
|
+
message as the account being opened, the second as the same customer returning. No signup
|
|
21
|
+
form was involved, because there is nothing to sign up to: the key already is the account.
|
|
22
|
+
|
|
11
23
|
Questions are welcome — mention [@muretaiai](https://x.com/muretaiai) on X, or
|
|
12
24
|
[open an issue](https://github.com/muretai/agent-entry/issues).
|
|
13
25
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muretai/agent-entry",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "Make your website answer AI agents: an A2A agent endpoint that verifies who is knocking, opens an account for them and replies signed, in one HTTP round trip. Zero dependencies. Pairs with llms.txt and WebMCP.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "muretai-agent-entry.mjs",
|
|
7
7
|
"exports": {
|
|
@@ -20,15 +20,20 @@
|
|
|
20
20
|
"example": "node examples/server.mjs"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
|
-
"agent",
|
|
24
23
|
"ai-agent",
|
|
24
|
+
"ai-agents",
|
|
25
|
+
"agent",
|
|
25
26
|
"a2a",
|
|
27
|
+
"agent-card",
|
|
28
|
+
"llms-txt",
|
|
29
|
+
"webmcp",
|
|
30
|
+
"mcp",
|
|
31
|
+
"ai-crawler",
|
|
32
|
+
"agentic",
|
|
26
33
|
"did",
|
|
27
34
|
"ed25519",
|
|
28
35
|
"muretai",
|
|
29
|
-
"agent-network"
|
|
30
|
-
"llms-txt",
|
|
31
|
-
"webmcp"
|
|
36
|
+
"agent-network"
|
|
32
37
|
],
|
|
33
38
|
"license": "MIT",
|
|
34
39
|
"author": "Muretai",
|