Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/aAAaqwq/AGI-Super-Team --skill email-send-direct명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
币安广场合约投机雷达 v5:以最近24小时专业交易帖为主要证据,回源核验帖子, 联合币安公共合约行情、4周期K线、布林带、ATR、量能和RR,生成可审计的本地影子报告。 触发词:币安广场、扫描币安、binance square、合约机会、交易信号雷达、4小时雷达
BTC 5分钟K线实时方向预测。v5.9对抗式审查重构: 13因子收敛到3个有证据信号(half_body延续+volume放量+meanrev回归, 11个47-49%硬币因子清零) + 三层独立信息过滤(多周期4h/1h/15m趋势 + 跨资产ETH/SOL广度 + 真订单流OFI) + 移除bull×0.92惩罚/Platt置信度门控。半K线策略第2分钟执行。黑天鹅防护: ATR spike+FNG<25。Binance端点双向故障切换。
BB 双向套利策略:加密合约 10x 杠杆布林带均值回归。布林带收窄=横盘→在下轨买、上轨卖;三重过滤器(1h趋势/RSI/BB甜区)确认碗平放,轨对轨止盈(RR 2:1~4:1)。含实时WebSocket模拟盘(paper)、历史回测(simulate/backtest_daily)、币安永续实盘CLI(trade_exec)。触发:'bb套利'、'布林带'、'bollinger'、'横盘策略'、'NEAR'、'回测'、'模拟盘'、'paper trading'。
SOC 직업 분류 기준
SKILL.md 표시 중
| name | email-send-direct |
| description | Single email: dry-run, reply, attachments |
Send a single email via Gmail API from CLI
ALWAYS first --dry-run, show preview to the user, and only after "yes" send without --dry-run.
Before writing a single word:
email-read skill to pull last 3-5 days of correspondence with this contact.leads.csv and people.csv for context: deal stage, last activity, relationship notes. The email must reflect where we actually are, not where we were a week ago.Writing rules:
Ivan's voice:
Anti-patterns (never do these):
| Bad | Why | Instead |
|---|---|---|
| "Please find attached the proposal" | Corporate robot | "Proposal is attached" or "Attached is the proposal we discussed" |
| Bullet-point summary of what's attached | They can read it themselves | One sentence saying what it is |
| Repeating info they already know | Wastes their time | Reference it briefly, move forward |
| "Let me know if you have any questions" | Empty filler | Specific CTA: "Let me know if the terms work" |
| Long intro before answering their question | Buries the answer | Answer first, context after |
| What | Path |
|---|---|
| Script | $GOOGLE_TOOLS_PATH/send_email.py |
| Token | $GOOGLE_TOOLS_PATH/token.json |
| venv | $GOOGLE_TOOLS_PATH/.venv/bin/python3 |
cd $GOOGLE_TOOLS_PATH
.venv/bin/python3 send_email.py \
--to user@example.com \
--subject "Subject" \
--body "Message text" \
--dry-run
.venv/bin/python3 send_email.py \
--to user@example.com \
--cc other@example.com \
--cc another@example.com \
--subject "Subject" \
--body "Message" \
--dry-run
.venv/bin/python3 send_email.py \
--to user@example.com \
--subject "NDA attached" \
--body "Please find attached." \
--attach /path/to/file.pdf \
--attach /path/to/another.pdf \
--dry-run
.venv/bin/python3 send_email.py \
--to user@example.com \
--subject "Re: Original Subject" \
--body "Reply text" \
--reply-to 'from:user@example.com subject:"Original Subject"' \
--dry-run
.venv/bin/python3 send_email.py \
--to user@example.com \
--subject "Re: Original Subject" \
--body "Reply text" \
--reply-to-id MESSAGE_ID \
--dry-run
.venv/bin/python3 send_email.py \
--to user@example.com \
--subject "Subject" \
--body-file /path/to/message.txt \
--dry-run
| Parameter | Description | Required |
|---|---|---|
--to EMAIL | Recipient (can specify multiple) | yes |
--cc EMAIL | CC (can specify multiple) | no |
--subject TEXT | Email subject | yes |
--body TEXT | Email body text | yes* |
--body-file FILE | Body text from file | yes* |
--attach FILE | Attachment (can specify multiple) | no |
--reply-to QUERY | Gmail query for thread lookup | no |
--reply-to-id ID | Gmail message ID for reply | no |
--dry-run | Preview only, do not send | no |
*Either --body or --body-file is required.
1. Prepare the email text
2. Run with --dry-run
3. Show preview to the user
4. After confirmation -- run WITHOUT --dry-run
5. Script automatically verifies sending (labels, snippet)
============================================================
EMAIL PREVIEW
============================================================
From: Your Name <your@email.com>
To: user@example.com
Cc: other@example.com
Subject: Re: Topic
Thread: abc123 (reply)
Attach: file.pdf (23,794 bytes)
------------------------------------------------------------
Message body here...
============================================================
[DRY RUN] Email not sent.
Sent! Message ID: 19c90af2b9ceaf61
Verify: OK
ID: 19c90af2b9ceaf61
To: user@example.com
Cc: other@example.com
Subject: Re: Topic
Labels: ['SENT']
Snippet: Message body here...
Attach: ['file.pdf']
From: Your Name <your@email.com>
| Problem | Solution |
|---|---|
| 401 Unauthorized | Refresh token: google-auth skill |
| Attachment not found | Check file path |
| Thread not found | Check --reply-to query |
| Encoding issues | Body is automatically UTF-8 |
email-send-bulk -- mass sending via Google Sheetsemail-read -- reading emailemail-monitor -- automatic monitoringgoogle-auth -- if authorization issues