# skill **Repository Path**: zhj149/skill ## Basic Information - **Project Name**: skill - **Description**: 智能体skill 产库 每个skill 独立一个文件夹 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2026-04-09 - **Last Updated**: 2026-04-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Skill 一个实用的邮箱技能工具集,包含简历自动下载和邮件发送功能。 ## 功能简介 - **邮箱简历下载**:通过 IMAP 协议自动从邮箱下载简历邮件 - **发送邮件**:通过 SMTP 协议发送邮件 ## 环境要求 - Python 3.x ## 安装 1. 克隆或下载本项目 2. 确保已安装 Python 3 ## 快速开始 ### 1. 配置 在 `email-resume-downloader/` 目录下创建 `config.json` 配置文件: ```json { "email": "your_email@example.com", "password": "your_auth_code", "imap_server": "imap.example.com", "output_dir": "resumes" } ``` ### 2. 运行 ```bash python3 email-resume-downloader/scripts/email_resume_downloader.py ``` ## 各邮箱配置参考 | 邮箱类型 | IMAP 服务器 | 端口 | |---------|------------|------| | QQ 邮箱 | imap.qq.com | 993 | | 163 邮箱 | imap.163.com | 993 | | 126 邮箱 | imap.126.com | 993 | | Gmail | imap.gmail.com | 993 | 详细配置说明请参考 `email-resume-downloader/references/imap-setup.md`。 ## 发送邮件 ```bash python3 email-resume-downloader/scripts/emailsend.py \ --from your_email@example.com \ --password your_auth_code \ --to target@example.com \ --subject "主题" \ --content "邮件内容" ``` ## 项目结构 ``` . ├── email-resume-downloader/ │ ├── SKILL.md # 技能说明文档 │ ├── config.json # 配置文件 │ ├── references/ │ │ └── imap-setup.md # 邮箱配置指南 │ └── scripts/ │ ├── email_resume_downloader.py # 简历下载脚本 │ └── emailsend.py # 邮件发送脚本 └── LICENSE ``` ## 许可证 MIT License