Commit Graph
100 Commits
Author SHA1 Message Date
Raven ScottandCursor 19188c725c docs: note equal-unread position tie-break (v0.8.123)
Document that _selectGuildChannelWithUnread prefers lower channel.position
when mention/unread scores tie; smoke test:guild-unread-position-tie.

Co-authored-by: Cursor <[email protected]>
2026-05-22 18:25:09 -04:00
Raven ScottandCursor 43ac01b305 docs(platform): mention×1000 channel pick on loadGuild (v0.8.120)
Document mention-weighted scoring in _selectGuildChannelWithUnread and reference
test:guild-mention-channel-pick smoke.

Co-authored-by: Cursor <[email protected]>
2026-05-22 18:08:00 -04:00
Raven ScottandCursor 9629d1769b docs(platform): document loadGuild channel pick priority (v0.8.119)
Clarify _selectGuildChannelWithUnread order in README: unread/mention score,
then lastChannelByGuild, then first text. Reference smokes
test:guild-unread-over-last-channel and test:guild-unread-channel-jump.

Co-authored-by: Cursor <[email protected]>
2026-05-22 18:05:54 -04:00
Raven ScottandCursor 723627aa9a feat(platform): persist and restore last guild channel (v0.8.116)
selectChannel calls _persistLastGuildChannel for savable channel types.
_selectGuildChannelWithUnread falls back to lastChannelByGuild when no
unread channels qualify, after permission check via _canViewChannel.

Unread-weighted channel pick from v0.8.115 remains unchanged when unread > 0.

Co-authored-by: Cursor <[email protected]>
2026-05-22 17:21:25 -04:00
Raven ScottandCursor 995469292a feat(platform): guild unread channel pick and search history (v0.8.115)
_openGuild clears stale activeChannelId and calls _selectGuildChannelWithUnread
to open the text/thread/announcement channel with the highest mention-weighted
unread count before falling back to the first text channel.

setSearch records queries of at least two characters into user prefs via
_recordSearchRecent. view() exposes searchRecentQueries for the active guild.

Co-authored-by: Cursor <[email protected]>
2026-05-22 17:17:22 -04:00
Raven ScottandCursor 356f6fd9e3 feat(platform): persist discoveryExploreFilter in USER_PREFS
Phase 146 (v0.8.111): setDiscoveryFilter is async and saves query,
sort, minMembers, and tag to discoveryExploreFilter prefs. Restore
on boot via _ingestDiscoveryExploreBaselineFromPrefs. Emits discovery
after filter updates.

Co-authored-by: Cursor <[email protected]>
2026-05-22 15:54:51 -04:00
Raven ScottandCursor 9bf4d3c64f feat(platform): persist voice roster expanded channel ids in USER_PREFS
Phase 145 (v0.8.110): setVoiceRosterChannelExpanded stores
voiceRosterExpandedChannelIds across sessions. Ingest on boot from
user prefs alongside thread filter and voice roster filter prefs.

Co-authored-by: Cursor <[email protected]>
2026-05-22 15:23:47 -04:00
Raven ScottandCursor 911ade8aec feat(platform): createGuild publicListing toggle for discovery opt-out
Phase 144 (v0.8.109): createGuild accepts publicListing (default true).
recordGuild stores listing preference; announceGuild runs only when listed.
Unlisted servers stay invite-only until enabled in server settings.

Co-authored-by: Cursor <[email protected]>
2026-05-22 15:06:02 -04:00
Raven ScottandCursor 7d28f57d7f feat(platform): Phases 142–143 discovery, onboarding Explore, thread/voice prefs
Phase 142 (v0.8.107):
- navigateDeepLink explore kind with preserveBaseline and USER_PREFS ingest
- formatDiscoveryExploreBaselineDeepLink for shareable listing snapshots

Phase 143 (v0.8.108):
- onboardingExplorePending after first guild create; markOnboardingExploreShown
- joinInvite accepts pearcord://explore URLs (Join modal baseline paste)
- setThreadsPanelFilter persists threadsPanelFilter in USER_PREFS
- view exposes onboardingExplorePending for renderer auto-open Explore

Co-authored-by: Cursor <[email protected]>
2026-05-22 14:48:38 -04:00
Raven ScottandCursor 627f7fe492 feat(platform): setVoiceRosterCombinedFilter for voice roster preset
Single API toggles voiceRosterMutedOnly and voiceRosterDeafenedOnly
together for Phase 141 combined sidebar filter chip.

Co-authored-by: Cursor <[email protected]>
2026-05-22 14:17:32 -04:00
Raven ScottandCursor f5b4efa1ba feat(platform): setVoiceRosterDeafenedOnly API and view field
Add voiceRosterDeafenedOnly pref ingest, setter with USER_PREFS gossip,
and view export for Phase 140 deafened-only sidebar roster filter.

Co-authored-by: Cursor <[email protected]>
2026-05-22 14:08:46 -04:00
Raven ScottandCursor 6956e47db4 feat(platform): voice roster muted filter and explore baseline timestamp
Expose setVoiceRosterMutedOnly with USER_PREFS persistence, ingest
voiceRosterMutedOnly and discoveryExploreBaselineAt from prefs, and
record baselineAt when markDiscoveryExploreOpened runs. View adds
discoveryExploreBaseline, discoveryExploreBaselineAt, and
voiceRosterMutedOnly for Phase 139 UX (v0.8.104).

Co-authored-by: Cursor <[email protected]>
2026-05-22 14:04:58 -04:00
Raven Scott 3693248166 docs: full module READMEs (v0.8.103 platform audit) 2026-05-22 13:39:50 -04:00
Raven ScottandCursor 910866b8fd feat(platform): self voice roster mute, prefs explore baseline (v0.8.103)
Phase 138 platform changes:
- Apply local voiceMedia mute/deafen to self roster row via myVoiceChannelId
  (no protomux roundtrip required for sidebar indicators).
