Turn meeting notes or transcripts into structured summaries with decisions and action items.
- Summarizer system prompt — fixed output sections (summary, decisions, actions, open questions)
- Sample transcript —
/samplethen/summarize - Buffer paste flow — paste notes, then summarize via
sendAI
Create an app at app.dnotifier.com, copy .env.example → .env, set credentials.
cd typescript
cp .env.example .env
npm install
npm startcd python
cp .env.example .env
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python main.pycd dart
cp .env.example .env
dart pub get
dart run bin/main.dartExample session:
you> /sample
you> /summarize
### Summary
…
| Language | Path | Run |
|---|---|---|
| TypeScript | typescript/ | npm start |
| Python | python/ | python main.py |
| Dart | dart/ | dart run bin/main.dart |