openreceive-server 0.3.2 → 0.4.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/README.md +3 -1
- data/lib/openreceive/server/errors.rb +10 -6
- data/lib/openreceive/server/request_handler.rb +27 -5
- data/lib/openreceive/server/version.rb +1 -1
- data/skills/debug-openreceive-payment/SKILL.md +89 -0
- data/skills/integrate-openreceive/SKILL.md +116 -0
- data/skills/integrate-openreceive/references/node.md +484 -0
- data/skills/integrate-openreceive/references/rails.md +577 -0
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e4751e31d676760c9be4378fb54984746caa21409f15d80b9f1a102e7841e9b
|
|
4
|
+
data.tar.gz: f75da1316d4bed7802dd3f1412ac173ddaee70a8edc482b47c7cc1d94026ea02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e85465cf41f32f4997db65be55786005b275762793eac68eaae9c885c663cdf840f715e5a54efa71cd604e2eaa0e565d0e1a040d4fb534c844a43110f5ad1af
|
|
7
|
+
data.tar.gz: 1178a6c56c2ac21013ef5ce2ae8843dc21cf3e5b742dbbe89bafdbd903069f39b8a8cece4305b984a23bed787751131aaeec5f8ba139ecf93f24e622e35a18ec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.0 - 2026-09-02
|
|
4
|
+
|
|
5
|
+
Version lockstep with the 0.4.0 npm release. The README's `authorize` example
|
|
6
|
+
now states the resource guarantee: `context[:resource][:reference]` is always a
|
|
7
|
+
validated non-empty String (200 characters or fewer) by the time the hook runs,
|
|
8
|
+
and `payment_hash` is nil except on `payment.check`, `swap.read`, and
|
|
9
|
+
`swap.refund`. No functional change.
|
|
10
|
+
|
|
11
|
+
## 0.3.3 - 2026-09-02
|
|
12
|
+
|
|
13
|
+
### Error messages state the fix and link the doc
|
|
14
|
+
|
|
15
|
+
The spend-capable refusal now mirrors the Node engine: the receive-only
|
|
16
|
+
framing, the leaked-code-drains-the-wallet rationale, the get-a-code URL, and
|
|
17
|
+
the override spelled `OPENRECEIVE_ALLOW_SPEND_CAPABLE_NWC=true` (previously
|
|
18
|
+
`=1`). Wallet preflight failures carry the same URL. The 403 for a denied
|
|
19
|
+
reference names the host's authorize hook and links the authorization guide,
|
|
20
|
+
and the handler's required-hook `ArgumentError`s say how to fix themselves.
|
|
21
|
+
|
|
22
|
+
### The gem carries the agent skills
|
|
23
|
+
|
|
24
|
+
`skills/` ships in the gem — the integrate and debug playbooks for coding
|
|
25
|
+
agents, kept byte-identical to the repository tree by
|
|
26
|
+
`npm run generate:skills`.
|
|
27
|
+
|
|
3
28
|
## 0.3.2 - 2026-08-29
|
|
4
29
|
|
|
5
30
|
### An overpaid swap deposit is a refund, not a support ticket
|
data/README.md
CHANGED
|
@@ -21,7 +21,9 @@ run OpenReceive::Server::RackApp.new(
|
|
|
21
21
|
# context is a Hash: context[:action] is the route name ("checkout.create",
|
|
22
22
|
# "payment.check", …), context[:request] is the Rack env, and
|
|
23
23
|
# context[:resource] is { reference:, payment_hash: } copied from the
|
|
24
|
-
# payer's body — it names an order, it does not prove ownership.
|
|
24
|
+
# payer's body — it names an order, it does not prove ownership. reference
|
|
25
|
+
# is always a validated non-empty String (≤200 chars); payment_hash is nil
|
|
26
|
+
# except on payment.check / swap.read / swap.refund.
|
|
25
27
|
# Return true to allow, false for a 403.
|
|
26
28
|
authorize: ->(context) { my_policy_allows?(context) },
|
|
27
29
|
resolve_checkout: lambda do |action:, request:, reference:, input:, pay_in_asset: nil|
|
|
@@ -198,7 +198,8 @@ module OpenReceive
|
|
|
198
198
|
def initialize(reason)
|
|
199
199
|
super(
|
|
200
200
|
"OpenReceive wallet preflight failed: #{reason} Use a receive-only " \
|
|
201
|
-
"NWC connection advertising make_invoice and list_transactions."
|
|
201
|
+
"NWC connection advertising make_invoice and list_transactions. " \
|
|
202
|
+
"Get one here: #{OpenReceive::NWC_CODE_HELP_URL}"
|
|
202
203
|
)
|
|
203
204
|
end
|
|
204
205
|
end
|
|
@@ -206,14 +207,17 @@ module OpenReceive
|
|
|
206
207
|
# Boot-time refusal: the configured NWC connection advertises spend methods.
|
|
207
208
|
# OpenReceive is receive-only; a spend-capable code in a receive deployment
|
|
208
209
|
# is a live theft risk, so preflight fails closed instead of booting.
|
|
210
|
+
# Mirrors the JS core formatSpendCapabilityRefusedMessage.
|
|
209
211
|
class SpendCapableWalletError < StandardError
|
|
210
212
|
def initialize(methods)
|
|
211
213
|
super(
|
|
212
|
-
"
|
|
213
|
-
"(#{Array(methods).join(', ')}
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
214
|
+
"This NWC connection is NOT receive-only.\n" \
|
|
215
|
+
"The wallet info event advertises spend method(s): #{Array(methods).join(', ')}.\n" \
|
|
216
|
+
"A leaked spend-capable NWC code lets an attacker drain the wallet, " \
|
|
217
|
+
"so OpenReceive refuses to boot with it.\n" \
|
|
218
|
+
"Get a receive-only NWC code here: #{OpenReceive::NWC_CODE_HELP_URL}\n" \
|
|
219
|
+
"If this wallet cannot mint a receive-only code and you accept the risk, set " \
|
|
220
|
+
"allow_spend_capable_wallet: true (or OPENRECEIVE_ALLOW_SPEND_CAPABLE_NWC=true)."
|
|
217
221
|
)
|
|
218
222
|
end
|
|
219
223
|
end
|
|
@@ -30,10 +30,26 @@ module OpenReceive
|
|
|
30
30
|
# returns nil the limiter fails open for that request.
|
|
31
31
|
def initialize(service:, authorize:, resolve_checkout:, on_checkout_created:, on_paid:,
|
|
32
32
|
rate_limit: nil, client_ip: nil)
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
if authorize.nil?
|
|
34
|
+
raise ArgumentError,
|
|
35
|
+
"authorize is required — authentication belongs to the host application. " \
|
|
36
|
+
"https://openreceive.org/guides/authorization.md"
|
|
37
|
+
end
|
|
38
|
+
if resolve_checkout.nil?
|
|
39
|
+
raise ArgumentError,
|
|
40
|
+
"resolve_checkout is required — it resolves a reference to the host-owned " \
|
|
41
|
+
"amount and attempt. https://openreceive.org/guides/api-reference.md"
|
|
42
|
+
end
|
|
43
|
+
if on_checkout_created.nil?
|
|
44
|
+
raise ArgumentError,
|
|
45
|
+
"on_checkout_created is required — it persists the attempt before payer " \
|
|
46
|
+
"instructions are returned. https://openreceive.org/guides/api-reference.md"
|
|
47
|
+
end
|
|
48
|
+
if on_paid.nil?
|
|
49
|
+
raise ArgumentError,
|
|
50
|
+
"on_paid is required — it durably records settlement. " \
|
|
51
|
+
"https://openreceive.org/guides/api-reference.md"
|
|
52
|
+
end
|
|
37
53
|
@service = service
|
|
38
54
|
@authorize = authorize
|
|
39
55
|
@resolve_checkout = resolve_checkout
|
|
@@ -350,7 +366,13 @@ module OpenReceive
|
|
|
350
366
|
|
|
351
367
|
def authorize!(action, request, resource)
|
|
352
368
|
context = { action: action, request: request, resource: resource }
|
|
353
|
-
|
|
369
|
+
return if @authorize.call(context)
|
|
370
|
+
|
|
371
|
+
# Byte-identical to the JS handler's FORBIDDEN message (same wire contract).
|
|
372
|
+
raise ForbiddenError,
|
|
373
|
+
"Not authorized for this action. The application's authorize hook denied it; " \
|
|
374
|
+
"if this is unexpected, check that the payer's session reaches the checkout " \
|
|
375
|
+
"routes. https://openreceive.org/guides/authorization.md"
|
|
354
376
|
end
|
|
355
377
|
|
|
356
378
|
def commit(checkout, swap_data = nil, request = nil)
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: debug-openreceive-payment
|
|
3
|
+
description: >
|
|
4
|
+
Diagnose a failing OpenReceive integration. Use when an OpenReceive-powered
|
|
5
|
+
checkout misbehaves: the server refuses to boot, checkout routes return 403,
|
|
6
|
+
404, 409, or 5xx, a paid invoice never settles, a swap refund seems
|
|
7
|
+
unreachable, or the checkout UI renders nothing.
|
|
8
|
+
license: MIT
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Debug an OpenReceive payment
|
|
12
|
+
|
|
13
|
+
Work top-down: configuration, then the request, then settlement. Every guide
|
|
14
|
+
URL below is raw markdown — fetch it when the step needs it.
|
|
15
|
+
|
|
16
|
+
## 1. Run the doctor first
|
|
17
|
+
|
|
18
|
+
```sh
|
|
19
|
+
npx openreceive doctor # Node version, NWC_URI, swap config, wallet probe
|
|
20
|
+
npx openreceive doctor --db <db> # + are openreceive_payments/openreceive_meta migrated?
|
|
21
|
+
npx openreceive doctor --url http://localhost:3000 # + are the routes actually mounted?
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Each failing line states its own fix. `npx openreceive debug-report` prints the
|
|
25
|
+
same diagnostics redacted, always exit 0 — safe to share.
|
|
26
|
+
|
|
27
|
+
## 2. Boot failures
|
|
28
|
+
|
|
29
|
+
| Symptom | Cause and fix |
|
|
30
|
+
| --- | --- |
|
|
31
|
+
| `MISSING_NWC` / "needs a receive-only NWC code" | `NWC_URI` is not in the server process env. A `.env` file alone is not enough — something must load it (`dotenv/config`, Next auto-load). Get a code: https://openreceive.org/get_a_nwc_code_to_receive_payments |
|
|
32
|
+
| `INVALID_NWC` / "not a valid NWC code" | The value is malformed (must be `nostr+walletconnect://` with 64-hex pubkey and secret, ≥1 `wss` relay). Re-copy it from the wallet. |
|
|
33
|
+
| "NOT receive-only" / spend methods advertised | The wallet minted a spend-capable code; OpenReceive fails closed because a leak would drain the wallet. Mint a receive-only code. Overriding (`allowSpendCapableWallet` / `OPENRECEIVE_ALLOW_SPEND_CAPABLE_NWC`) is a last resort. |
|
|
34
|
+
| Wallet preflight failed (methods/encryption) | The wallet must advertise `make_invoice` + `list_transactions` and NIP-04 or NIP-44 v2. Use a compatible wallet. |
|
|
35
|
+
| "The openreceive_meta table does not exist" / raw `no such table: openreceive_payments` | The migration was never applied. Node: `npx openreceive scaffold payments --orm <yours>`, then run the emitted migration through the app's normal workflow. Rails: `bin/rails generate openreceive:install`, then `bin/rails db:migrate`. https://openreceive.org/guides/storage.md |
|
|
36
|
+
| "requires amountFor / onPaid / authorize / host" | The factory is missing a required hook — see the host contract in https://openreceive.org/guides/api-reference.md |
|
|
37
|
+
|
|
38
|
+
## 3. Request-time errors from the routes
|
|
39
|
+
|
|
40
|
+
| Status | Meaning | Where to look |
|
|
41
|
+
| --- | --- | --- |
|
|
42
|
+
| 403 FORBIDDEN | Your own `authorize` hook denied it, or the request looked cross-site. Check the session/cookie actually reaches the checkout routes. https://openreceive.org/guides/authorization.md |
|
|
43
|
+
| Never 403s — any visitor can mint, poll, or refund for any reference | The opposite failure: on Rails the generated `config.authorize = OpenReceive::ALLOW_ALL_AUTHORIZE` placeholder is still installed (the engine warns at boot; `bin/rails openreceive:doctor` reports it). Replace it with the app's real ownership check. https://openreceive.org/guides/authorization.md |
|
|
44
|
+
| 404 NOT_FOUND | `amountFor` returned `null` (unknown reference), or the `payment_hash` does not belong to that reference. |
|
|
45
|
+
| 409 CONFLICT | **Normal state, not a bug**: the reference already settled, or an unpaid checkout for that method is already live. Show it as order state; never retry-loop. |
|
|
46
|
+
| 503 retryable | The host hook failed while persisting the attempt (instructions withheld), or the wallet is unavailable. Read the server log for the underlying error. |
|
|
47
|
+
| Framework 404 / HTML error page | The router is not mounted, or mounted at a different prefix than the UI's `prefix` prop. `doctor --url` distinguishes these. |
|
|
48
|
+
|
|
49
|
+
## 4. Paid but never settles
|
|
50
|
+
|
|
51
|
+
- Settlement is opportunistic: any OpenReceive request runs one reconcile pass
|
|
52
|
+
through a durable gate (min 2s between wallet scans, stretched by invoice
|
|
53
|
+
age). A quiet server settles on the next request — or run the optional
|
|
54
|
+
notification worker. No timer is missing; that is the design.
|
|
55
|
+
- An unpaid attempt closes only after a successful wallet scan at/after expiry
|
|
56
|
+
plus a 900s grace constant — a local clock alone never closes one. `expired`
|
|
57
|
+
arriving "late" is correct.
|
|
58
|
+
- `onPaid` runs once per reference, first settled attempt only, inside the
|
|
59
|
+
settlement transaction. If your fulfillment did not run, check whether the
|
|
60
|
+
guarded `UPDATE … WHERE` matched zero rows (already transitioned).
|
|
61
|
+
https://openreceive.org/guides/storage.md
|
|
62
|
+
|
|
63
|
+
## 5. Swaps and refunds
|
|
64
|
+
|
|
65
|
+
- A deposit that arrives short or late becomes `refund_required`; the payer
|
|
66
|
+
claims it on a second visit. That needs a per-order URL you serve
|
|
67
|
+
(`/checkout/:reference`, `syncUrl` on the drop-ins). Keep the
|
|
68
|
+
`payment_hash`: `POST /swaps/status` reopens the attempt with no expiry
|
|
69
|
+
window, while re-picking the coin mints a new deposit after ~30 minutes.
|
|
70
|
+
- Refunds exist only for swap deposits from `refund_required`. There is **no
|
|
71
|
+
Lightning refund** — the wallet cannot spend. Do not chase one.
|
|
72
|
+
https://openreceive.org/guides/swap-refunds.md
|
|
73
|
+
|
|
74
|
+
## 6. Checkout UI shows nothing
|
|
75
|
+
|
|
76
|
+
- The components require `prefix` — the exact base path the routes are mounted
|
|
77
|
+
at (`"/openreceive"` unless you changed it).
|
|
78
|
+
- Import the stylesheet (`@openreceive/react/styles.css` or the elements
|
|
79
|
+
sheet).
|
|
80
|
+
- "invoice must not be an NWC connection string" means a server secret leaked
|
|
81
|
+
into a browser payload — stop and fix the server response; never render it.
|
|
82
|
+
https://openreceive.org/guides/frontend-checkout.md
|
|
83
|
+
|
|
84
|
+
## Still stuck
|
|
85
|
+
|
|
86
|
+
The full route/option/error reference:
|
|
87
|
+
https://openreceive.org/guides/api-reference.md · machine-readable contract:
|
|
88
|
+
https://openreceive.org/openapi.yaml · library bug reports:
|
|
89
|
+
https://openreceive.org/contact
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: integrate-openreceive
|
|
3
|
+
description: >
|
|
4
|
+
Integrate OpenReceive inbound Bitcoin Lightning payments into an application.
|
|
5
|
+
Use when adding Bitcoin, Lightning, or crypto checkout to a Node.js, Express,
|
|
6
|
+
Fastify, Next.js, Rails, React, Vue, Svelte, Angular, or plain-HTML
|
|
7
|
+
application with OpenReceive (the @openreceive/* npm packages or the
|
|
8
|
+
openreceive-rails gem).
|
|
9
|
+
license: MIT
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Integrate OpenReceive
|
|
13
|
+
|
|
14
|
+
OpenReceive is a payment library that runs inside the application you are
|
|
15
|
+
editing. It mounts HTTP routes there, issues Lightning invoices against a
|
|
16
|
+
wallet the merchant already controls, and calls back into your code when one
|
|
17
|
+
settles. There is no OpenReceive account and no API key; funds land directly in
|
|
18
|
+
the merchant's wallet. The one required credential is a **receive-only NWC
|
|
19
|
+
code** (`NWC_URI`).
|
|
20
|
+
|
|
21
|
+
## Pick the stack, then follow its directions
|
|
22
|
+
|
|
23
|
+
1. Identify the server stack of the application you are in.
|
|
24
|
+
2. Open the matching reference — it is complete (quickstart inlined) and needs
|
|
25
|
+
no network access:
|
|
26
|
+
- Node (Express / Fastify / Next.js): [references/node.md](references/node.md)
|
|
27
|
+
- Rails: [references/rails.md](references/rails.md)
|
|
28
|
+
3. Follow its **Step 0** first: confirm `NWC_URI` is set in the server
|
|
29
|
+
environment before writing code. Never print the value; never invent a
|
|
30
|
+
placeholder.
|
|
31
|
+
|
|
32
|
+
Install (Node): `npm install @openreceive/express @openreceive/react` — swap
|
|
33
|
+
the adapter (`fastify`, `next`) and UI package (`vue`, `svelte`, `angular`,
|
|
34
|
+
`elements`) for the stack. Install (Rails): `bundle add openreceive-rails`.
|
|
35
|
+
|
|
36
|
+
## The three server objects
|
|
37
|
+
|
|
38
|
+
| Object | Built with | Talks to |
|
|
39
|
+
| --- | --- | --- |
|
|
40
|
+
| Wallet client | `createOpenReceive()` | the merchant's wallet — mints invoices, reads settlement, holds the NWC code |
|
|
41
|
+
| Host | `createHost()` | your database — your hooks plus the `openreceive_payments` table |
|
|
42
|
+
| HTTP routes | `openReceiveExpress()` / `openReceiveFastify()` / `openReceiveNext()` / the Rails engine | the browser — mounted at `/openreceive` by default |
|
|
43
|
+
|
|
44
|
+
The quickstart's one-factory form (`openReceiveExpress({ wallet, storage,
|
|
45
|
+
amountFor, authorize })`) builds all three; compose them separately only for a
|
|
46
|
+
shared wallet client or a custom repository. The checkout UI
|
|
47
|
+
(`<Checkout reference={...} prefix="/openreceive" />`) is the optional fourth
|
|
48
|
+
piece.
|
|
49
|
+
|
|
50
|
+
## The host contract: authorize, amountFor, onPaid
|
|
51
|
+
|
|
52
|
+
Your application keeps orders, users, prices, and fulfillment. Three hooks are
|
|
53
|
+
the entire bridge — wire them to the models this app already has, never to
|
|
54
|
+
copied demo models:
|
|
55
|
+
|
|
56
|
+
- `amountFor(reference)` — the authoritative price, read from your own data.
|
|
57
|
+
Return `{ currency, value, description }` with `value` a **decimal string**
|
|
58
|
+
(never a float, never payer input), or `null` when there is nothing to pay
|
|
59
|
+
for. The `reference` is your order id: one per thing you fulfill, created
|
|
60
|
+
before checkout, kept across retries, never reused.
|
|
61
|
+
- `authorize({ action, request, resource })` — your own access check, run on
|
|
62
|
+
every request. `resource.reference` is a claim the payer made, not proof;
|
|
63
|
+
read a real session.
|
|
64
|
+
- `onPaid({ reference, paidAt, query })` — fulfillment, run once per reference
|
|
65
|
+
inside the settlement transaction, only for the first settled attempt. Use
|
|
66
|
+
the provided `query`, not your ORM's other connection, and guard the
|
|
67
|
+
transition (`UPDATE … WHERE state = 'awaiting_payment'`).
|
|
68
|
+
|
|
69
|
+
## 409 is a state, not a failure
|
|
70
|
+
|
|
71
|
+
The library serializes attempts per reference. A create that returns **409
|
|
72
|
+
CONFLICT** is normal checkout flow: the reference already settled, or an unpaid
|
|
73
|
+
checkout for that payment method is already in progress. Surface it as order
|
|
74
|
+
state; do not retry-loop it, and do not build an idempotency store around it —
|
|
75
|
+
that serialization is the library's job. (A hook failure while persisting an
|
|
76
|
+
attempt is a **503 retryable**, deliberately distinct.)
|
|
77
|
+
|
|
78
|
+
## Secrets
|
|
79
|
+
|
|
80
|
+
`NWC_URI` and `LSC_URI_*` are server-only. Never put them in browser code,
|
|
81
|
+
logs, assets, or tests. Boot fails closed if the NWC code advertises spend
|
|
82
|
+
methods such as `pay_invoice` — mint a receive-only code
|
|
83
|
+
(https://openreceive.org/get_a_nwc_code_to_receive_payments) instead of
|
|
84
|
+
overriding.
|
|
85
|
+
|
|
86
|
+
## Database tables
|
|
87
|
+
|
|
88
|
+
```sh
|
|
89
|
+
npx openreceive scaffold payments --orm prisma # or drizzle | typeorm | sequelize | knex
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
emits the `openreceive_payments` + `openreceive_meta` migration for THIS app's
|
|
93
|
+
database (Rails: `bin/rails generate openreceive:install`); run it through the
|
|
94
|
+
app's normal migration workflow. The tables sit beside your models — no
|
|
95
|
+
relations to them, no separate database, no Redis.
|
|
96
|
+
|
|
97
|
+
## Verify, and test without a real wallet
|
|
98
|
+
|
|
99
|
+
`npx openreceive doctor` checks the configuration and says what to fix.
|
|
100
|
+
|
|
101
|
+
For tests, inject a fake wallet at the stable seams — `client` on
|
|
102
|
+
`createOpenReceive` (any object with `preflight`, `makeInvoice`,
|
|
103
|
+
`listTransactions`) or `config.nwc_client` in Rails — plus
|
|
104
|
+
`StaticPriceProvider` for fiat pricing without a network. Your routes,
|
|
105
|
+
persistence, reconcile, and `onPaid` then run the production code paths.
|
|
106
|
+
Details: https://openreceive.org/guides/host-testing.md
|
|
107
|
+
|
|
108
|
+
## Deeper documentation
|
|
109
|
+
|
|
110
|
+
Fetch on demand — each URL is raw markdown:
|
|
111
|
+
https://openreceive.org/guides/authorization.md ·
|
|
112
|
+
https://openreceive.org/guides/storage.md ·
|
|
113
|
+
https://openreceive.org/guides/api-reference.md ·
|
|
114
|
+
https://openreceive.org/guides/security.md ·
|
|
115
|
+
https://openreceive.org/openapi.yaml (the normative HTTP contract) ·
|
|
116
|
+
https://openreceive.org/llms.txt (the full index)
|