在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用qrcode
星标0
分支0
更新时间2026年4月25日 09:48
生成二维码,支持屏幕显示或保存为文件
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
2 个文件SKILL.md
readonly菜单
生成二维码,支持屏幕显示或保存为文件
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
下载 Google Fonts Icons (Material Symbols) 的 SVG 图标。支持多种风格(Outlined, Rounded, Sharp)。
扫描并优化项目中的静态图片资源,将大图片转换为WebP格式
关于在 React 应用中使用 lottie-react 集成 Lottie 动画的指南
使用当用户请求评审前端 PR 或需要对前端代码进行质量检查时。触发条件:用户要求代码审查、前端质量审计、多维度代码分析、需要通过 GitHub API 提交精准的行级修改建议和生成详尽的评审总结。症状:代码质量问题、架构合规性检查、错误处理审计、测试覆盖评估。
UI/UX design intelligence with searchable database
| name | qrcode |
| description | 生成二维码,支持屏幕显示或保存为文件 |
scripts/generate_qrcode.py 脚本生成二维码python CodeAgent/skills/qrcode/scripts/generate_qrcode.py --content "你的内容"
# Bash/Zsh (Linux/macOS)
python CodeAgent/skills/qrcode/scripts/generate_qrcode.py --content "你的内容" --save --output-dir $TMP --output "qrcode.png"
# 或使用 $TEMP
python CodeAgent/skills/qrcode/scripts/generate_qrcode.py --content "你的内容" --save --output-dir $TEMP --output "qrcode.png"
# PowerShell (Windows)
python CodeAgent/skills/qrcode/scripts/generate_qrcode.py --content "你的内容" --save --output-dir $env:TEMP --output "qrcode.png"
# 或使用 $env:TMP
python CodeAgent/skills/qrcode/scripts/generate_qrcode.py --content "你的内容" --save --output-dir $env:TMP --output "qrcode.png"
任务完成后,请删除生成的临时文件。
注意:脚本路径是相对于 WORK_HOME 的
CodeAgent/skills/qrcode/scripts/generate_qrcode.py。
scripts/generate_qrcode.pypip install qrcode[pil])pip install Pillow)--content: 要生成二维码的内容(必需)--save: 是否保存为文件(可选,默认不保存)--output: 输出文件名(默认为 qrcode.png)--output-dir: 输出目录路径(建议使用 $TMP, $TEMP 等临时目录)--size: 二维码大小(可选,默认为 10)--border: 边框大小(可选,默认为 4)只需要告诉 AI:
把 "https://example.com" 生成二维码
或者:
生成二维码:Hello World
如果需要保存为文件,明确说明:
把 "https://example.com" 生成二维码并保存为文件
或者:
生成二维码并保存:Hello World
把 "https://github.com" 生成二维码把 "这是一段测试文本" 生成二维码并保存为文件