- Persist discoveryExploreBaseline through updateUserPrefs on Explore open.
- Ingest discoveryExploreBaseline from USER_PREFS on boot and prefs events.

Co-authored-by: Cursor <[email protected]>
2026-05-22 13:11:12 -04:00
Raven ScottandCursor eebede9eb9 feat(platform): voice mute mesh roster, explore baseline, pinned-muted filter (v0.8.102)
Phase 137 platform depth:
- Ingest VOICE_MEDIA_MUTE into _voiceMuteMesh and expose muted/deafened on
  voiceStatesByChannel rows (local media peers + mesh gossip).
- markDiscoveryExploreOpened() snapshots discovery listing count; view adds
  discoveryNewSinceExplore for Explore +N badge while modal is closed.
- Allow threads panel filter pinned-muted; gossip self mute into mesh cache.

Co-authored-by: Cursor <[email protected]>
2026-05-22 12:53:10 -04:00
Raven ScottandCursor 8d88fdfe9a feat(platform): Phase 135 speaking roster, folder color, pinned filter (v0.8.100)
- voiceStatesByChannel.speaking from voiceMedia snapshot
- setServerFolderColor and threads panel pinned filter
- setThreadsPanelFilter accepts pinned

Co-authored-by: Cursor <[email protected]>
2026-05-22 12:07:36 -04:00
Raven ScottandCursor db54620007 feat(platform): Phase 134 thread pin/mute and discovery diff banner (v0.8.99)
- toggleThreadPinned and setThreadNotificationMuted APIs
- _wireDiscoveryEvents at init; discoveryDiffHint on listing ingest
- Pass pinned/muted maps into buildThreadsPanel

Co-authored-by: Cursor <[email protected]>
2026-05-22 11:53:33 -04:00
Raven ScottandCursor f0884ebdbb feat(platform): Phase 133 threads sort, discovery refresh, view fields (v0.8.98)
- setThreadsPanelSort and threadsPanelSort in view
- refreshDiscoveryListingsFromMesh on setDiscoveryFilter
- discoveryMeshRefreshAt for Explore freshness

Co-authored-by: Cursor <[email protected]>
2026-05-22 11:38:59 -04:00
Raven ScottandCursor 43d440e170 feat(platform): Phase 132 threads, voice presence, forum search refresh (v0.8.97)
- setThreadsPanelParentFilter and view.threadsPanelParentFilter
- voiceStatesByChannel rows include presenceStatus from guild mesh
- maybeRefreshStaleSearch on selectChannel for forum channel switches

Co-authored-by: Cursor <[email protected]>
2026-05-22 11:22:41 -04:00
Raven ScottandCursor 87cc613e38 feat(platform): auto-refresh stale mesh search on guild focus (v0.8.96)
Add maybeRefreshStaleSearch() to re-run guild/forum mesh queries when
searchMeshMeta.fetchedAt is older than 90s and mesh is enabled.

Invoke after loadGuild so switching servers refreshes stale P2P search
hits without requiring a manual ↻ click.

Co-authored-by: Cursor <[email protected]>
2026-05-22 11:08:17 -04:00
Raven ScottandCursor 12360f4288 feat(platform): Phase 130 search refresh and presence prefs sync (v0.8.95)
Add refreshSearch() to re-run guild/forum mesh queries and stamp
searchMeshMeta.fetchedAt for stale UI indicators.

Persist guild online counts to USER_PREFS.guildPresenceCache (debounced
gossip) and merge remote cache on prefs ingest so companion rail presence
stays consistent across linked devices.

Expose presence row timestamps on guildPresenceSummary in view().

Co-authored-by: Cursor <[email protected]>
2026-05-22 10:57:00 -04:00
Raven ScottandCursor be400a043a feat(platform): Phase 129 companion guild persist and presence summary
Persist USER_PREFS.companionLastGuildId on every loadGuild so the
companion restores the last server the user opened on any device.

Restore companionLastGuildId on companion session startup instead of
always picking the first guild in the list.

Track per-guild online counts in _guildPresenceSummary (updated on
presence gossip) and expose guildPresenceSummary on platform.view()
for the companion guild rail presence dots.

Co-authored-by: Cursor <[email protected]>
2026-05-22 10:44:38 -04:00
Raven ScottandCursor af74d9af07 feat(platform): forum search mesh merge API for Phase 128 (v0.8.93)
Add searchForumPostsWithMesh and _forumPostsFromMeshMessages to merge
local forum haystack hits with guild MESSAGE_SEARCH mesh responses via
pearcord-search.mergeForumSearchHits.

_resolveSearchResults uses mesh for forum scope and records
_lastSearchMeshMeta with scope forum for the desktop search UI.

Co-authored-by: Cursor <[email protected]>
2026-05-22 10:30:21 -04:00
Raven ScottandCursor 8ac673b2aa feat(platform): forum search enrich, pair deep links, notification jump (v0.8.92)
Wire rankAndEnrichForumSearchHits in searchForumPosts; navigateDeepLink
handles pair kind; formatDevicePairDeepLink and openNotificationTarget
for companion notification navigation.

Co-authored-by: Cursor <[email protected]>
2026-05-22 10:15:17 -04:00
Raven ScottandCursor 89df90b933 feat(platform): search ranking merge and device link pairSwarm hook (v0.8.91)
mergeSearchHits accepts query for ranked enrichment; DB fallback uses
rankAndEnrichSearchHits. linkDevicePairCode accepts an external Hyperswarm
for smoke/live pairing without destroying the guest swarm early.

