mirror of
https://github.com/bitwarden/browser
synced 2026-02-26 17:43:22 +00:00
1.1 KiB
1.1 KiB
Use this template to explain code at a high level and surface gotchas.
INPUTS
- Code - the code to explain
- (optional) File path
INSTRUCTIONS
- Read the provided code.
- Describe what it does in clear, concise terms. Prefer bullets.
- Summarize data flow, side effects, external calls, and I/O.
- Note domain concepts relevant to the business/application context.
- Call out risks, edge cases, and TODOs you would add.
- Keep it actionable and brief. Avoid restating the code line-by-line.
- When helpful, include a small sequence diagram or pseudo-code.
- Keep lines ≤80 chars.
OUTPUT FORMAT
What this code does
- ...
How it works (flow)
- Inputs:
- Processing:
- Outputs:
- Side effects:
Dependencies & contracts
- Frameworks/libraries used:
- Service/API calls:
- Databases/tables/queues touched:
Assumptions
- ...
Gotchas & risks
- Concurrency:
- Error handling:
- Performance:
- Security/compliance:
- Observability:
TODOs / improvements
- Quick wins:
- Follow-ups:
Example trace (pseudo)
...