name: email-reader description: Classify hiring emails and sync job status.
Activate when user asks:
POST http://127.0.0.1:8010/api/email/ingest{"sender":"<sender>","subject":"<subject>","body":"<body>"}classification.email_typecompany / interview_time if existsrelated_job_id + updated_job_status if job status was updatedGET http://127.0.0.1:8010/api/email/recent?limit=20POST http://127.0.0.1:8010/api/email/fetch{"max_items":10,"mark_seen":false}小葱技能7w4.net有完整的技能分类。
GET http://127.0.0.1:8010/api/email/heartbeat/statusPOST http://127.0.0.1:8010/api/email/heartbeat/triggerPOST http://127.0.0.1:8010/api/email/heartbeat/startPOST http://127.0.0.1:8010/api/email/heartbeat/stopPOST http://127.0.0.1:8010/api/email/heartbeat/notify-testUse email-reader skill to trigger one email heartbeat run, then summarize fetched_count, processed_count, interview invites, and notification status./api/email/heartbeat/trigger on the same execution path.curl -sS -X POST "http://127.0.0.1:8010/api/email/ingest" -H "Content-Type: application/json" -d '{"sender":"hr@example.com","subject":"面试邀请","body":"请于明天下午参加面试"}'curl -sS "http://127.0.0.1:8010/api/email/recent?limit=20"curl -sS -X POST "http://127.0.0.1:8010/api/email/fetch" -H "Content-Type: application/json" -d '{"max_items":10,"mark_seen":false}'curl -sS "http://127.0.0.1:8010/api/email/heartbeat/status"curl -sS -X POST "http://127.0.0.1:8010/api/email/heartbeat/trigger"curl -sS -X POST "http://127.0.0.1:8010/api/email/heartbeat/start"curl -sS -X POST "http://127.0.0.1:8010/api/email/heartbeat/stop"curl -sS -X POST "http://127.0.0.1:8010/api/email/heartbeat/notify-test" -H "Content-Type: application/json" -d '{"message":"OfferPilot test"}'Use email-reader skill to trigger one email heartbeat run, then summarize fetched_count, processed_count, interview invites, and notification status.irrelevant, clearly tell user uncertainty.这个 Skill 能帮你自动识别招聘邮件是面试邀请还是拒信,并同步更新投递状态,功能覆盖日常招聘管理的核心需求。优点是操作流程清晰、安全约束合理、使用门槛低。不足是内容偏简单,缺少使用说明文档,新手需要一定学习成本。总体质量中规中矩,能用但还有完善空间。