Co-authored-by: Cursor <[email protected]>
2026-05-22 09:59:18 -04:00
Raven ScottandCursor 01c1bdb5bd feat(platform): Phase 125 settings mesh, search, drafts, and folders
- Join settings mesh with per-device swarm keys and unified connection wiring
- clearGuildSearchIndex, searchGuildMessages indexOnly / localIndexOnly mesh leg
- setComposeDraft, reorderServerFolders, view composeDrafts + activeComposeDraft

Co-authored-by: Cursor <[email protected]>
2026-05-22 09:11:38 -04:00
Raven ScottandCursor 798fc44462 feat(platform): sync guild search index on GUILD_SYNC ingest and export
Builds guildSearchIndex into GUILD_SYNC payloads from memory or the
persisted GuildSearchIndexStore, and merges inbound slices into local
indexes on join so multi-device search stays warm after mesh connect.

Co-authored-by: Cursor <[email protected]>
2026-05-22 08:36:42 -04:00
Raven ScottandCursor 159e8c63e9 feat(search): load/save persisted guild search index + searchIndexMeta (v0.8.87)
Integrate GuildSearchIndexStore on platform startup and debounced persist
after message ingest. Expose getGuildSearchIndexMeta and view.searchIndexMeta
for smokes and UI diagnostics.

Co-authored-by: Cursor <[email protected]>
2026-05-22 08:09:48 -04:00
Raven ScottandCursor 1d8e700bd1 feat(search): guild index, mesh fanout, thread filter, companion readOnly (v0.8.86)
Integrate pearcord-search GuildSearchIndex with incremental message indexing.
Add searchGuildMessagesWithMesh via MESSAGE_SEARCH_REQUEST/RESPONSE gossip.
Expose searchMeshMeta, threadsPanelFilter, readOnly, and companionMode in view.
setThreadsPanelFilter, setSearch includeMesh, and block sends in read-only mode.

Co-authored-by: Cursor <[email protected]>
2026-05-22 08:02:52 -04:00
Raven ScottandCursor db4ef3ceda feat(audit): schedule filter sync, member-join CSV push, GUILD_SYNC ingest (v0.8.84)
Add _resolveAuditExportFilter to merge guild schedule filter with user prefs.
setAuditLogExportFilter now writes filter into auditExportSchedule for mods.
Push signed audit CSV on member join via debounced _pushAuditCsvOnMemberJoinIfDue
when pushCsvOnMemberJoin is enabled.

Fix GUILD_SYNC member ingest to only emit member events for new roster rows and
trigger the same debounced CSV push when a peer was offline during MEMBER_JOIN
gossip. Expose auditExportScheduleFilter in view for UI schedule hints.

Co-authored-by: Cursor <[email protected]>
2026-05-22 07:48:54 -04:00
Raven ScottandCursor 63cdb8ae03 feat(platform): Phase 119 audit filter, CSV mesh timestamps, GUILD_SYNC (v0.8.83)
- setAuditLogExportFilter + view.auditLogExportFilter
- pushAuditExportCsvToMesh updates lastCsvMeshPushAt on schedule
- getAutomationHealthDashboard passes auditExportCsvMeta for dashboard

Co-authored-by: Cursor <[email protected]>
2026-05-22 07:39:11 -04:00
Raven ScottandCursor aae290258d feat(platform): Phase 118 scheduled CSV mesh + auditExportCsvMeta view (v0.8.82)
_runScheduledAuditExportIfDue now calls pushAuditExportCsvToMesh when
pushSignedCsvToMesh is enabled. View exposes auditExportCsvMeta for the
audit modal HMAC signature badge.

Co-authored-by: Cursor <[email protected]>
2026-05-22 07:32:19 -04:00
Raven ScottandCursor 3cd74e9989 feat(platform): Phase 117 audit CSV mesh push and gossip handlers (v0.8.81)
- pushAuditExportCsvToMesh + _onAuditExportCsvGossip
- Guild listener for audit-export-csv-sync
- exportAuditLog sign path unchanged; mesh uses dedicated RPC 76

Co-authored-by: Cursor <[email protected]>
2026-05-22 07:26:13 -04:00
Raven ScottandCursor 874472732c feat(platform): Phase 116 — audit CSV sign, CSV mesh push, SMTP prefs (v0.8.80)
- exportAuditLog signs CSV; getAuditExportCsvExport; GUILD_SYNC slice
- pushHookFailureDigestCsvToMesh + _onHookFailureDigestCsvGossip
- SMTP relay prefs in UI API; _syncDigestRelaySmtpConfigToPlugin
- relay handoff opts include smtp manifest fields

Co-authored-by: Cursor <[email protected]>
2026-05-22 07:19:12 -04:00
Raven ScottandCursor 9e5390de96 feat(platform): Phase 115 bridges — CSV mesh, archive health, webhook URL (v0.8.79)
- exportHookFailureDigest / getHookFailureDigestCsvExport with signatureValid
- GUILD_SYNC slices: hookFailureDigestCsvExport, archiveHealthPrefs, modDigestGroupDmMeta
- refreshArchivePeerHealth + archive health prefs on guild focus/join/open
- dryRunDigestWebhookRelay + digest relay webhook URL plugin sync
- syncModDigestGroupDmFromMesh for mod digest group DM participant sync

Co-authored-by: Cursor <[email protected]>
2026-05-22 07:11:30 -04:00
Raven ScottandCursor c844d4f200 feat(platform): Phase 114 webhook dry-run, health refresh, GDM mesh meta
- dryRunDigestWebhookRelay and webhook preview on digest-relay hook dry-run
- refreshArchivePeerHealth with persist + GUILD_SYNC mesh push
- syncModDigestGroupDmFromMesh and modDigestGroupDmMeta on GUILD_SYNC bundle
- Signed CSV hook failure digest export with signatureValid
- Ingest mod digest meta for all members; open group DM for mods only

