For normal usage questions, bug reports, or privacy-safe public reporting guidance, see SUPPORT.md.
| Version | Supported |
|---|---|
| 0.1.x | Yes |
If you discover a security vulnerability, please report it responsibly:
- Do not open a public GitHub issue for security vulnerabilities
- Use GitHub private vulnerability reporting if it is enabled for the repository
- If private reporting is unavailable, use the contact address listed on the maintainer GitHub profile
- If no private address is available, open a minimal public issue requesting a private contact channel without posting sensitive details
- Include steps to reproduce if possible
You should receive a response within 72 hours. We will work with you to understand and address the issue before any public disclosure.
BioVoice runs as a local server on your machine. Be aware of the following:
- API keys: Your
OPENAI_API_KEYis stored in.envand never sent to any service other than OpenAI. Never commit.envto version control. - Local-only files:
.env,.runtime/,local/,private/,tmp/, andoutput/are intended to stay local. The tracked.env.examplefile is the safe public template. - Network binding: The server binds to
127.0.0.1by default (localhost only). Remote access is rejected unless you explicitly setALLOW_REMOTE_CLIENTS=true. - LAN access: If you intentionally expose the service on your LAN, set
HOST=0.0.0.0,ALLOW_REMOTE_CLIENTS=true, and useREMOTE_ACCESS_TOKENor the generated access URL printed at startup.LOCAL_BROWSER_ORIGINSonly controls which browser origins may make cross-origin requests after that access token is presented. - File access: Structure loading is restricted by default to repo demo data (
examples/data/local),.runtime/, andoutput/. Exports are restricted to.runtime/exportsandoutput/. If you need additional private structure folders, opt in withSTRUCTURE_ALLOWED_PATHSorEXPORT_ALLOWED_PATHSin local.env. The server rejects paths outside those roots. - Raw commands: The
raw_commandaction type is disabled by default. It is gated behind bothENABLE_EXPERT_RAW_COMMANDS=true(server-side) and a per-sessionadvancedModeflag. When enabled, the AI model can execute arbitrary PyMOL Python or ChimeraX commands — including file I/O and network operations within those applications. Only enable this in environments where you trust all voice input. - CORS: The server restricts browser access to localhost origins by default. Additional trusted origins can be added via
LOCAL_BROWSER_ORIGINS. - Local retention: Session event logs, transcripts, captures, workflow exports, and runtime logs may be written to
.runtime/oroutput/depending on the feature path and retention settings. Review theRUNTIME_*knobs in.envand runnpm run cleanup:runtimebefore sharing a machine snapshot. - Screenshots and bug reports: Browser URLs, workflow inputs, target endpoints, and transcript text may appear in screenshots or logs. Redact those details before filing public issues.