Replies: 1 comment
-
|
Solid Idea, nothing similar to this yet available on open source world. This could be a game changer for BLT if this get accoumplished. Feasibility: 80% |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Idea Y — SecureCall: Privacy-First Video Call Note Taker for Bug Disclosure Discussions
One line
A secure video call note taker that doesn't save transcriptions and can be useful when talking securely about bug disclosures.
Problem & personas
Today, when discussing sensitive security issues over video calls, participants either:
SecureCall provides real-time, AI-powered note-taking during security-focused video calls with a unique architecture: notes are displayed live but never persisted after the call ends. Participants can review structured takeaways during the discussion, export temporary summaries if needed, but the system ensures no long-term storage of sensitive exploit details.
Core idea
A privacy-first video call companion that:
Use cases:
Technical architecture (sketch)
Components
Web-based client (React/Next.js)
Processing pipeline (in-memory only)
Privacy controls
Optional integrations
Data model (ephemeral only)
No persistent database. All data structures exist in-memory during the call session.
Export format (user-triggered, one-time only):
API surface (minimal)
POST /api/v1/secure-call/session/start— Create ephemeral session, return session_id and WebRTC config.WS /api/v1/secure-call/session/{id}/stream— WebSocket for audio chunks → transcription stream.GET /api/v1/secure-call/session/{id}/notes— Fetch current structured notes (in-memory only, expires after call).POST /api/v1/secure-call/session/{id}/export— Generate one-time sanitized summary (user-triggered).POST /api/v1/secure-call/session/{id}/end— Explicitly end session; clears all in-memory data.Auth: BLT session + CSRF; only participants in the session can access notes.
UX flows
Security researcher initiating a disclosure call
Maintainer reviewing a disclosure
Privacy & compliance
Development program scope (350h)
Must-have (MVP):
Nice-to-have (stretch):
Evaluation metrics (for development program)
Pros / cons
Pros
Cons
Why it fits development program
Integration points
Last Updated: February 2026
Beta Was this translation helpful? Give feedback.
All reactions