Co-authored-by: Cursor <[email protected]>
2026-05-22 06:58:59 -04:00
Raven ScottandCursor a21685522a feat(platform): mod digest group DM and signed relay handoff posts (v0.8.77)
Add ensureModDigestGroupDmChannel and _postModDigestGroupDmSummary so hook
failure digest mesh sync can post to an auto-created mod group DM without
leaving guild mode. Requires two other moderators (manage guild/channels).

Restore guild session after DM posts. Extend hook failure notify prefs API
for mod digest group DM toggles.

Co-authored-by: Cursor <[email protected]>
2026-05-22 06:37:47 -04:00
Raven ScottandCursor 77936807b4 feat(platform): Phase 112 relay signing and health decay
- Sign relay handoffs with guild-derived secret for webhook/smtp plugins
- Verify signature on getLastDigestRelayHandoff (signatureValid)
- Apply health decay in archive peer picker
- Show signature status in server settings UI

Co-authored-by: Cursor <[email protected]>
2026-05-22 06:27:46 -04:00
Raven ScottandCursor aae2a51cd1 feat(platform): Phase 111 relay plugins, digest summary, prerelease tag
- digestRelayPlugins on GUILD_SYNC; apply active plugin to relay handoff
- Hook failure digest summary channel post on mesh push
- Worker announce channelTag; dry-run relay preview for digest-relay hooks

Co-authored-by: Cursor <[email protected]>
2026-05-22 06:19:31 -04:00
Raven ScottandCursor 4e55fbcdfe feat(platform): Phase 110 digest-relay dispatch and mesh notify prefs
- Record digest relay handoff before AUTOMATION_DIGEST_EXPORT fanout
- Dispatch automation hooks on digest export (digest-relay action + audit)
- hookFailureDigestNotifyPrefs on GUILD_SYNC and push notifications
- Archive peer picker prefers synced health from archivePeerSeen rows

Co-authored-by: Cursor <[email protected]>
2026-05-22 06:10:58 -04:00
Raven ScottandCursor 4085513530 feat(platform): digest relay, inbox channel post, worker semver gate
Record digest relay handoffs, post digest summaries to configured inbox channels,
validate worker versions on announce, sync digestRelayHandoff on GUILD_SYNC,
and expose getLastDigestRelayHandoff (Phase 109 v0.8.73).

Co-authored-by: Cursor <[email protected]>
2026-05-22 06:01:03 -04:00
Raven ScottandCursor 81a00cfeac feat(platform): digest notify, peer health, worker release audit, health dash
Notify mods on digest export with prefs and AUTOMATION_DIGEST_EXPORT fanout.
Archive peer picker healthScore/healthLabel. automation.worker.release audit on
announce and mesh gossip. getAutomationHealthDashboard and GUILD_SYNC notify prefs.
Phase 108 v0.8.72.

Co-authored-by: Cursor <[email protected]>
2026-05-22 05:46:16 -04:00
Raven ScottandCursor 35b34b0bb7 feat(platform): digest fetch retry and archivePeerSeen guild sync
Refactor fetchAutomationDigestSnapshotFromMesh with exponential backoff
retries mirroring audit archives. Bundle archivePeerSeen on GUILD_SYNC
push and ingest on join. Phase 107 v0.8.71.

Co-authored-by: Cursor <[email protected]>
2026-05-22 05:37:32 -04:00
Raven ScottandCursor 702377b36c feat(platform): digest snapshot mesh fetch and archive peer last seen
Implement fetchAutomationDigestSnapshotFromMesh with waiters, gossip handlers,
scheduled export body gossip, GUILD_SYNC snapshot ingest, listAuditArchiveFetchPeers
lastSeenAt, and _touchArchivePeerSeen on presence/mesh join. Phase 106 v0.8.70.

Co-authored-by: Cursor <[email protected]>
2026-05-22 05:31:54 -04:00
Raven ScottandCursor 7adf714b8a feat(platform): Phase 105 mesh peer indicator and digest export schedule
- listAuditArchiveFetchPeers returns meshConnected per member
- automationDigestExportSchedule timer and snapshot persistence
- GUILD_SYNC slices for schedule and snapshot metadata
- runOverdueAutomationSchedules includes digest export task

Co-authored-by: Cursor <[email protected]>
2026-05-22 05:23:36 -04:00
Raven ScottandCursor 2eb9ece6f0 feat(platform): Phase 104 peer picker, trial matrix, digest export
- listAuditArchiveFetchPeers and targetMemberId on archive mesh requests
- exportAutomationScheduleDigest for schedule + hook failure bundle
- runIntegrationWorkerTrialMatrix across all worker templates
- Template-specific trial event fanout via buildSampleAppEvent

Co-authored-by: Cursor <[email protected]>
2026-05-22 05:09:14 -04:00
Raven ScottandCursor a7be60b702 feat(platform): Phase 103 retry fetch, receipts trial, overdue runs
- fetchAuditExportArchiveFromMesh retries with exponential backoff
- runIntegrationWorkerTrial receipt mode for delivery-tracer template
- runOverdueAutomationSchedules runs due audit export and digest sync

Co-authored-by: Cursor <[email protected]>
2026-05-22 05:03:31 -04:00
Raven ScottandCursor 09b98b0efb feat(platform): Phase 102 archive fetch, dashboard, trial asserts
- fetchAuditExportArchiveFromMesh via RPC 72 request/response waiters
- Respond to audit-export-archive-request when local archive has entries
- getAutomationScheduleDashboard on view state
- runIntegrationWorkerTrial fans out MESSAGE_CREATE and requires sawMessageCreate
- Merge archive ingest resolves pending mesh fetch waiters

