feat(visibility): pull augur onto the embed + privacy-overview rails

Augur landed (faa16fa89) with the visibility Picker + setVisibility
already in place — but no embed-resolver and no entry in the
/settings privacy registry. So flipping an omen to 'public' did
nothing visible, and the kill-switch couldn't see augur records
either. Closes both gaps.

- New EmbedSource `augur.entries` + resolveAugurEntries. Whitelist:
  claim + "{kind} · {vibe} · {outcome}" line. Personal fields
  (feltMeaning, expectedOutcome, source name, outcomeNote, related
  dream/decision links, livingOracleSnapshot) all stay private.
  Optional `status` filter maps to AugurOutcome so the user can
  build "predictions I got right" widgets.
- Sort: resolved-first, then encounteredAt desc — fulfilled
  predictions outrank still-open ones (more interesting public
  signal).
- Inspector dropdown gains "Augur (Omen / Wahrsagungen)".
- exposed-records.ts gains the augur entry — augur records now
  show up in /settings → Privatsphäre and the kill-switch.

Note: augur's `unlistedToken` field (set by its store on
'unlisted' flips) is currently dead code — the mana-api unlisted
backend doesn't know about `augurEntries` and there's no shared
view component. Half-state predates this commit; full unlisted-
share wiring is a separate, larger task that would touch the
backend's ALLOWED_COLLECTIONS, the resolvers blob, and a new
SharedAugurEntryView. Leaving as-is until there's clear demand.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-25 15:18:14 +02:00
parent 21c64e2616
commit 1cb137c4ff
4 changed files with 87 additions and 0 deletions

View file

@ -31,6 +31,7 @@
<option value="memoro.memos">Memoro</option>
<option value="cards.decks">Karten (Decks)</option>
<option value="presi.decks">Präsentationen</option>
<option value="augur.entries">Augur (Omen / Wahrsagungen)</option>
</select>
</label>

View file

@ -42,6 +42,7 @@ export const EmbedSourceSchema = z.enum([
'memoro.memos',
'cards.decks',
'presi.decks',
'augur.entries',
]);
export type EmbedSource = z.infer<typeof EmbedSourceSchema>;