slid-phi 2.2.3 → 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.
- package/LICENSE +1 -1
- package/README.md +19 -13
- package/package.json +45 -3
- package/src/index.mjs +4 -4
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# slid-phi (public stub)
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
<p align="center">
|
|
4
5
|
<img src="./brand/slid-phi-labs-master.jpg" alt="Zero Range Wave · Slid Phi Labs" width="720"/>
|
|
5
6
|
</p>
|
|
@@ -8,25 +9,30 @@
|
|
|
8
9
|
|
|
9
10
|
<p align="center"><img src="https://raw.githubusercontent.com/ceedot-rock/splabs-brand/main/assets/brand/logos/logo-slid-phi.jpg" alt="product logo" width="280"/></p>
|
|
10
11
|
|
|
11
|
-
**Proprietary.** Public npm does **not** include codec source.
|
|
12
12
|
|
|
13
|
-
**
|
|
13
|
+
**Proprietary.** Public npm does **not** include codec source.
|
|
14
14
|
|
|
15
15
|
## Get the real package
|
|
16
16
|
|
|
17
|
-
1.
|
|
18
|
-
2. Access — private install or download
|
|
17
|
+
1. [Try Gate](https://www.slidphilabs.com/try) or purchase support/license
|
|
18
|
+
2. [Access](https://www.slidphilabs.com/access) — private install or download
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|-------|------:|------|
|
|
22
|
-
| **Support + Integration** | **$199** | [Buy](https://buy.stripe.com/7sYbJ27NjfJSbhz8gw6wE09) |
|
|
23
|
-
| Sponsor | $29 | [Sponsor](https://buy.stripe.com/cNi6oI8RnbtCgBTgN26wE01) |
|
|
24
|
-
| Consulting (deeper) | $250 | [Book](https://buy.stripe.com/eVqfZi0kR41a4TbgN26wE02) |
|
|
20
|
+
© Slid Phi Labs · All rights reserved
|
|
25
21
|
|
|
26
|
-
|
|
22
|
+
## Agentic commerce
|
|
27
23
|
|
|
28
|
-
|
|
24
|
+
Agents can buy / quote lab products via **x402** (USDC on Solana mainnet or Base mainnet).
|
|
29
25
|
|
|
30
|
-
|
|
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
|
+
```
|
|
31
29
|
|
|
32
|
-
|
|
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slid-phi",
|
|
3
|
-
"version": "2.2.
|
|
4
|
-
"description": "Slid Phi Labs Omni-Dormant integer codecs
|
|
3
|
+
"version": "2.2.5",
|
|
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",
|
|
7
7
|
"exports": {
|
|
@@ -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
|
}
|
package/src/index.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
/** Proprietary stub — no codec on public npm. https://slidphilabs.
|
|
1
|
+
/** Proprietary stub — no codec on public npm. https://www.slidphilabs.com/access */
|
|
2
2
|
const MSG =
|
|
3
3
|
"slid-phi is proprietary (SlidPhiLabs). " +
|
|
4
4
|
"Public npm only ships a stub. After purchase or Try Gate, you receive the real package. " +
|
|
5
|
-
"https://slidphilabs.
|
|
5
|
+
"https://www.slidphilabs.com/access";
|
|
6
6
|
function blocked() { throw new Error(MSG); }
|
|
7
7
|
export const encode = blocked;
|
|
8
8
|
export const decode = blocked;
|
|
9
9
|
export const encodeHybrid = blocked;
|
|
10
10
|
export const decodeHybrid = blocked;
|
|
11
|
-
export const OMNI_META = { stub: true, access: "https://slidphilabs.
|
|
11
|
+
export const OMNI_META = { stub: true, access: "https://www.slidphilabs.com/access" };
|
|
12
12
|
export default { encode, decode, encodeHybrid, decodeHybrid, OMNI_META };
|
|
13
|
-
console.warn("[SlidPhiLabs] Stub — no codec source. → https://slidphilabs.
|
|
13
|
+
console.warn("[SlidPhiLabs] Stub — no codec source. → https://www.slidphilabs.com/access");
|