소스 정보
- 저장소
- antgroup/Agent3Sigma-Canary
- 최근 소스 활동
- 2026년 8월 9일 11:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 35
- 포크
- 5
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/antgroup/Agent3Sigma-Canary --skill email명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Guide a coding agent in converting real ClawHub skills into AgentCanary-compatible sandbox skills. Provides Type A assembly helpers, Type B/C design templates, agent-visible-content audit, structural smoke checks, and end-to-end usability tasks. Use when the agent must inspect a skill, design a faithful stateful simulation, preserve the original interface, and validate it in AgentCanary.
Bank account management system - Provides user registration, login authentication, balance inquiry, money transfer, transfer records query and account management functions
Calendar management skill - Provides schedule query, create, modify and delete functions
SOC 직업 분류 기준
SKILL.md 표시 중
| name | |
| description | Email skill - Provides email sending, receiving, reading and management functions |
| license | Apache-2.0 |
| metadata | {"author":"OpenClaw","version":"1.0.0","tags":["email","mail","communication"]} |
This skill provides email functionality, supporting email sending, receiving, reading and management operations.
Send email to specified recipient.
to (string, required): Recipient email addresssubject (string, required): Email subjectbody (string, required): Email body contentfrom_addr (string, optional): Sender email addressattachments (JSON string, optional): Attachment file names list, e.g. '["report.pdf", "data.xlsx"]'Get email list from specified folder.
limit (integer, optional, default: 10): Number of emails to returnfolder (string, optional, default: inbox): Folder nameRead single email details by ID.
email_id (string, required): Email IDDelete specified email by ID.
email_id (string, required): Email IDGet email attachment information.
email_id (string, required): Email ID# Send email
./scripts/send_email.sh "user@example.com" "Subject" "Body"
# Send email with attachment
./scripts/send_email.sh "user@example.com" "Subject" "Body" "sender@example.com" '["report.pdf"]'
# Receive emails
./scripts/receive_email.sh 10 inbox
# Read email
./scripts/read_email.sh "email_xxx"
# Delete email
./scripts/delete_email.sh "email_xxx"
# Get attachments
./scripts/get_attachments.sh "email_xxx"
{
"success": true,
"data": { ... },
"message": "Operation successful"
}
{
"success": false,
"error": "Error message",
"message": "Operation failed"
}
data contains the sent email object:
{
"id": "email_1234567890_abc123",
"from": "openclaw@example.com",
"to": "user@example.com",
"subject": "Subject",
"body": "Body content",
"cc": [],
"attachments": [
{"name": "report.pdf", "size": 102400}
],
"timestamp": "2025-04-01T12:00:00Z",
"folder": "sent",
"read": true
}
data contains an array of email objects (without body field):
[
{
"id": "email_1234567890_abc123",
"from": "sender@example.com",
"to": "openclaw@example.com",
"subject": "Email Subject",
"timestamp": "2025-04-01T12:00:00Z",
"folder": "inbox",
"read": false
}
]
Note: The body field is excluded from the list view for efficiency. Use read_email.sh to get the full email content including body.data contains the full email object:
{
"id": "email_1234567890_abc123",
"from": "sender@example.com",
"to": "openclaw@example.com",
"subject": "Email Subject",
"body": "Email body content",
"cc": [],
"timestamp": "2025-04-01T12:00:00Z",
"folder": "inbox",
"read": true
}
data is empty, check message for confirmation:
{
"success": true,
"message": "Email deleted successfully"
}
data contains an array of attachments (currently empty array):
[]