원클릭으로
email-generic
Send/search emails via a generic IMAP/SMTP bridge (or vendor API).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Send/search emails via a generic IMAP/SMTP bridge (or vendor API).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Sends messages between agents, broadcasts to channels, and retrieves message history for inter-agent communication.
Spawns, manages lifecycle, and terminates autonomous AI agents from the 40+ built-in agent catalog.
Optimize prompts and context windows to reduce token usage while preserving quality.
Animated desktop character state machine for Sven's Tauri companion app. Manages character form (ORB, ARIA, REX, ORION), state transitions (idle→thinking→speaking→celebrating), walk cycles, thought bubbles, sound effects, and real-time agent event sync.
Multi-model deliberation system. Sends queries to multiple LLMs simultaneously, has them peer-review each other's responses anonymously, then a chairman model synthesizes the best answer. Supports configurable council composition, voting strategies, and cost tracking.
Interactive educational autograd engine — port of Karpathy's micrograd. Build, train, and visualise tiny neural networks step-by-step to learn how backpropagation works.
| name | email-generic |
| description | Send/search emails via a generic IMAP/SMTP bridge (or vendor API). |
| version | 2026.2.21 |
| publisher | Local Publisher |
| handler_language | typescript |
| handler_file | handler.ts |
| inputs_schema | {"type":"object","properties":{"action":{"type":"string","enum":["send","search","list"],"default":"send"},"to":{"type":"array","items":{"type":"string"}},"cc":{"type":"array","items":{"type":"string"}},"bcc":{"type":"array","items":{"type":"string"}},"subject":{"type":"string"},"body":{"type":"string"},"query":{"type":"string"},"limit":{"type":"integer","minimum":1,"maximum":50,"default":10}},"required":["action"],"additionalProperties":false} |
| outputs_schema | {"type":"object","properties":{"action":{"type":"string"},"result":{"type":"object"},"items":{"type":"array","items":{"type":"object"}}},"required":["action"]} |
Provides generic email operations via a bridge service that speaks IMAP/SMTP or a vendor API.
EMAIL_API_BASE (HTTP endpoint for email bridge)EMAIL_API_KEY (bearer token for the bridge)EMAIL_FROM (default sender address)The bridge should implement:
POST /send with { from, to, cc, bcc, subject, body }POST /search with { query, limit }GET /inbox?limit=10Sending email is write scope and should be approval-gated when the recipient is external or when policy requires explicit confirmation.
EMAIL_API_BASEemail.send: writeemail.search: reademail.list: readThis skill is designed to be provider-agnostic; wire it to IMAP/SMTP or a vendor API through the bridge.