Send emails via SMTP adapter with template support. Supports attachments (PDF, images) and HTML body.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Send emails via SMTP adapter with template support. Supports attachments (PDF, images) and HTML body.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Configure, observe, and recover Discord AI jobs from the ADK workspace with either Codex or Claude. Use for Discord setup, background-job status, live activity, stalled-job diagnosis, reboot recovery, idle rotation, or session history.
Codex 또는 Claude로 실행되는 Discord 백그라운드 작업의 설정·상태·실시간 활동·재부팅 복구를 ADK 워크스페이스에서 관리합니다.
세션 변경사항을 분석해 verify-* 스킬 드리프트를 탐지하고 자동 생성/업데이트합니다. issue-driven-development Sync 단계, 새 패턴/규칙 도입 후, PR 전 검증 스킬 커버리지 확인 시 반드시 사용. /manage-skills로 호출.
원요청 무결성과 세션 바인딩 하네스의 원문 해시체인, 완전 범위 추적, 서명 권한, 2회 Clean 결박, Claude Code/Codex 등록·동등성을 결정론으로 검증합니다. request-contract·session-inject 코어/어댑터·설정·스키마·review-pass를 수정한 뒤, Review/Post-test Review 및 커밋 전에 반드시 사용합니다.
등록된 모든 verify-* 스킬을 순차 실행해 통합 검증 보고서를 생성합니다. 기능 구현 후, PR 전, 코드 리뷰 시, issue-driven-development Review/Post-test Review 단계마다 반드시 사용. /verify-implementation으로 호출.
기존 제품의 경로·진입점·내비게이션·사용자 여정·운영 표면이 기능 추가 뒤에도 유지되는지 기준 버전과 보존 계약으로 검증합니다. 기존 프로젝트의 기능 추가·통합·리팩터링 후, planning/integration 리뷰와 release 전에 반드시 사용합니다.
| name | |
| version | 0.1.0 |
| tier | T3 |
| description | Send emails via SMTP adapter with template support. Supports attachments (PDF, images) and HTML body. |
| triggers | ["send email","email","이메일 발송"] |
| input_schema | {"to":{"type":"string[]","required":true,"description":"Recipient email addresses"},"subject":{"type":"string","required":true,"description":"Email subject"},"body":{"type":"string","required":true,"description":"Email body (plain text or HTML)"},"attachments":{"type":"path[]","required":false,"description":"File paths to attach"},"html":{"type":"boolean","required":false,"description":"Whether body is HTML (default: false)"}} |
| output | {"side_effects":[{"description":"Send email via SMTP adapter","adapter":"email"}]} |
| steps | [{"id":"validate","action":"Validate recipients, subject, body"},{"id":"resolve_attachments","action":"Verify attachment files exist"},{"id":"send","action":"Invoke email adapter (SMTP)"},{"id":"log","action":"Record sent email in log"}] |
| failure_policy | {"retry":true,"rollback":false,"on_failure":"notify"} |
| idempotency | false |
Sends emails via configured SMTP adapter. Supports HTML body and file attachments.
Set in .naia/config.yaml:
runtime:
adapters:
email:
smtp_host: "smtp.office365.com"
smtp_port: 587
user_env: "SMTP_USER"
pass_env: "SMTP_PASS"