Fix YAML frontmatter delimiter (|--- → ---) in stage 2 and 3

This commit is contained in:
Hermes
2026-05-24 18:07:14 +00:00
parent 2578bfee61
commit 4b60244919
9 changed files with 39 additions and 42 deletions

View File

@@ -87,7 +87,7 @@ The PDS is the central component for data ownership, acting as the user's sovere
- *Exclusive Control:* Every user controls their own PDS, whether self-hosted or through a trusted provider.
- *Master Archive:* Stores all user content (client-side encrypted) and identity data.
- *Access Gatekeeper:* Enforces access control, issuing decryption keys based on validated credentials or payments.
- *PDS-as-a-Service:* Services can integrate seamlessly, offering free sign-ups with grace periods and requiring in-protocol payments (e.g., Lightning) for continued service, bypassing traditional financial intermediaries.
- *[[id:1a2b38df-20ba-58ca-ba55-a072be67bd0d][PDS-as-a-Service]]:* Services can integrate seamlessly, offering free sign-ups with grace periods and requiring in-protocol payments (e.g., Lightning) for continued service, bypassing traditional financial intermediaries.
*** 3.3.2. Relay Network: The Intelligent Communication Backbone

View File

@@ -196,7 +196,7 @@ Clients must efficiently discover active personas derived from a Master Seed wit
1. Derive Master Key.
2. For each account index (starting from 0'):
a. Scan persona indices 0 through L-1.
b. If any active persona is found, continue scanning the next window of L.
b. If any active persona is found, [[id:22d0a159-68a2-4587-9375-5046beddc20c][continue]] scanning the next window of L.
c. If no active personas are found in the window, stop scanning this account.
3. If no active personas are found in the first window (0 through L-1) of an account, stop scanning accounts.

View File

@@ -109,7 +109,7 @@ Migration scenarios include a comprehensive range of use cases:
***** Phase 2: Incremental Catch-up
- *Delta Sync:* Catch up changes made since Phase 1 started.
- *Repeat:* Continue incremental syncs until delta is small (e.g., < 1 minute of data).
- *Repeat:* [[id:22d0a159-68a2-4587-9375-5046beddc20c][Continue]] incremental syncs until delta is small (e.g., < 1 minute of data).
- *Read Testing:* Client optionally reads from new PDS to verify accessibility.
***** Phase 3: Cutover

View File

@@ -438,7 +438,7 @@ interface ResumeRequest {
}
interface ResumeResponse {
// Continue from where left off
// [[id:22d0a159-68a2-4587-9375-5046beddc20c][Continue]] from where left off
remaining_cids: CID[];
next_chunk_index: number;
}