resume-ai-validator

resume-ai-validator is a skill for Claude Code, Codex from Alenryuichi/openmemory-plus. It costs 31 tokens per session (966 once invoked), scanned A, original, MIT.

A command-line tool for testing ResumeAI, a service that analyzes and improves résumés. It checks both the service's API and the user interface through complete user journeys.

In plain words
What is it for?
Use it to validate résumé scoring, ATS analysis, résumé optimization, job-description analysis, authentication, and résumé creation or editing flows.
Why use it?
It replaces separate manual checks of résumé scoring, job-description analysis, résumé editing, and login flows. E2E means end-to-end: testing a feature from start to finish as a user would.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to validate résumé scoring, ATS analysis, résumé optimization, job-description analysis…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alenryuichi/openmemory-plus/resume-ai-validator
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.

Any agent
npx skills add Alenryuichi/openmemory-plus --skill resume-ai-validator
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 resume-ai-validator

README.md
[![agentmods](https://agentmods.dev/badge/skills/alenryuichi/openmemory-plus/resume-ai-validator.svg)](https://agentmods.dev/skills/alenryuichi/openmemory-plus/resume-ai-validator)
Your own site
<a href="https://agentmods.dev/skills/alenryuichi/openmemory-plus/resume-ai-validator"><img src="https://agentmods.dev/badge/skills/alenryuichi/openmemory-plus/resume-ai-validator.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 966 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00031 $0.00966
Opus 5 $0.00015 $0.00483
Sonnet 5 $0.00006 $0.00193
Haiku 4.5 $0.00003 $0.00097

Measured 3d ago against content hash d2cb9913dd5e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

resume-ai-validator 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 3d ago.

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/resume-ai-validator/SKILL.md · 102 lines

How it starts

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

ResumeAI Validator Skill

Triggers

  • User mentions "验证 resumeAI", "validate resume", "测试简历功能"
  • User wants to run end-to-end tests on resume AI capabilities
  • User mentions "rav", "resume-ai-validator"
  • User wants UI/UX interaction testing
  • Keywords: 验证, validate, 测试, test, 端到端, e2e, UI, 交互

Capabilities

  • 完整闭环验证: API + UI/UX 交互的端到端验证
  • API 验证: JD分析、简历评分、ATS分析、简历优化
  • E2E UI 测试: 使用 Playwright 进行 UI/UX 交互测试
  • 认证流程测试: 登录/注册页面 UI 交互
  • 用户旅程测试: 完整的简历生成、编辑、优化流程

Quick Reference

cd web/scripts/resume-ai-validator

# 完整闭环验证 (API + UI/UX) - 推荐
npx tsx cli.ts validate --yolo --e2e

# 仅 API 验证
npx tsx cli.ts validate --yolo

# 仅 E2E UI 测试
npx tsx cli.ts e2e

# 完整用户旅程测试
npx tsx cli.ts e2e --full

# 指定场景测试
npx tsx cli.ts e2e --scenario auth
npx tsx cli.ts e2e --scenario generate
npx tsx cli.ts e2e --scenario editor
npx tsx cli.ts e2e --scenario optimize

# JSON 输出 (AI Agent 友好)
npx tsx cli.ts validate --yolo --e2e --json

Commands

命令 描述
validate 运行 API 验证流程
validate --e2e 运行 API + UI/UX 验证
e2e 运行 E2E UI/UX 测试
score 验证简历评分能力
optimize 验证简历优化能力
ats 验证 ATS 分析能力
analyze-jd 验证 JD 分析能力

E2E 测试场景

场景 描述 测试文件
auth 认证流程 (登录/注册) e2e/auth.spec.ts
home 首页 UI 和导航 e2e/home.spec.ts
dashboard 仪表盘功能 e2e/dashboard.spec.ts
generate 简历生成流程 e2e/generate.spec.ts
editor 简历编辑器交互 e2e/editor.spec.ts
optimize ATS/评分/优化流程 e2e/optimize.spec.ts
api API 端点验证 e2e/resume-ai-validator.spec.ts

Global Options

  • --json - JSON 格式输出 (AI Agent 友好)
  • --verbose - 详细输出
  • --base-url - API 基础 URL (默认: http://localhost:3000)
  • --e2e - 同时运行 UI/UX 交互测试
  • --full - 运行完整验证 (API + 所有 E2E 测试)

Exit Codes

代码 含义
0 验证通过
1 验证失败
2 配置错误

Prerequisites

  1. Web 服务必须正在运行: cd web && npm run dev
  2. 需要有效的 API 密钥配置 (DEEPSEEK_API_KEY)
  3. Playwright 已安装: cd web && npx playwright install

Read the full file on GitHub · 102 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. 3d ago First seen · 102 lines · 31 tokens per session scan A d2cb9913dd5e

Subscribe to this mod's changes

resume-ai-validator is a skill published in the GitHub repository Alenryuichi/openmemory-plus (20 stars, last pushed 6mo ago), licensed MIT. It adds 31 tokens to every session and 966 once invoked, about $0.0002 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