用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/qualcomm/qai-appbuilder --skill email-163-com命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
App Builder — generate complete, runnable fullstack WebUI applications (FastAPI backend + pure HTML/CSS/JS frontend) around on-device AI Model Packs (OCR, TTS, ASR, Super-Resolution, etc.). Use this skill when the user wants to build, generate, modify, or debug a standalone WebUI app around any installed Model Pack.
A professional programming assistant supporting code writing, debugging, review, refactoring, and performance optimization, as well as open-source repository analysis.
QAI ModelBuilder. Tools and workflows for model conversion, inspection, operator patching, quantization, and inference validation of self-converted models on Qualcomm platform. Use this skill when working with custom ONNX/PyTorch models — export to ONNX, convert to QNN/SNPE DLC, FP16/FP32/INT8 quantization, operator patching, context binary generation, and inference validation of self-built models. NOT for AI Hub prebuilt packages — use model-hub skill instead.
正在显示 SKILL.md
| name | email-163-com |
| description | 163 email tool for sending, reading, searching, and replying to emails via 163.com (NetEase Mail). |
| tags | email, 163, netease, mail |
| use_for | Sending emails, reading emails, searching emails, replying to emails via 163.com |
When this skill is active, you MUST immediately call the exec tool based on the user's request. Do NOT output code blocks or describe steps.
Read the latest 5 emails: <tool_call> {"name":"exec","arguments":{"command":"python ${SKILL_DIR}/main.py read"}} </tool_call>
Read a specific number of emails: <tool_call> {"name":"exec","arguments":{"command":"python ${SKILL_DIR}/main.py read --count 10"}} </tool_call>
Read a full email (including body): <tool_call> {"name":"exec","arguments":{"command":"python ${SKILL_DIR}/main.py read --id 123"}} </tool_call>
Simple send: <tool_call> {"name":"exec","arguments":{"command":"python ${SKILL_DIR}/main.py send --to friend@example.com --subject "Hello" --body "Hi!""}} </tool_call>
Reply to a specific email (use the original sender's address as recipient, prefix subject with "Re:"): <tool_call> {"name":"exec","arguments":{"command":"python ${SKILL_DIR}/main.py send --to <sender_email_address> --subject "Re: <original_subject>" --body "<reply_body>""}} </tool_call>