Co-authored-by: Cursor <[email protected]>
2026-05-22 04:57:16 -04:00
Raven ScottandCursor a5008a3621 feat(platform): audit archive download and worker install trial (Phase 101)
- exportAuditExportArchive formats stored archive entries for UI modal
- runIntegrationWorkerTrial starts PearcordIntegrationWorker in-process
  briefly to validate template wiring before Pear publish

Co-authored-by: Cursor <[email protected]>
2026-05-22 04:49:10 -04:00
Raven ScottandCursor 3b72fd69e8 feat(platform): Phase 100 audit archives, digest schedule, install plan
- AUDIT_EXPORT_ARCHIVE retention + gossip on exportAuditLog
- digestExportSchedule timer parity with audit export schedule
- fetchWorkerInstallPlan / listAuditExportArchives in guild view
- GUILD_SYNC slices for archives, digest schedule

Co-authored-by: Cursor <[email protected]>
2026-05-22 04:44:44 -04:00
Raven ScottandCursor 563792464d feat(platform): Phase 99 scheduled audit export, digest sync, version diff
- Scheduled audit export timer with GUILD_SYNC auditExportSchedule prefs
- runScheduledAuditExportNow forces export + gossip (+ digest push)
- HOOK_FAILURE_DIGEST_SYNC ingest and pushHookFailureDigestToMesh
- getHookFailureDigest merges mesh snapshot via mergeHookFailureDigests

Co-authored-by: Cursor <[email protected]>
2026-05-22 04:38:48 -04:00
Raven ScottandCursor 91c7da8847 feat(platform): Phase 98 audit export gossip, digest export, worker changelog
- exportAuditLog gossips AUDIT_EXPORT_SNAPSHOT entries to guild mesh
- _onAuditExportSnapshotGossip merges snapshot rows into local audit log
- exportHookFailureDigest with MANAGE_GUILD gate
- announceWorkerRelease accepts releaseNotes; GUILD_SYNC includes releaseNotes

Co-authored-by: Cursor <[email protected]>
2026-05-22 04:32:24 -04:00
Raven ScottandCursor 9fa0db2d3e feat(platform): audit export, hook failure fanout, publish announce fixes (Phase 97)
- exportAuditLog with MANAGE_GUILD gate and formatAuditExport integration
- _fanoutHookFailureEvent dispatches HOOK_FAILURE to other automation hooks;
  skipFanout prevents recursive fanout on nested failures
- Reorder _recordHookFailure so fanout runs before audit/notify and audit errors
  cannot block webhook fanout
- Import categoryAllows for failure hook filtering

Co-authored-by: Cursor <[email protected]>
2026-05-22 04:27:18 -04:00
Raven ScottandCursor 5a77582dbb feat(v0.8.60): audit filters, hook failure digest, worker release hints
- listAuditLog(filter), getHookFailureDigest, announceWorkerRelease
- WORKER_RELEASE_ANNOUNCE gossip ingest + GUILD_SYNC.workerReleaseHint
- appVersion constructor option for update-available comparison
- view: hookFailureDigest, workerReleaseHint, auditLogFilterOptions

Co-authored-by: Cursor <[email protected]>
2026-05-22 04:17:52 -04:00
Raven ScottandCursor c407bc5d55 feat(v0.8.59): per-user hook mute and scoped setHookFailurePrefs
- getHookFailurePrefs returns guildMute, userMute, muteNotifications
- setHookFailurePrefs scope user|guild (guild requires MANAGE_GUILD)
- _notifyHookFailure uses shouldMuteForUser
- view.hookFailurePrefs exposes split mute state for server settings UI

Co-authored-by: Cursor <[email protected]>
2026-05-22 04:11:55 -04:00
Raven ScottandCursor 4c8d177c4b feat(v0.8.58): GUILD_SYNC auditRecent and hook failure mute prefs
- _exportAuditSyncSlice: up to 32 automod/automation/moderation audits
- Ingest auditRecent on GUILD_SYNC; sync hookFailurePrefs
- getHookFailurePrefs / setHookFailurePrefs (MANAGE_GUILD)
- _notifyHookFailure respects muteNotifications
- view.hookFailurePrefs; push GUILD_SYNC after prefs/retention save

Co-authored-by: Cursor <[email protected]>
2026-05-22 04:05:11 -04:00
Raven ScottandCursor 6bf4576439 feat(v0.8.57): automod audit, hook failure alerts, audit gossip ingest
- automod.block audit on _assertAutomod (reason in action label)
- automation.hook.failed audit + HOOK_FAILURE_ALERT gossip on failed hooks
- HookFailureAlertStore wiring, mod MANAGE_GUILD notifications
- Remote AUDIT_APPEND inserts into local audit-log collection
- view.hookFailureAlerts for server settings UI

Co-authored-by: Cursor <[email protected]>
2026-05-22 03:58:49 -04:00
Raven ScottandCursor 2ca61bbc26 feat(platform): delivery metrics API and automod dry-run preview (v0.8.56)
Expose getAutomationDeliveryMetrics, dryRunAutomodMessage with optional
memberRoles, and automationDeliveryMetrics on view for server settings.

Co-authored-by: Cursor <[email protected]>
2026-05-22 03:52:14 -04:00
Raven ScottandCursor 58b8cb31af feat(platform): GUILD_SYNC receiptRetention, hook dry-run APIs (v0.8.55)
Include receiptRetention in guild sync bundles and ingest on join. Expose
dryRunAutomationHook and dryRunAllAutomationHooks for server settings
preview without writing delivery receipts.

