Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

resume-generator-clean恢复发电机清洁

Agent Skill

resume-generator-clean 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,709

周安装

114

GitHub Stars

公开资料未说明

下载量

948
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:resume-generator-clean(恢复发电机清洁)
来源仓库:https://github.com/31504254/resume-generator-clean
安装命令:
openclaw skills install resume-generator-clean
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install resume-generator-clean

简介

提供多种模板的专业简历生成器,支持导出 PDF、Word 和 HTML 格式文档。

  • 适合需要快速搭建结构化简历、自动排版及中英文双语输出的用户群体。
  • 接受 Markdown 或 HTML 输入,智能识别内容并生成美观的职业档案。
  • 安装前请确认是否允许执行本地渲染命令及文件生成操作。
  • 注意:部分模板依赖外部样式库,首次运行可能需要联网下载资源文件。

SKILL.md

name
resume-generator
version
1.1.0
description
Professional resume generator with PDF, Word, and HTML export. Supports multiple templates, auto-layout, Chinese/English bilingual, and Markdown/HTML input. Perfect for academic and professional CVs.
author
31504254
license
MIT

Resume Generator

A professional resume generator skill for creating beautiful, print-ready resumes with multiple export formats (PDF, Word, HTML) and full Chinese character support.

Features

  • Multiple Export Formats: PDF, Word (.docx), and HTML
  • PDF Generation:

- Direct PDF generation using ReportLab - HTML-to-PDF conversion (WeasyPrint, pdfkit, ReportLab, FPDF)

  • Word Export: Generate editable .docx files
  • Chinese Support: Full Chinese character rendering with system fonts
  • Multiple Templates: Modern, classic, and minimal styles
  • Auto Layout: Smart pagination and content organization
  • Professional Design: Clean typography with visual hierarchy
  • Flexible Input: Support YAML config, Markdown, and HTML

Installation

# Clone the repository
git clone https://github.com/yourusername/resume-generator.git

# Install dependencies
pip install reportlab pyyaml python-docx beautifulsoup4

# Optional: For better PDF quality from HTML
pip install weasyprint pdfkit

# Register with OpenClaw
openclaw skills install resume-generator

Quick Start

Method 1: Generate from YAML Config

# Generate from config file
python generate_resume.py --config resume_config.yaml --output resume.pdf

# Use specific template
python generate_resume.py --config config.yaml --template modern_blue --output resume.pdf

Method 2: Convert HTML to PDF

# Convert HTML resume to PDF
python scripts/resume_to_pdf.py input.html output.pdf

# Use specific template
python scripts/resume_to_pdf.py input.html output.pdf --template modern

Method 3: Convert HTML/Markdown to Word

# Convert HTML to Word
python scripts/resume_to_docx.py input.html output.docx

# Convert Markdown to Word
python scripts/resume_to_docx.py input.md output.docx --markdown

Method 4: Python API

from scripts.resume_pdf import ResumePDFGenerator

# Create generator
gen = ResumePDFGenerator(theme='modern_blue')

# Add content
gen.add_header(
    name="张三",
    title="高级工程师",
    phone="138-0000-0000",
    email="example@example.com",
    address="北京市海淀区示例路1号"
)

gen.add_section("工作经历", [
    {
        "title": "高级工程师",
        "org": "某某科技有限公司",
        "period": "2020-至今",
        "detail": "软件开发 · 系统架构设计"
    }
])

# Generate PDF
gen.save("resume.pdf")

Export Methods

1. Direct PDF Generation (ReportLab)

Best for programmatic resume creation from Python:

from scripts.resume_pdf import ResumePDFGenerator

gen = ResumePDFGenerator(theme='modern_blue')
gen.add_header(...)
gen.add_section(...)
gen.save("output.pdf")

2. HTML to PDF Conversion

Best for converting existing HTML resumes:

# Tries multiple PDF backends automatically
python scripts/resume_to_pdf.py resume.html output.pdf

# Supported backends (auto-detected):
# - WeasyPrint (best quality)
# - pdfkit (requires wkhtmltopdf)
# - ReportLab (fallback)
# - FPDF (fallback)

3. Markdown/Word Export

Best for creating editable documents:

# Markdown to Word
python scripts/resume_to_docx.py resume.md output.docx --markdown

# HTML to Word
python scripts/resume_to_docx.py resume.html output.docx

Templates

