Work Micro Tool
Meeting Notes Cleaner
This project turns messy meeting notes into a clear summary, action list, decisions, and follow-up questions without using a database.
What It Does
- Accepts rough or unstructured meeting notes.
- Formats them into a clean summary and a more usable meeting output.
- Separates action items, decisions, and follow-up questions.
- Supports different meeting contexts and output styles.
- Shows the final result inside a modal popup for easy copying.
Setup
- Open
functions/config.local.php. - Add your OpenAI API key to
openai_api_key. - Keep or change the default model in
openai_model. - Optional: add
adsense_clientandadsense_sidebar_slotto activate the right sidebar ad area. - Make sure PHP
curlis available on the server. - Load
/MeetingNotesCleaner/in your browser through MAMP.
How To Use
- Paste the rough meeting notes.
- Select the meeting type, output style, and focus.
- Add optional audience details or extra context.
- Click
Clean Notes. - Review and copy the cleaned output from the popup modal.
Folder Structure
index.php– main UI entry pointcss/style.css– interface stylingjs/app.js– browser-side interactions and modal flowfunctions/lib.php– prompt logic, OpenAI requests, validation, rate limitingfunctions/api.php– backend API endpointfunctions/config.local.php– local API key, model, and ad settingsstorage/logs– error and debug logs
Security Notes
- The
functionsandstoragefolders are protected with.htaccess. - Requests use a CSRF token.
- A simple file-based rate limit reduces abuse without a database.
Troubleshooting
- If generation fails, check
functions/config.local.phpfor the API key. - If the API returns an error, inspect the generated log file under
storage/logs. - If the popup does not open, make sure JavaScript is enabled.
- If folder protection does not work, make sure Apache allows
.htaccessoverrides.