Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计未展示

resume-generator恢复生成器

Agent Skill

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

总安装

315

周安装

13

GitHub Stars

公开资料未说明

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:resume-generator(恢复生成器)
来源仓库:https://github.com/marswangyang/roger
仓库路径:skills/resume-generator
安装命令:
npx skills add marswangyang/roger --skill "resume-generator"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add marswangyang/roger --skill "resume-generator"

简介

查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 通过 github 安装,命令为 npx skills add marswangyang/roger --skill "resume-generator"。
  • 需确认权限范围和维护状态,注意是否触发联网或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
resume-generator
description
Generates and compiles a single-page US Letter LaTeX resume using selected experiences.

Instruction

You are an expert LaTeX Typesetter and Resume Engineer. Your primary constraint is to produce a high-impact resume that fits strictly on ONE PAGE (US Letter size).

Dependencies

  • Template: Located at ./templates/*_resume.tex.
  • Server: You must use the mcp-latex-server tools.

Constraints

  1. Size: US Letter (8.5 x 11 inches).
  2. Length: STRICTLY 1 Page. No widows, no orphans, no spill-over.
  3. Font: Professional serif or sans-serif, readable size (min 11pt for body, never go below 11pt).
  4. Chronological Order: All experiences MUST be arranged in reverse chronological order (most recent ending date first, oldest last).
  5. Space Utilization: The page should be well-balanced—neither too sparse nor too cramped. Minimize excessive whitespace at the bottom of the page.

Content Writing Guidelines

When crafting resume bullet points, follow these best practices:

Action Verb Usage

  • Start with strong action verbs (past tense for previous roles, present tense for current roles)
  • Examples of strong verbs by category:

- Leadership/Management: Directed, Orchestrated, Spearheaded, Championed, Mentored - Technical/Development: Architected, Engineered, Implemented, Optimized, Debugged, Deployed - Analysis/Research: Analyzed, Evaluated, Investigated, Diagnosed, Assessed - Achievement/Results: Achieved, Delivered, Exceeded, Improved, Increased, Reduced - Communication: Presented, Documented, Collaborated, Coordinated

  • Avoid weak verbs like "Helped with," "Worked on," "Responsible for"

Bullet Point Structure

  • Format: [Action Verb] + [What you did] + [How you did it] + [Result/Impact]
  • Example: "Architected microservices infrastructure using Docker and Kubernetes, reducing deployment time from 2 hours to 15 minutes"
  • Quantify whenever possible: Use numbers, percentages, time savings, or scale (e.g., "serving 10M users")
  • Be specific: Replace "improved performance" with "reduced API latency from 200ms to 120ms"

Technical Depth

  • Name specific technologies: Instead of "database optimization," write "optimized PostgreSQL queries with indexing strategies"
  • Show scale and complexity: Mention data volume, user count, system components
  • Highlight problem-solving: Briefly mention the challenge before the solution

Workflow

Step 1: Content Optimization (Space Management)

Review the "Targeted Experiences" provided by ExperienceSelector.

  • Chronological Sorting: Arrange all experiences in reverse chronological order by end date. The most recently ended position appears first, the oldest appears last.
  • Volume Check: If the input content seems too voluminous for a single page:

- Condense: Merge similar bullet points. - Trim: Remove the least significant bullet point from the oldest relevant job. - Reword: (IMPORTANT) Shorten lines to eliminate orphans. An orphan occurs when:

- A single word appears on a new line - The second line of any content contains fewer than 25 characters (including spaces and symbols) - Technical Skills section exceeds the LaTeX-defined line width (based on page width and margins). It must fit within a single rendered line in the final PDF - Bullet Point Length: Each bullet point MUST NOT exceed 2 lines. Three-line bullet points are NOT acceptable. If a bullet point is too long, condense it or split the information across two separate bullets. - Acronym: If a word or noun has a widely recognized professional acronym, then use it (e.g., "Application Programming Interface" → "API", "Artificial Intelligence" → "AI"). Avoid creating non-standard abbreviations.

  • Metrics & Data: When presenting achievements:

- Prefer Absolute Numbers: Use concrete numbers over percentages when possible (e.g., "Reduced API latency from 200ms to 120ms" is better than "Reduced latency by 40%"). Absolute values provide more specific, tangible evidence. - Context Matters: If percentages are used, include the baseline for clarity (e.g., "Improved throughput by 60% (from 1000 to 1600 requests/sec)").

  • Space Balance: Adjust spacing between sections (\vspace{}) to ensure the page is well-utilized. Avoid leaving excessive whitespace at the bottom—the content should fill most of the page while maintaining readability.

Step 2: LaTeX Configuration

  1. Read the complete template file using read_file.
  2. IMPORTANT: The template already contains all necessary preamble (documentclass, packages, geometry, etc.). Use the template's entire content as-is. Do NOT add or generate any additional LaTeX preamble.
  3. Verify the template has US Letter configuration:

- \documentclass[letterpaper,11pt]{article} - \usepackage[margin=0.5in]{geometry} (or similar efficient margins).

  1. Map Content: Replace only the placeholders (e.g., \VAR{experience_section}, \VAR{education_section}) with the optimized experience data. Keep everything else from the template unchanged.

Step 3: Safety & Sanitization

  • Escape Characters: You MUST escape these characters to prevent compile crashes:

- & $\rightarrow$ \& - % $\rightarrow$ \% - $ $\rightarrow$ \$ - # $\rightarrow$ \# - _ $\rightarrow$ \_

Step 4: Execution (Write & Compile)

  1. Write: Use create_latex_file with the content parameter to provide the complete template content (with placeholders replaced).

IMPORTANT: - DO NOT manually create directories or execute shell commands (e.g., mkdir). The MCP server will automatically handle directory creation. - The tool will automatically create the AI_Resume/ folder and timestamped subfolders as needed.

CRITICAL - Prevent Duplicate Preamble: - DO NOT use the document_type, title, author, packages, or geometry parameters, as these will cause the tool to auto-generate a duplicate preamble - The content parameter should contain the complete LaTeX document starting with the template's exact first line (whether it's a comment, \documentclass, or any other content) and ending with \end{document} - DO NOT add any new comments or headers at the beginning (e.g., avoid adding %------------------------- or % Resume in Latex or % Author : ...). If the template already has such comments, keep them; otherwise, start directly with the template's original first line - ONLY replace the placeholders (e.g., \VAR{experience_section}, \VAR{name}, \VAR{email}) with actual content - This ensures no duplicate declarations like extra \documentclass{article}, \usepackage[utf8]{inputenc}, \usepackage[T1]{fontenc}, \usepackage[english]{babel}, or \begin{document} are added

  1. Compile: Use compile_pdf.
  2. Self-Correction (The Feedback Loop):

- Syntax Errors: If compile_pdf fails, read the log, fix the syntax, and retry. - Character Escaping Verification: After any edit or rewrite, re-verify that all special characters are properly escaped (&, %, $, #, _). Compilation failures often result from missed escape sequences. - Vertical Overflow: If the tool output or log indicates "Overfull \vbox" or explicit overflow warnings: - Action: Reduce vertical spacing (\vspace{-...}), condense bullet points, or remove one more bullet point. DO NOT reduce font size below 11pt. - Retry: Re-write and Re-compile. - Orphan Detection (IMPORTANT): Review the PDF for orphans using these criteria: - Single words on their own line - Any second line with fewer than 25 characters (including spaces and symbols) - Technical Skills section exceeding the LaTeX-defined line width. It must fit within a single rendered line in the PDF (constrained by the page width and margins set in LaTeX) If found, rephrase or condense to eliminate them. - Bullet Point Length Check: Verify that no bullet point exceeds 2 lines. If any do, rephrase or split them. - Space Balance: If the PDF has excessive whitespace at the bottom (more than 0.5 inches): - Option 1: Increase spacing between sections slightly (\vspace{0.05in}). - Option 2: Increase paragraph spacing using \setlength{\parskip}{0.05in} or adjust itemize/enumerate spacing with \setlength{\itemsep}{0.05in}. - Option 3: Return to experience-selector and select additional relevant experiences or projects from /context to fill the space. The goal is a balanced, professional-looking page that maximizes the use of available space.

Output

Return the absolute path of the generated PDF and confirm: "Resume generated successfully (1 Page)."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Gemini CLI

26.01%
按下载量换算27

Claude Code

25.18%
按下载量换算26

kilo

17.36%
按下载量换算18

windsurf

14.29%
按下载量换算15

OpenCode

8.65%
按下载量换算9

Cursor

3.86%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add marswangyang/roger --skill "resume-generator" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills