email-notify
Send SMTP email notifications after Codex completes a task. Use when one Codex or Claude run is finished, or when you need to notify on task completion with device name, project name, status, and summary via email.
What this skill does
# Email Notify ## Overview Send an email notification after each Codex task. Use the helper script to resolve the project name and send via SMTP. ## User Preparation ### 1) Configure environment variables Add the following lines to `~/.bashrc` (Linux) or `~/.zshrc` (macOS): ``` export CODEX_MACHINE_NAME="Machine-name" # e.g., Macbook export CODEX_EMAIL_SMTP_HOST="smtp.example.com" export CODEX_EMAIL_SMTP_PORT="587" export CODEX_EMAIL_USERNAME="[email protected]" export CODEX_EMAIL_PASSWORD="..." export CODEX_EMAIL_FROM="[email protected]" export CODEX_EMAIL_TO="[email protected],[email protected]" export CODEX_EMAIL_USE_TLS="false" # true/false, default false export CODEX_EMAIL_USE_SSL="true" # true/false, default true ``` If your SMTP server does not require auth, leave `CODEX_EMAIL_USERNAME` and `CODEX_EMAIL_PASSWORD` unset. Set `CODEX_EMAIL_USE_SSL` to `true` for SMTPS (typically port 465) and `CODEX_EMAIL_USE_TLS` to `true` for STARTTLS. Do not set both `CODEX_EMAIL_USE_TLS` and `CODEX_EMAIL_USE_SSL` to `true`. ### 2) Add instruction in project AGENTS.md For example, add this instruction to AGENTS.md: > Use skill email-notify to notify users when each agent run is finished or when any notifications would be sent to users. ## Workflow ### 1) Provide a project name source (optional) - To override the folder name, define a project name in `AGENTS.md` using one of: - YAML frontmatter: `project_name: My Project` (or `name:`) - A plain line: `Project Name: My Project` - If no name is found, the script uses the project folder name. ### 2) Send the notification at task completion - Generate a short task title (3-8 words). - Pick an execution status: `success`, `failed`, `partial`, `blocked`, etc. - Write a brief result summary; avoid secrets. Run: ```bash python3 ~/.codex/skills/email-notify/scripts/send_email_notification.py \ --task-title "..." \ --status "success" \ --summary "..." \ --project-name "..." ``` ## Resources - `scripts/send_email_notification.py`: Send the email notification and resolve the project name.
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.