verify-claude-setup

Verify .claude configuration completeness, including agents, hooks, rules, and memory.

7|2|Updated Nov 9, 2025
One-click install
npx skills add https://github.com/Dexploarer/hyper-forge --skill verify-claude-setup
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify-claude-setup
Source: https://github.com/Dexploarer/hyper-forge/tree/main/.claude/skills/verify-claude-setup
Command: npx skills add https://github.com/Dexploarer/hyper-forge --skill verify-claude-setup

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Quickly verify that the .claude directory is fully configured and consistent, catching configuration issues before you start complex work.

Core Features & Use Cases

  • Agents Check: Ensures there are 6 agents with proper frontmatter and Research-First Protocol.
  • Hooks & Rules: Verifies hooks, rules, memory imports, and settings.
  • Quick Validation: Provides a quick summary of configuration status.

Quick Start

  • ls -l .claude/agents/ | wc -l
  • ls .claude/hooks/scripts/*.ts | wc -l
  • ls .claude/rules/*.md
  • ls .claude/memory/ | wc -l
  • echo "Skills: $(ls .claude/skills/ | wc -l)"

Frequently Asked Questions about verify-claude-setup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify my .claude configuration is complete and correct?

Verify .claude setup completeness by checking agents have proper YAML frontmatter and Research-First Protocol, hooks contain executable TypeScript scripts with correct shebangs, rules and memory files are present, and all required imports are configured. This catches configuration issues before running complex work.

What should I check in my .claude agents directory?

Ensure you have 6 agents with proper YAML frontmatter and Research-First Protocol implementation. Each agent file should be well-formed and ready for CLAUDE execution.

How do I validate .claude hooks and rules after configuration updates?

Check that hooks contain executable TypeScript scripts with proper shebangs, rules files are present and correctly formatted, and memory imports are configured. Validation catches inconsistencies introduced during updates or troubleshooting.

Can I quickly verify my .claude setup without manual inspection?

Yes, use quick validation commands to check file counts and structure: verify agent count, hook script executables, rules presence, memory imports, and skills configuration in your .claude directory.

What happens if .claude configuration is incomplete or inconsistent?

Incomplete configuration can cause failures when agents execute or hooks trigger. Missing frontmatter, incorrect shebangs, broken imports, or mismatched file counts prevent CLAUDE readiness and cause runtime errors.