Co-authored-by: Cursor <[email protected]>
2026-05-22 03:48:32 -04:00
Raven ScottandCursor 13a4b69b7c feat(platform): integration workers, hook editor APIs, receipt retention
Add pearcord-integration-worker templates, PearcordIntegrationWorker class,
createIntegrationWorker/buildIntegrationWorkerScript, receipt retention
get/set, and emit app-event on bot bridge for local worker subscriptions.

Co-authored-by: Cursor <[email protected]>
2026-05-22 03:44:42 -04:00
Raven ScottandCursor c4b46d63e9 feat(platform): dispatch automation hooks and record P2P delivery receipts
Wire pearcord-delivery-receipts to run enabled hooks on every APP_EVENT and
bot-bridged messageCreate. Successful deliveries gossip APP_EVENT_RECEIPT;
view exposes automationDelivery stats for server settings UI.

Co-authored-by: Cursor <[email protected]>
2026-05-22 03:39:41 -04:00
Raven ScottandCursor 41a0adf295 feat(automations): export/import manifest and GUILD_SYNC hooks slice
Wire pearcord-automation-export: list/upsert/delete hooks, exportAutomationManifest,
importAutomationManifest, mesh gossip ingest, and automationHooks in view().

Co-authored-by: Cursor <[email protected]>
2026-05-22 03:20:15 -04:00
Raven ScottandCursor 23a1c999d6 feat(automations): APP_EVENT fanout and createAppListener
Wire pearcord-app-events on guild open: bridge bot payloads, fanout channel
permission and custom-role changes, gossip APP_EVENT to mesh, and expose
view.appEvents snapshot for debugging.

Co-authored-by: Cursor <[email protected]>
2026-05-22 03:15:08 -04:00
Raven ScottandCursor 11401afe9e feat(permissions): filter guild channels by VIEW_CHANNEL in view()
Hide channels denied via role or channel overwrite from view().channels,
guard selectChannel with memberCanViewChannel, and reassign activeChannelId
to the first visible text channel when the current selection becomes hidden
after loadGuild or permission gossip.

Co-authored-by: Cursor <[email protected]>
2026-05-22 03:11:22 -04:00
Raven Scott 489d5c6a90 feat(platform): enforce voice/stage permissions per channel (Phase 85)
joinVoiceChannel requires CONNECT_VOICE; missing SPEAK_IN_VOICE forces
listen-only. joinStageChannel uses channel-effective MANAGE_CHANNELS for
mods. view().voicePermsByChannel maps connect/speak/listenOnly per channel.
2026-05-22 03:07:32 -04:00
Raven Scott 5c4b6c1ed4 feat(platform): GUILD_SYNC channel meta + SEND_MESSAGES enforcement
Bundle channelSettings (description + slowmode) and all topic-bearing channel
types in GUILD_SYNC; ingest into ChannelDescriptionStore on peer join. Push
mesh sync after topic/description edits. _participationMask applies channel
overwrites for send, voice join, and view.canPostInActiveChannel.
2026-05-22 03:02:43 -04:00
Raven Scott 30f27c515a feat(platform): per-channel permission overwrites (Phase 82)
Integrate pearcord-channel-permissions: list/upsert/delete overwrites,
channel-effective _hasPerm/_myPermissions, GUILD_SYNC bundle, and mesh
ingest handlers. Requires MANAGE_CHANNELS on the active channel to edit.
2026-05-22 02:56:26 -04:00
Raven Scott 0513f4df88 feat(platform): upload activity images via Hyperdrive staging
Add setActivityImageFromBytes (256 KB image cap, __presence__ channel) and
readActivityImagePreview for UI thumbnails. Merges large/small image keys
into the current activity and reuses presence enrichment for P2P gossip.
2026-05-22 02:51:19 -04:00
Raven Scott ceddeb42fd feat(platform): enrich presence gossip with activity asset attachments
Async _enrichPresenceActivity resolves large/small image keys via the
local attachments store before PRESENCE_UPDATE broadcast on guild and
contacts meshes. Updates self presence activity after enrichment.
2026-05-22 02:48:31 -04:00
Raven Scott ad99fa78f9 feat(platform): channel topic/description with description sidecar
Wire pearcord-channel-meta: setChannelTopic updates channels + gossip;
setChannelDescription uses ChannelDescriptionStore (always initialized in
ready()) while slowmode stays in HyperDB. Ingest remote CHANNEL_SETTINGS
into the sidecar. view().activeChannelSummary uses buildChannelSummary.
2026-05-22 02:45:09 -04:00
Raven ScottandCursor 05bfce0955 feat(platform): activityFeed view, setActivity, and presence gossip
Wire pearcord-activity buildActivityFeed into view(), extend setPresence and
add setActivity for Now Playing. Friend list rows include activity field.

Co-authored-by: Cursor <[email protected]>
2026-05-22 02:37:23 -04:00
Raven ScottandCursor 893f518045 feat(platform): server folders in view and user-prefs CRUD
Wire pearcord-server-folders into PearcordPlatform: createServerFolder,
assignGuildToFolder, collapse/rename/delete, and buildServerRailLayout on
view() as serverRail with folderColors. Persist via updateUserPrefs
serverFolders and emit user-prefs after saves.

Co-authored-by: Cursor <[email protected]>
2026-05-22 02:27:28 -04:00
Raven ScottandCursor 15f162cd73 feat(platform): threadsPanel view + setThreadsPanelIncludeArchived (Phase 75)
Compute threadLastActivity, root message snippets, and threadsPanel payload
for UI sidebar. Exposes threadsPanelIncludeArchived toggle via channel emit.

