review
The review slash command executes local validation checks via the git review helper to catch YAML, JSON, markdown, and dependency issues, then triggers remote CI workflows to ensure code quality standards are met before pushing to the main branch. Use this command before every push to prevent workflow failures and maintain repository health.
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/alirezarezvani/claude-code-skill-factory/HEAD/.claude/commands/review.md -o ~/.claude/commands/review.mdreview.md
## Local Checks 1. Execute the git review helper: `/git/rv` 2. Fix any issues reported by yamllint, check-jsonschema, markdown-link-check, or safety. 3. Update the commit template’s Testing section with the commands executed. ## Remote Visibility 1. Trigger Commit & Branch Guard: `/ci-guard` 2. Trigger CI Quality Gate: ```bash gh workflow run ci-quality-gate.yml --ref $(git branch --show-current) gh run watch --workflow "CI Quality Gate" ``` ## Tips - Run `/review` before every push to keep the main branch green. - If workflows fail, fix the root cause and rerun `/review` to confirm.
Interactive guide for building custom Claude Code Agents and subagents. Asks straightforward questions, generates enhanced YAML frontmatter with tools/model/color/field/expertise, creates agent .md files, validates format, and helps install to .claude/agents/ or ~/.claude/agents/. Use when user wants to build workflow specialist agents.
Main navigation guide for Claude Code Skills Factory. Use when user wants to build custom Skills, Prompts, or Agents. Orchestrates and delegates to specialized guide agents.
Interactive guide for building custom Claude Code hooks. Asks straightforward questions, uses hook-factory skill, generates complete hooks with validation, and provides installation instructions.
Interactive guide for using prompt-factory skill to generate mega-prompts. Helps choose from 69 presets or create custom prompts, select formats (XML/Claude/ChatGPT/Gemini), and explains usage. Use when user wants to generate production-ready prompts for any LLM.
Interactive guide for building custom Claude Skills. Asks straightforward questions, uses SKILLS_FACTORY_PROMPT template, generates complete skill files, validates format, creates ZIP, and helps install. Use when user wants to build multi-file skill capabilities.
Trigger the Commit & Branch Guard workflow on demand.
Stage working tree changes and create a Conventional Commit (no push).
Stage, commit, and push the current branch following git governance rules.