Moment is an AI-powered meeting note taker that captures meeting audio, converts it into a transcript using Whisper, generates structured meeting intelligence using an LLM, and stores meeting knowledge for RAG-powered "Ask Anything" queries.
Moment/
├── ai/
│ ├── llm/
│ ├── rag/
│ └── whisper/
├── backend/
├── frontend/
├── data/
└── docs/
Do not push directly to main.
git checkout main
git pull origin maingit checkout -b feature/your-feature-nameExamples:
git checkout -b feature/whisper
git checkout -b feature/rag
git checkout -b feature/llm
git checkout -b feature/backend-apiWork primarily inside your assigned folder.
git add .
git commit -m "feat: describe your change"git push -u origin feature/your-feature-nameGo to GitHub and create a Pull Request from your branch into main.
Your Branch
↓
Pull Request
↓
Review
↓
Merge
↓
main
- Never push directly to
main. - Never commit
.envor API keys. - Pull from
mainbefore starting new work. - Keep commits meaningful.
- If you modify another person's module, coordinate with them first.
- Test your code before creating a PR.
Build. Capture. Remember. Ask Anything.