Co-authored-by: Cursor <[email protected]>
2026-05-22 02:22:41 -04:00
Raven ScottandCursor ab20375f9d feat(platform): navigateDeepLink for invite join and guild routes (Phase 74)
navigateDeepLink handles invite (joinInvite), guild-channel (load +
selectChannel), guild-only, and message kinds. Exposes formatInviteDeepLink
and formatGuildDeepLink for UI copy/share flows.

Co-authored-by: Cursor <[email protected]>
2026-05-22 02:18:37 -04:00
Raven ScottandCursor 44e36ee6ac feat(platform): voice lurker listen-only join and guards (Phase 72)
joinVoiceChannel auto-upgrades lurkers to listen-only; joinVoiceListenOnly
is explicit. Blocks unmute, soundboard, screen share, and mic capture when
listen-only. View exposes canJoinVoiceListenOnly, voiceMedia.listenOnly,
and listenOnly on voiceStatesByChannel. Audit VOICE_JOIN_LISTEN.

Co-authored-by: Cursor <[email protected]>
2026-05-22 02:10:41 -04:00
Raven ScottandCursor fd70fa4df6 feat(navigation): navigateDeepLink and formatMessageDeepLink APIs
Parse pearcord:// URLs, load guild or openGroupDM context, then
jumpToMessage for notification and share-link flows.

Co-authored-by: Cursor <[email protected]>
2026-05-22 02:05:02 -04:00
Raven ScottandCursor 414132f717 feat(guild): enforce lurker read-only across send, react, and voice
- setMemberRole accepts lurker; _assertCanParticipate guards writes
- canPostInActiveChannel false for lurkers without custom role perms
- Blocks joinVoiceChannel, toggleReaction, and message edits for lurkers

Co-authored-by: Cursor <[email protected]>
2026-05-22 02:00:12 -04:00
Raven ScottandCursor ea21235813 feat(messages): cross-channel jump-to-reply resolution
Add resolveMessageJump and jumpToMessage so the UI can navigate to
reply parents in other text/DM channels before scrolling and highlighting.

Co-authored-by: Cursor <[email protected]>
2026-05-22 01:55:16 -04:00
Raven ScottandCursor 593cb1ec6c feat(guild): P2P guild icon upload, preview, and sync extensions
- setGuildIconImage stages on __guild-icon__ channel (256 KB image cap)
- readGuildIconPreview with attach-mesh prefetch reuse
- GUILD_UPDATE gossip enriched via enrichGuildUpdateGossip
- GUILD_SYNC bundle includes guild snapshot + icon attachment row
- ingest guild iconHash on sync; push sync when icon present

Co-authored-by: Cursor <[email protected]>
2026-05-22 01:52:42 -04:00
Raven ScottandCursor 22de3514ca feat(platform): custom guild roles and permission editor integration (v0.8.31)
Wire pearcord-guild-roles for create/update/delete roles, member assignments,
_hasPerm enforcement, GUILD_SYNC role bundles, and view.guildCustomRoles for UI.

Co-authored-by: Cursor <[email protected]>
2026-05-22 01:48:30 -04:00
Raven ScottandCursor bd3548986e feat(platform): GUILD_SYNC member roster ingest and push (v0.8.30)
- _buildGuildSyncBundle includes full members[] from listMembers()
- _ingestGuildSync upserts member rows and emits member for UI refresh
- _pushGuildSyncToMesh runs when messages or members exist (not messages-only)

Late joiners and reconnecting peers receive roster + roles over live mesh.

Co-authored-by: Cursor <[email protected]>
2026-05-22 01:42:30 -04:00
Raven ScottandCursor 7a23b528db feat(emoji): setGuildEmojiAllowedRoles and usable emoji view filtering
Expose setGuildEmojiAllowedRoles for mods, _usableGuildEmojis/_usableEmojiMap
for picker rendering, and view fields usableGuildEmojis + guildEmojiRoleOptions.

emojisByPack and emojiMap respect member role restrictions. Phase 63 / v0.8.28.

Co-authored-by: Cursor <[email protected]>
2026-05-22 00:46:22 -04:00
Raven ScottandCursor 86ef33115f feat(guild): ingest GUILD_SYNC history on mesh join
Add _buildGuildSyncBundle (50 msgs/channel, attachment meta),
_pushGuildSyncToMesh on peer join and remote MEMBER_JOIN, and
_ingestGuildSync with channel/attachment/message dedupe.

Joining members receive prior channel history without per-message
replay. Phase 61 / v0.8.26.

Co-authored-by: Cursor <[email protected]>
2026-05-22 00:37:59 -04:00
Raven ScottandCursor 5f7d8b460c feat(attachments): expose fetchSource on preview and mesh retry
Add readAttachmentBytesWithSource so callers know whether bytes came from
local staging, drive-local, protomux attach-mesh, or hyperdrive replication.

readAttachmentPreview now returns fetchSource for UI and smokes.
_fetchAttachMeshWithRetry mirrors banner prefetch (14s timeout + 600ms retry
when attach sessions exist). Banner prefetch uses the same retry helper.

Phase 60 / v0.8.25 — Pear attach preview mesh path.

Co-authored-by: Cursor <[email protected]>
2026-05-22 00:36:15 -04:00
Raven ScottandCursor 018291aaa5 feat(platform): guildEmojiSlots view and boost-aware emoji upsert
Pass guild boost level into emojiRegistry.upsert for slot enforcement.
Expose getGuildEmojiSlots() and view.guildEmojiSlots for server settings UI.

Co-authored-by: Cursor <[email protected]>
2026-05-22 00:30:53 -04:00
Raven ScottandCursor b8badff7b1 feat(platform): guild voice soundboard upsert, play, and view state (v0.8.21)
Integrate pearcord-soundboard: stage WAV attachments, upsert/remove registry rows,
gossip SOUND_UPSERT/SOUND_PLAY, playSoundboardSound with voice-plane injection,
remote play ingest on guild-sound-play, and expose guildSounds/recentSoundPlays
on platform.view(). Depends on pearcord-soundboard file dep.

Co-authored-by: Cursor <[email protected]>
2026-05-22 00:19:46 -04:00
Raven ScottandCursor 7635295cfb feat(platform): forum archive search and show-archived toggle (v0.8.20)
Add searchForumPosts, setForumIncludeArchived, forum search scope in
_resolveSearchResults (fix channel db.get with guildId), guild search thread
titles, and pearcord-forum-search dependency.

Co-authored-by: Cursor <[email protected]>
2026-05-22 00:13:51 -04:00
Raven ScottandCursor 24ba5b1f45 fix(profile): prefetch banner bytes over mesh before drive read (v0.8.19)
_ensureBannerAttachmentReady calls _prefetchBannerFromPeers when guild
mesh is active. _gossipProfileCosmetics awaits guild gossip broadcast.

Supports Phase 54 live peer banner fetch in PearcordPlatform.

Co-authored-by: Cursor <[email protected]>
2026-05-22 00:07:20 -04:00
Raven ScottandCursor d14fc164f5 feat(stickers): stage Lottie JSON and pass format to sticker registry (v0.8.18)
stageGuildStickerImage detects Lottie via pearcord-lottie, stores
application/lottie+json attachments, and upsertGuildSticker forwards
image bytes for validateSticker. Supports Phase 52 vector stickers.

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:48:30 -04:00
Raven ScottandCursor 0ff4d29ed1 feat(profile): remote peer banner preview over P2P attachment meta (v0.8.17)
Phase 51 — remote profile banners:
- pearcord-profile-assets: embed bannerAttachment on PROFILE_COSMETIC gossip
- _gossipProfileCosmetics enriches payload; _ingestPeerCosmetics ingests meta
- readPeerProfileBannerPreview(userId) + _ensureBannerAttachmentReady
- _prefetchBannerFromPeers for guild mesh byte fallback

Peers can render banner images after cosmetics sync without a central CDN.

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:43:37 -04:00
Raven ScottandCursor 8e56c82945 chore: remove accidental self-referential symlink from repo root
The pearcord-platform symlink was created by a mistaken git add and would
break clones; keep only index.js and package.json at module root.

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:38:09 -04:00
Raven ScottandCursor b9393ea45c feat(view): expose messageLayout for sticker+text combo bodies (v0.8.16)
Add pearcord-message-layout dependency and messageLayoutKind() so each
message in view() carries messageLayout: text | sticker-only | combo | hub.
Combo rows keep displayContent for caption text while sticker-only and hub
mirrors still clear displayContent for legacy render paths.

Depends on [email protected] for classifyMessageLayout().

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:37:59 -04:00
Raven ScottandCursor 7edc64dc6a feat(platform): profile banner image upload with boost perk gate
Add setProfileBannerImage (512 KB max, upload_cosmetic perk) staging
to Hyperdrive attachments, gossip ATTACHMENT_META, and
readProfileBannerPreview for UI and hub author thumbnails.

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:34:09 -04:00
Raven ScottandCursor 3899ff9a7f feat(platform): profile cosmetics save, gossip, and cosmeticsByUserId view
Integrate pearcord-profile-cosmetics with boost perk gates, guild and
contacts fanout, peer cache, profile modal IPC, and mesh join on settings swarm.

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:30:28 -04:00
Raven ScottandCursor a8027178c6 feat(platform): rich hub mirror cards on ingest and in view/search
Integrate pearcord-hub-cards: build card on ANNOUNCEMENT_HUB_POST ingest,
hubMirrorJson on insert, enrichMessageRow for UI, hub-only displayContent,
authorAvatarHash in discovery payload, search haystack includes card text.

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:25:40 -04:00
Raven ScottandCursor 195fec9026 feat(platform): sticker-only send, validation, view enrich, search
Normalize stickerNames against guild registry, skip automod on empty text,
enrich messages from stickerNamesJson after DB read, sticker-only
displayContent, previewPlaintext for notifications, guild search haystack.

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:20:14 -04:00
Raven ScottandCursor 8cec894657 feat(platform): emoji pack APIs and emojisByPack view fields
Expose upsertEmojiPack, removeEmojiPack, guild emoji pack gossip ingest,
and view enrichment (guildEmojiPacks, emojisByPack) for desktop UI.

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:14:28 -04:00
Raven ScottandCursor 45571368a3 feat(platform): contributeGuildBoost for members + myBoostSlots view
Any guild member may contribute boosts via personal slots (not Manage Guild).
Extract _gossipGuildBoostState for shared gossip after add/contribute. Expose
myBoostSlots on view for server settings UI (used, remaining, canContribute).

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:08:50 -04:00
Raven ScottandCursor c5f971a756 fix(platform): skip duplicate announcement hub mirrors on re-gossip
Before inserting a remote hub mirror, check announcementHub.isDuplicateMirror
for the source messageId and record markMirrored after a successful insert.
Prevents duplicate 📡 mirror lines when ANNOUNCEMENT_HUB_POST is received twice.

Co-authored-by: Cursor <[email protected]>
2026-05-21 23:04:43 -04:00
Raven ScottandCursor 9adffdd408 feat(platform): sticker pack APIs, gossip ingest, and view fields
Add upsertStickerPack, removeStickerPack, and listStickerPacks for mods with
Manage Guild. Upsert stickers accepts optional packName. View exposes
guildStickerPacks and stickersByPack for UI grouping. Pack changes re-gossip
member stickers so peers stay consistent.

Co-authored-by: Cursor <[email protected]>
2026-05-21 22:57:26 -04:00