ワンクリックで
meeting-create-invite
Schedule meetings and generate video conferencing links (Google Meet, Zoom, Microsoft Teams) and invite participants.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Schedule meetings and generate video conferencing links (Google Meet, Zoom, Microsoft Teams) and invite participants.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Analyze spreadsheet data intelligently - understand structure, choose right analysis tool (SQL/pivot/chart), apply formatting, present insights.
Create charts and visualizations in Google Sheets — detect data structure, select chart type, format for clarity, present insights
Generate an editable Microsoft Word (.docx) document — reports, letters, memos, structured docs. Use when the user wants a Word file. Built with docx-js (Node) for high fidelity.
Generate a polished, printable PDF — reports, letters, invoices, resumes, one-pagers. Use when the user wants a PDF document. Typst is the primary engine; LaTeX (tectonic) is the fallback for niche packages or specific academic/journal templates.
Generate a PowerPoint (.pptx) slide deck — pitch decks, reviews, summaries. Use when the user wants slides. Built with pptxgenjs (Node) for native, editable slides and charts.
Generate an Excel (.xlsx) workbook or a CSV file — tables, financial models, data exports, formatted reports with charts. Use when the user wants a spreadsheet or CSV. Built with openpyxl + pandas (Python).
| name | meeting-create-invite |
| description | Schedule meetings and generate video conferencing links (Google Meet, Zoom, Microsoft Teams) and invite participants. |
| target | executor |
search_memory to check if the user has a preferred default meeting platform. If unknown, run list_integrations to see which platforms (Google Calendar, Zoom, Microsoft Teams) are currently connected. If there are multiple and you are confused, ask the user for clarification.GOOGLECALENDAR_CUSTOM_CREATE_EVENT) and include the participants as attendees. Google Calendar will automatically send them an invitation email. Do not send a separate email manually.ZOOM_CREATE_A_MEETINGMICROSOFT_TEAMS_CREATE_USER_ONLINE_MEETING (or MICROSOFT_TEAMS_CREATE_MEETING)GMAIL_CREATE_EMAIL_DRAFT to draft an email with the generated link. DO NOT send the email directly unless explicitly asked. Wait for the user to review the draft.GOOGLECALENDAR_CUSTOM_CREATE_EVENT: Create event and add attendees (for Google Meet).ZOOM_CREATE_A_MEETING: Generate a Zoom meeting link.MICROSOFT_TEAMS_CREATE_USER_ONLINE_MEETING: Generate a Teams meeting link.MICROSOFT_TEAMS_CREATE_MEETING: Alternate tool to generate a Teams meeting link.GMAIL_GET_CONTACTS: Get email addresses for participants.GMAIL_CREATE_EMAIL_DRAFT: Draft an email with the meeting details.SLACK_FIND_USERS / SLACK_SEND_MESSAGE: Share the meeting link via Slack if requested.search_memory for preferred meeting app.list_integrations to check connected platforms and select an available one. Ask user for clarification if ambiguous.From Contacts:
GMAIL_GET_CONTACTS()
From Slack (If requested to share via Slack):
SLACK_FIND_USERS(search_query="[Name]")
Option A: Google Meet (Via Calendar)
Use GOOGLECALENDAR_CUSTOM_CREATE_EVENT and include the participants as attendees. This automatically sends the invite emails.
Option B: Separate Link Generation (Zoom/Teams)
Use ZOOM_CREATE_A_MEETING or MICROSOFT_TEAMS_CREATE_USER_ONLINE_MEETING to generate the meeting link.
GMAIL_CREATE_EMAIL_DRAFT(to="...", subject="...", body="Here is the meeting link: [LINK]"). Do not send directly.SLACK_SEND_MESSAGE to share via Slack.Report: