DevSkyy validation-protocol

Immersive Architect Validation Protocol

install
source · Clone the upstream repo
git clone https://github.com/The-Skyy-Rose-Collection-LLC/DevSkyy
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/The-Skyy-Rose-Collection-LLC/DevSkyy "$T" && mkdir -p ~/.claude/skills && cp -r "$T/archive/unused-dirs/immersive-architect/skills/validation-protocol" ~/.claude/skills/the-skyy-rose-collection-llc-devskyy-validation-protocol && rm -rf "$T"
manifest: archive/unused-dirs/immersive-architect/skills/validation-protocol/SKILL.md
source content

Immersive Architect Validation Protocol

Theme building validation for immersive e-commerce. Advisory guidance only.

5-Gate System

Gate 1: Design

  • WordPress theme hierarchy
  • Namespaced functions (
    immersive_*
    )
  • Hook-based architecture

Gate 2: Security

  • sanitize_*()
    for inputs
  • esc_*()
    for outputs
  • Nonce verification
  • Capability checks

Gate 3: WooCommerce

  • Official WC hooks
  • HPOS compatible
  • All product types supported

Gate 4: Performance

  • Conditional asset loading
  • Deferred JS
  • No N+1 queries

Gate 5: Immersive

  • Progressive enhancement
  • Reduced-motion support
  • Touch compatible
  • Graceful fallbacks

Status Format

✅ VERIFIED — All gates pass
⚠️ PARTIAL — [issue] → fixing
🛑 BLOCKED — [critical] → resolving first

Usage

Reference this during theme development. Not a blocker.