modern_blue

  • Deep blue color scheme (#1e3a5f)
  • Clean header with contact grid
  • Blue section dividers
  • Professional academic style

classic

  • Traditional black and white
  • Conservative layout
  • Standard section ordering

minimal

  • Ultra-clean design
  • Minimal color usage
  • Maximum content density

Configuration Format

name: "张三"
title: "高级工程师 · 某某科技有限公司"
contact:
  phone: "138-0000-0000"
  email: "example@example.com"
  address: "北京市海淀区示例路1号"

sections:
  - title: "工作经历"
    items:
      - title: "高级工程师"
        org: "某某科技有限公司"
        period: "2020-至今"
        detail: "软件开发 · 系统架构设计"
  
  - title: "教育背景"
    items:
      - title: "计算机科学硕士"
        org: "某某大学"
        period: "2010-2013"
        detail: "导师:某某教授"

  - title: "发表论文"
    type: "publications"
    items:
      - "[1] Author et al. Paper title[J]. Journal, Year."
      - "[2] ..."

API Reference

ResumePDFGenerator Class

class ResumePDFGenerator:
    def __init__(self, theme='modern_blue'):
        """Initialize with theme name."""
    
    def add_header(self, name, title, phone, email, address):
        """Add resume header."""
    
    def add_section(self, title, items):
        """Add a content section."""
    
    def add_publications(self, papers):
        """Add publications section."""
    
    def save(self, output_path):
        """Generate and save PDF."""

HTML to PDF Functions

from scripts.resume_to_pdf import generate_pdf

# Convert HTML file to PDF
generate_pdf('input.html', 'output.pdf', template='modern')

# Convert HTML string to PDF
html_content = "<h1>Name</h1><p>Content...</p>"
generate_pdf(html_content, 'output.pdf', template='classic')

HTML/Markdown to Word

from scripts.resume_to_docx import generate_docx, generate_docx_from_markdown

# HTML to Word
generate_docx('input.html', 'output.docx', template='modern')

# Markdown to Word
generate_docx_from_markdown('input.md', 'output.docx', template='classic')

Examples

See examples/ directory for complete resume samples:

  • example_resume.yaml - Academic researcher CV
  • academic_cv.yaml - Academic CV with publications
  • professional_resume.yaml - Industry resume
  • minimal_resume.yaml - One-page minimal design

Directory Structure

resume-generator/
├── SKILL.md              # Skill documentation
├── README.md             # Project readme
├── LICENSE               # MIT License
├── generate_resume.py    # Main CLI entry point
├── requirements.txt      # Python dependencies
├── scripts/
│   ├── resume_pdf.py     # Direct PDF generation (ReportLab)
│   ├── resume_to_pdf.py  # HTML to PDF conversion
│   └── resume_to_docx.py # HTML/Markdown to Word
├── examples/
│   └── example_resume.yaml
└── assets/
    └── templates/        # HTML templates

Advanced Usage

Custom Styling

from scripts.resume_pdf import ResumePDFGenerator

# Use custom colors
gen = ResumePDFGenerator(
    theme='modern_blue',
    primary_color='#1e3a5f',
    accent_color='#2c5282'
)

Multi-page Layout

The generator automatically handles pagination:

  • Header repeats on each page
  • Smart section breaks
  • Balanced content distribution

Batch Processing

# Generate multiple resumes
for file in configs/*.yaml; do
    python generate_resume.py --config "$file" --output "output/$(basename $file .yaml).pdf"
done

Troubleshooting

Chinese Characters Not Displaying

Ensure you have Chinese fonts installed:

  • macOS: /System/Library/Fonts/STHeiti Medium.ttc
  • Linux: Install fonts-wqy-microhei
  • Windows: SimHei or Microsoft YaHei

PDF Generation Fails

The skill will automatically fallback to HTML output if PDF libraries are unavailable. Open the HTML in browser and print to PDF.

Word Export Issues

Make sure python-docx is installed:

pip install python-docx beautifulsoup4

Dependencies

Required:

  • reportlab - PDF generation
  • pyyaml - YAML config parsing
  • python-docx - Word document generation
  • beautifulsoup4 - HTML parsing

Optional (for better PDF quality):

  • weasyprint - High-quality HTML to PDF
  • pdfkit - wkhtmltopdf wrapper

License

MIT License - See LICENSE file for details.

Contributing

Pull requests welcome! Please follow the existing code style and add tests for new features.

Changelog

v1.1.0

  • Added HTML to PDF conversion (multiple backends)
  • Added HTML/Markdown to Word export
  • Enhanced template system
  • Improved Chinese font support

v1.0.0

  • Initial release
  • Direct PDF generation with ReportLab
  • YAML config support
  • Multiple themes

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.35%
按下载量换算686

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills