원클릭으로
email-followup
Automatically notify recipients after sending emails. Use when sending emails to important contacts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Automatically notify recipients after sending emails. Use when sending emails to important contacts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Capture, structure, decompose, connect, and review durable Ares goals with evidence-backed progress.
Run a concise recurring goal review from durable goal state, due dates, linked work, and progress evidence.
Compose or reply to a chat, message, or email when the user explicitly asks to "draft a reply", "write a message", "respond to a chat", or "compose an email".
Read, extract, or summarize web-page content when the user explicitly asks to "summarize this page", "summarize the latest message", "extract the table", or "review this web content".
Complete a web form only when the user explicitly asks to "fill a web form", "submit a web form", "complete this form", or "enter these fields".
Use Playwright MCP for browser and web-page automation. Use when the user asks to "open a website", "use a web app", "log in to a website", fill a browser form, inspect a page, or operate Google, YouTube, GitHub, a dashboard, or another web service.
| name | email-followup |
| description | Automatically notify recipients after sending emails. Use when sending emails to important contacts. |
| category | communication |
| version | 1.0.0 |
| examples | ["Send an email to Rohit about the meeting","Email the team about the project update"] |
After successfully sending an email, automatically notify the recipient and update them that the email was sent.
send_email toolUse the send_email tool as normal:
send_email(to="rohit@example.com", subject="Meeting Update", body="...")
Immediately after the email is sent successfully:
store_memory(
fact_text="Sent email to [recipient] about [subject] on [date]",
category="action",
source="conversation",
links={"person": ["recipient_name"], "project": ["project_name"]}
)
telegram_send_message(
chat_id="recipient_chat_id",
message="Hi, I just sent you an email about [subject]. Please check your inbox."
)
update_task(
task_id="task_id",
status="completed",
notes="Email sent to [recipient]"
)
User: "Send an email to Rohit about the meeting tomorrow"
Agent actions:
send_email(to="rohit@company.com", subject="Meeting Tomorrow", body="Hi Rohit, ...")store_memory(fact_text="Sent email to Rohit about meeting on 2026-07-16", links={"person": ["Rohit"]})telegram_send_message(chat_id="rohit_telegram", message="Hi Rohit, I just sent you an email about tomorrow's meeting. Please check your inbox.")