Skip to content
Development
Command

/rv

Run the local review gate before pushing.

From plugin
claude-code-skill-factory
84320 skills5 agents20 commands
Install
$ npx -y skills add alirezarezvani/claude-code-skill-factory --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/rv

Context preview

What this command does when you run it.

Run the local review gate before pushing.

Command definition

rv.md
description: Run the local review gate before pushing.

Perform a complete review pass:

1. Save work in progress and ensure the working tree is clean except for intentional changes. 2. Install tooling (only first run):

   pip install --upgrade pip
   pip install yamllint==1.35.1 check-jsonschema==0.28.4 safety==3.2.4
   npm install --global markdown-link-check@3.12.2

3. Lint GitHub workflows:

   yamllint -d '{extends: default, rules: {line-length: {max: 160}}}' .github/workflows
   check-jsonschema --schema github-workflow --base-dir . .github/workflows/*.yml

4. Python syntax check:

   python -m compileall claude-skills-examples generated-skills generated-hooks

5. Markdown sanity check:

   markdown-link-check README.md

6. Optional dependency audit (if `requirements*.txt` present):

   for f in $(ls **/requirements*.txt 2>/dev/null); do
       safety check --full-report --file "$f"
   done

7. Summarize results in the commit template’s Testing section. Fix any failures before continuing.

Ships withclaude-code-skill-factory

A comprehensive toolkit for generating production-ready Claude Skills and Claude Code Agents at scale.

Get the whole plugin, auto-invoked
Stats
843
Stars
0
Views
169
Forks
Quiet
Maintenance
Python
Language
MIT
License
8mo ago
Last commit
9mo ago
Created

Repo: alirezarezvani/claude-code-skill-factory