resumes-cli

resumes-cli is a skill for Claude Code, Codex from Alenryuichi/openmemory-plus. It costs 23 tokens per session (865 once invoked), scanned A, original, MIT.

A command-line tool for managing résumés in JSON Resume format, a standard data structure for résumé information. It can synchronize project documents from Yuque, validate résumé data, render themes, preview results, and export them.

In plain words
What is it for?
Use it to sync Yuque documents, check JSON Resume files, preview résumé themes, export HTML, and run the complete sync–validate–export process.
Why use it?
It brings résumé syncing, format checking, visual preview, and export into one workflow. This reduces repeated manual work when maintaining several résumé versions or designs.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/alenryuichi/openmemory-plus/resumes-cli
Any agent
npx skills add Alenryuichi/openmemory-plus --skill resumes-cli
Clone the repo
git clone --depth 1 https://github.com/Alenryuichi/openmemory-plus

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for resumes-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/alenryuichi/openmemory-plus/resumes-cli.svg)](https://agentmods.dev/skills/alenryuichi/openmemory-plus/resumes-cli)
Your own site
<a href="https://agentmods.dev/skills/alenryuichi/openmemory-plus/resumes-cli"><img src="https://agentmods.dev/badge/skills/alenryuichi/openmemory-plus/resumes-cli.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 865 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00023 $0.00865
Opus 5 $0.00012 $0.00432
Sonnet 5 $0.00005 $0.00173
Haiku 4.5 $0.00002 $0.00086

Measured yesterday against content hash e44ad6760935, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

resumes-cli scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.augment/skills/resumes-cli/SKILL.md · 110 lines

How it starts

The opening of the file, as written. The whole thing — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.

resumes-cli Skill

Triggers

  • User mentions "resumes-cli", "简历CLI", "resume tool"
  • User wants to sync documents from Yuque (语雀)
  • User wants to validate or export resume
  • User wants to preview resume with themes
  • Keywords: 简历导出, 语雀同步, resume export, yuque sync, 主题渲染

Capabilities

  • 语雀同步: 从语雀同步项目文档到本地
  • 简历验证: 验证简历 JSON 格式是否符合 JSON Resume 标准
  • 主题渲染: 使用 json-resume 主题导出精美 HTML
  • 本地预览: 实时预览简历效果
  • 批量导出: 一键导出所有主题风格
  • 工作流: 一键执行完整流程 (sync → validate → export)

Available Themes

全部支持 projects 字段渲染

主题 风格 GitHub Stars
elegant 优雅专业 (默认) ⭐ 126
stackoverflow Stack Overflow 风格 ⭐ 154
kendall 经典传统 ⭐ 68
macchiato 咖啡色调 ⭐ 18
github GitHub Primer 风格 ⭐ 17
actual 现代简约 -

使用前检查 (Agent 必读)

每次使用前必须先检查 CLI 是否可用:

# 1. 检查是否已全局安装
which resumes-cli

# 2. 如果返回路径 (如 /opt/homebrew/bin/resumes-cli),直接使用
# 3. 如果返回空或 "not found",先安装:
cd _bmad-output/bmb-creations/cli/resumes-cli && npm run build && npm link

# 4. 安装后回到项目根目录使用
cd /Users/ryuichi/Documents/Projects/resumes
resumes-cli --version

⚠️ 禁止行为: 不要 cd 到源码目录用 npx ts-node 运行,应该全局安装后直接使用 resumes-cli 命令。

Quick Reference

# 初始化配置
resumes-cli config init

# 语雀同步
resumes-cli yuque sync --json

# 验证简历
resumes-cli resume validate --file ./resume/resume.json

# 导出简历 (使用主题)
resumes-cli resume export --theme elegant --output ./resume.html

# 导出所有主题
resumes-cli resume export-all --file ./resume/resume.json

# 本地预览
resumes-cli resume serve --theme elegant --port 4000

# 一键执行完整流程
resumes-cli workflow run --skip-sync --theme elegant

Command Groups

命令组 描述
config 配置管理 (init, show)
yuque 语雀同步 (sync, status, schedule)
resume 简历管理 (validate, export, export-all, serve)
workflow 工作流 (run)

Global Options

  • --json - JSON 格式输出 (AI Agent 友好)
  • --verbose - 详细输出
  • --help - 显示帮助

Exit Codes

代码 含义
0 成功
1 错误
2 配置错误/警告

Read the full file on GitHub · 110 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 110 lines · 23 tokens per session scan A e44ad6760935

Subscribe to this mod's changes

resumes-cli is a skill published in the GitHub repository Alenryuichi/openmemory-plus (20 stars, last pushed 6mo ago), licensed MIT. It adds 23 tokens to every session and 865 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

speech-to-text

Transcribe audio to text using ElevenLabs Scribe v2. Use when converting audio/video to text, generating subtitles, transcribing meetings, or processing spoken content.

calesthio/OpenMontage · 37 tokens

confluence-assistant

Expert in Confluence operations using Atlassian MCP. Use when the user says "search Confluence", "create a Confluence page", "update a page", "find documentation in Confluence", "list spaces", or "add a comment to a page". Do NOT use for Jira issues, general web search, or local file creation.

tech-leads-club/agent-skills · 74 tokens

taxonomy-vto

本技能为 Visual Typesetting Optimization (VTO) 任务提供完整的视觉排版缺陷分类知识库。它是 layout-detective-agent 进行逐页视觉诊断的核心参考手册,定义了每一类缺陷的视觉特征、诊断方法、严重等级判定以及与编译日志信号的对应关系。.

OpenRaiser/PaperFit · 0 tokens

consistency-polisher

Skill "consistency-polisher" from OpenRaiser/PaperFit, covering consistency polisher skill, 概述, 适用场景, 输入规范 and 输出规范.

OpenRaiser/PaperFit · 0 tokens

float-optimizer

Skill "float-optimizer" from OpenRaiser/PaperFit, covering float optimizer skill, 概述, 适用场景, 输入规范 and 输出规范.

OpenRaiser/PaperFit · 0 tokens

space-util-fixer

Skill "space-util-fixer" from OpenRaiser/PaperFit, covering space utilization fixer skill, 概述, 适用场景, 输入规范 and 输出规范.

OpenRaiser/PaperFit · 0 tokens