Move per-session permission auto-accept policy ownership from the UI to the OpenChamber server so enabled sessions continue running when clients disconnect or the server restarts. - persist explicit per-session policies in OpenChamber settings - inherit the nearest explicit policy across subagent session hierarchies - allow child sessions to opt out of an inherited parent policy - immediately accept matching global and directory-scoped pending requests - process future requests without requiring a connected UI client - reconcile pending permissions after startup and event-stream reconnects - deduplicate concurrent requests and retry transient reply failures - synchronize policy updates across connected clients - migrate existing browser-persisted policies to server storage - suppress auto-accepted permission cards before they enter UI state - show deduplicated permission toasts for inactive sessions - preserve foreground-only permission handling in VS Code - integrate directory-aware notification routing from main - add coverage for persistence, inheritance, retries, reconciliation, pending requests, client hydration, and inactive-session toasts
8.5 KiB
8.5 KiB
Notifications Module Documentation
Purpose
This module provides notification message preparation utilities for the web server runtime, including text truncation and plain-text normalization for system notifications.
Entrypoints and structure
packages/web/server/lib/notifications/index.js: public entrypoint imported bypackages/web/server/index.js.packages/web/server/lib/notifications/routes.js: route registration for push, visibility, and session status/attention endpoints.packages/web/server/lib/notifications/push-runtime.js: push subscription persistence, VAPID initialization, and UI visibility runtime.packages/web/server/lib/notifications/apns-runtime.js: native iOS APNs device-token persistence + delivery. Two modes: relay (default — sign + POST tokens + generic text to the central Cloudflare relayhttps://api.openchamber.dev/v1/push/send, which holds the single project APNs key) and direct (fallback — sign ES256 JWT with Node crypto + HTTP/2, whenOPENCHAMBER_PUSH_RELAY_DISABLED=true). Each server has an auto-generated ECDSA P-256 keypair (getOrCreateRelayKeypair, persisted in settings); it binds tokens on the relay (/v1/push/register-token) and signs every relay request, so the relay only delivers to tokens bound to that server. APNs is the native app's sole notification channel (no local notifications) and is NOT gated on UI visibility — iOS suppresses the foreground banner instead. Mobile push carries only generic text (scenario title + session name) — seeAPNS.md.packages/web/server/lib/notifications/emitter-runtime.js: desktop/stdout + UI SSE notification emission runtime.packages/web/server/lib/notifications/runtime.js: trigger runtime for OpenCode event-driven notification fanout.packages/web/server/lib/notifications/template-runtime.js: notification template variables and session text/title enrichment runtime. Zen-model helpers are retained as compatibility stubs only.packages/web/server/lib/notifications/message.js: helper implementation module.packages/web/server/lib/notifications/message.test.js: unit tests for notification message helpers.
Public exports
Notifications API (re-exported from message.js)
truncateNotificationText(text, maxLength): Truncates text to specified max length, appending...if truncated.prepareNotificationLastMessage({ message, settings }): Prepares the last message for notification display by normalizing and truncating text.
Route registration API (routes.js)
registerNotificationRoutes(app, dependencies): Registers notification-owned endpoints:GET /api/push/vapid-public-keyPOST /api/push/subscribeDELETE /api/push/subscribePOST /api/push/apns-token(native iOS APNs device-token registration)DELETE /api/push/apns-tokenPOST /api/push/visibilityGET /api/push/visibilityGET /api/notifications/streamGET /api/session-activityGET /api/sessions/snapshotGET /api/sessions/statusGET /api/sessions/:id/statusGET /api/sessions/attentionGET /api/sessions/:id/attentionPOST /api/sessions/:id/viewPOST /api/sessions/:id/unviewPOST /api/sessions/:id/message-sent
Trigger runtime API (runtime.js)
createNotificationTriggerRuntime(dependencies): creates runtime-owned debounced trigger handling for OpenCode events.- Returned API:
maybeSendPushForTrigger(payload)
- Owns:
- completion/error/question/permission trigger routing; permission suppression consults the authoritative permission-auto-accept runtime
- session parent cache for subtask suppression
- template resolution and fallback behavior
- native notification fanout and web push payload fanout
- push suppression while any fresh UI visibility heartbeat reports a focused client
Push runtime API (push-runtime.js)
createPushRuntime(dependencies): creates runtime for web push and UI visibility state.- Returned API:
getOrCreateVapidKeys()ensurePushInitialized()setPushInitialized(value)addOrUpdatePushSubscription(uiSessionToken, subscription, userAgent)removePushSubscription(uiSessionToken, endpoint)sendPushToAllUiSessions(payload, options?)updateUiVisibility(token, visible)isAnyUiVisible()isUiVisible(token)
APNs runtime API (apns-runtime.js)
createApnsRuntime(dependencies): creates runtime for native iOS APNs push and device-token state. Dependencies:fsPromises,path,crypto,http2,APNS_TOKENS_FILE_PATH,readSettingsFromDiskMigrated,writeSettingsToDisk(persists the auto-generated relay signing keypair).- Returned API:
addOrUpdateApnsToken(uiSessionToken, deviceToken, userAgent)— also binds a newly-seen token on the relay (signed/v1/push/register-token).removeApnsToken(uiSessionToken, deviceToken)removeApnsTokenFromAllSessions(deviceToken)sendApnsToAllUiSessions(payload)— signs + sends to all registered tokens (no UI-visibility gate; iOS suppresses the foreground banner). No-ops with a single warning when APNs is unconfigured. Drops tokens on410/BadDeviceToken/Unregistered.resolveApnsConfig()
- Configuration (env first, then
settings.apnsConfig):OPENCHAMBER_APNS_KEY_ID,OPENCHAMBER_APNS_TEAM_ID,OPENCHAMBER_APNS_P8(PEM contents; literal\naccepted) orOPENCHAMBER_APNS_P8_PATH,OPENCHAMBER_APNS_BUNDLE_ID(defaultcom.openchamber.app),OPENCHAMBER_APNS_ENVIRONMENT(sandboxdefault, orproduction).
Emitter runtime API (emitter-runtime.js)
createNotificationEmitterRuntime(dependencies): creates runtime for unified notification emission channels.- Returned API:
writeSseEvent(res, payload)emitDesktopNotification(payload)broadcastUiNotification(payload)
Template runtime API (template-runtime.js)
createNotificationTemplateRuntime(dependencies): creates shared notification/template runtime. Model-backed summarization was retired after the Zen provider became unavailable.- Returned API:
resolveNotificationTemplate(template, variables)shouldApplyResolvedTemplateMessage(template, resolved, variables)fetchFreeZenModels()compatibility stub returning[]resolveZenModel(override)compatibility stub preserving stored values without validationvalidateZenModelAtStartup()compatibility no-opsummarizeText(text, targetLength, zenModel)compatibility stub returning local fallback textextractLastMessageText(payload, maxLength?)fetchLastAssistantMessageText(sessionId, messageId, maxLength?)maybeCacheSessionInfoFromEvent(payload)buildTemplateVariables(payload, sessionId)getCachedZenModels()
Constants
Default values
DEFAULT_NOTIFICATION_MESSAGE_MAX_LENGTH: 250 (default max length for notification text).NOTIFICATION_SSE_HEARTBEAT_INTERVAL_MS: 20000 (notification SSE comment heartbeat interval).
Settings object format
The settings parameter for prepareNotificationLastMessage supports maxLastMessageLength (number), the maximum length for the final notification text (default: 250). Legacy summarization settings may still exist in persisted settings but are ignored.
Response contracts
truncateNotificationText
- Returns empty string for non-string input.
- Returns original text if under max length.
- Returns
${text.slice(0, maxLength)}...for truncated text.
prepareNotificationLastMessage
- Returns empty string for empty/null message.
- Returns truncated original message. Model-backed notification summarization is retired.
- Normalizes markdown-like formatting to plain text before truncation.
- Always applies
maxLastMessageLengthtruncation to final result.
Notes for contributors
Adding new notification helpers
- Add new helper functions to
packages/web/server/lib/notifications/message.js. - Export functions that are intended for public use.
- Follow existing patterns for input validation (e.g., type checking for strings).
- Use
resolvePositiveNumberfor numeric parameters with fallbacks to maintain safe defaults. - Add corresponding unit tests in
packages/web/server/lib/notifications/message.test.js.
Error handling
prepareNotificationLastMessagedoes not call model summarization.- Invalid numeric parameters default to safe fallback values.
- Non-string inputs are handled gracefully (return empty string).
Testing
- Run
bun run type-check,bun run lint, andbun run buildbefore finalizing changes. - Unit tests should cover truncation behavior and edge cases (empty strings, invalid inputs).