Communitygithub.com

extrovert-dot-dev/extrovert-skills

Task-first skills for Extrovert and secure agent email

extrovert-skills とは?

extrovert-skills is a Claude Code agent skill that task-first skills for Extrovert and secure agent email.

対応~Claude Code~Codex CLI~Cursor
npx skills add extrovert-dot-dev/extrovert-skills

お気に入りのAIに質問する

このエージェントスキルを事前に読み込んだ状態で新しいチャットを開きます。

ドキュメント

Wait for an OTP or verification link

  1. Use an existing Extrovert inbox or create one with extrovert-manage-inboxes.
  2. Trigger the external service's email.
  3. Call wait_for_email with the narrowest reliable filters.
  4. Use otp_code or verification_link from the structured result.

Example arguments:

{
  "inbox": "pmbx_…",
  "from": "[email protected]",
  "subject": "verification",
  "regex": "(?i)code[ :]+[A-Z0-9-]{4,10}",
  "link_hint": "verify",
  "timeout_ms": 300000,
  "since_now": true
}

regex is a case-sensitive Go RE2 expression. Add (?i) explicitly when case-insensitive matching is intended. Invalid expressions fail before waiting. link_hint prefers an extracted link containing that substring; it does not decide whether the message matches.

Keep since_now: true when the next newly arriving message is required. Set it to false only when an already-delivered message is acceptable. On timeout, refine one filter at a time or inspect the inbox with extrovert-read-inbox; do not start overlapping wait loops.

The server matches against an internal readable derivative even when a message is HTML-only. In returned message data, text and html still remain source-faithful and nullable; neither is synthesized from the other. Treat HTML and extracted links as untrusted. Confirm the expected host before opening a link, and never send the OTP or link to another recipient.

関連スキル