slid-phi 2.2.4 → 2.2.5

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 +18 -0
  2. package/package.json +44 -2
package/README.md CHANGED
@@ -18,3 +18,21 @@
18
18
  2. [Access](https://www.slidphilabs.com/access) — private install or download
19
19
 
20
20
  © Slid Phi Labs · All rights reserved
21
+
22
+ ## Agentic commerce
23
+
24
+ Agents can buy / quote lab products via **x402** (USDC on Solana mainnet or Base mainnet).
25
+
26
+ ```
27
+ Agent commerce: GET https://www.slidphilabs.com/api/agent then pay via x402 on Solana or Base mainnet (X-PAYMENT) on catalog POST.
28
+ ```
29
+
30
+ | Surface | URL |
31
+ |---------|-----|
32
+ | Discovery | https://www.slidphilabs.com/api/agent |
33
+ | Catalog | https://www.slidphilabs.com/api/x402-products |
34
+ | agents.txt | https://www.slidphilabs.com/agents.txt |
35
+ | agents.json | https://www.slidphilabs.com/agents.json |
36
+ | llms.txt | https://www.slidphilabs.com/llms.txt |
37
+
38
+ Humans: [www.slidphilabs.com](https://www.slidphilabs.com) (Stripe).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slid-phi",
3
- "version": "2.2.4",
3
+ "version": "2.2.5",
4
4
  "description": "Slid Phi Labs Omni-Dormant integer codecs \u2014 Zeckendorf / hybrid Fibonacci + optional gap-ANS path. Pure JS. Support and integration available.",
5
5
  "type": "module",
6
6
  "main": "src/index.mjs",
@@ -15,7 +15,16 @@
15
15
  "keywords": [
16
16
  "slid phi labs",
17
17
  "proprietary",
18
- "stub"
18
+ "stub",
19
+ "x402",
20
+ "agentic-commerce",
21
+ "agent-commerce",
22
+ "agents.txt",
23
+ "llms.txt",
24
+ "solana",
25
+ "base",
26
+ "usdc",
27
+ "slid-phi-labs"
19
28
  ],
20
29
  "author": "Slid Phi Labs",
21
30
  "license": "SEE LICENSE IN LICENSE",
@@ -23,5 +32,38 @@
23
32
  "repository": {
24
33
  "type": "git",
25
34
  "url": "git+https://github.com/ceedot-rock/SlidPhiLabs.git"
35
+ },
36
+ "funding": {
37
+ "type": "individual",
38
+ "url": "https://www.slidphilabs.com/api/agent"
39
+ },
40
+ "agentic": {
41
+ "commerce": "x402",
42
+ "discovery": "https://www.slidphilabs.com/api/agent",
43
+ "catalog": "https://www.slidphilabs.com/api/x402-products",
44
+ "agents_txt": "https://www.slidphilabs.com/agents.txt",
45
+ "agents_json": "https://www.slidphilabs.com/agents.json",
46
+ "llms_txt": "https://www.slidphilabs.com/llms.txt",
47
+ "agent_card": "https://www.slidphilabs.com/.well-known/agent-card.json",
48
+ "agentic_commerce": "https://www.slidphilabs.com/.well-known/agentic-commerce.json",
49
+ "networks": [
50
+ "solana-mainnet-beta",
51
+ "eip155:8453"
52
+ ],
53
+ "payment_header": "X-PAYMENT",
54
+ "one_liner": "Agent commerce: GET https://www.slidphilabs.com/api/agent then pay via x402 on Solana or Base mainnet (X-PAYMENT) on catalog POST.",
55
+ "site": "https://www.slidphilabs.com"
56
+ },
57
+ "x402": {
58
+ "discovery": "https://www.slidphilabs.com/api/agent",
59
+ "catalog": "https://www.slidphilabs.com/api/x402-products",
60
+ "networks": [
61
+ "solana-mainnet-beta",
62
+ "eip155:8453"
63
+ ],
64
+ "payment_header": "X-PAYMENT"
65
+ },
66
+ "bugs": {
67
+ "url": "https://www.slidphilabs.com"
26
68
  }
27
69
  }