SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dustland/openviber --skill gmail명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Run OpenAI Codex CLI for autonomous software engineering tasks via non-interactive `codex exec` with chat-friendly outputs.
Use the Cursor CLI (agent) for software engineering tasks. Includes installation, auth, commands, terminal-based automation, and best practices for AI coding workflows.
Run Google Gemini CLI for autonomous coding and general tasks via headless mode with chat-friendly outputs.
| name | gmail |
| description | Search, read, send, and manage Gmail emails via Google API |
| requires | {"oauth":[{"provider":"google","scopes":["https://www.googleapis.com/auth/gmail.readonly","https://www.googleapis.com/auth/gmail.send","https://www.googleapis.com/auth/gmail.modify"]}]} |
Search, read, send, and manage Gmail emails using the Google Gmail API with OAuth authentication.
Connect your Google account via Settings > Integrations > Google > Connect. The OAuth flow requests Gmail read, send, and modify permissions. No app passwords or CLI tools needed.
Search Gmail messages using full Gmail search syntax (same as the Gmail search bar).
Parameters:
query (required): Gmail search query (e.g. is:unread, from:alice@example.com newer_than:7d, subject:deploy)maxResults (optional): Maximum number of messages to return (default: 20, max: 100)Returns: Message IDs, subjects, senders, dates, and snippets.
Read the full body of a Gmail message by its message ID.
Parameters:
messageId (required): Gmail message ID from gmail_search resultsReturns: Full email with from, to, subject, date, body, and labels.
Send a plain text email via Gmail.
Parameters:
to (required): Recipient email addresssubject (required): Email subject linebody (required): Email body (plain text)cc (optional): CC recipient email addressbcc (optional): BCC recipient email addressModify labels on a Gmail message (mark read/unread, archive, star).
Parameters:
messageId (required): Gmail message IDaddLabels (optional): Label IDs to add (e.g. ['STARRED', 'UNREAD'])removeLabels (optional): Label IDs to remove (e.g. ['UNREAD', 'INBOX'])is:unread — All unread messagesis:starred — Starred messagesfrom:alice@example.com — From a specific sendersubject:meeting — Subject contains "meeting"newer_than:7d — Last 7 dayshas:attachment — Messages with attachmentsin:inbox — Inbox onlylabel:important — Important messages