OPERATIONAL PROPOSAL:
FILE STRUCTURE ALIGNMENT

MISSION OBJECTIVE URGENT

GOAL: Align the project directory structure with the URL Permanence Protocol (Log 18) to ensure long-term SEO integrity and "forever links."

PRIMARY VIOLATIONS DETECTED CRITICAL
  • Underscores in File Names: Several core pages use `_` which search engines treat as a joining character rather than a separator (space).
  • Inconsistent Naming: Mixture of `kebab-case` and `snake_case` across the `intel/` directory.
CURRENT FILE STRUCTURE
AUDIT_LOG: 2025-12-20 NON_COMPLIANT

The following tree highlights the files in violation of the protocol.

/squadroid/
├── blog/ (✅ COMPLIANT)
│ └── ...
└── intel/ (❌ VIOLATIONS DETECTED)
    ├── blog.html
    ├── coming-soon.html
    ├── security_audit.html
    ├── strategy_geo.html
    ├── strategy_n8n.html
    └── ...
REVISED STRUCTURE SUGGESTION
PROPOSED ARCHITECTURE HYPHEN_ENFORCED

Standardizing all URLs to kebab-case for maximum search engine compatibility and semantic clarity.

/squadroid/intel/
├── blog-intel.html <-- RENAMED
├── security-audit.html <-- RENAMED
├── strategy-geo.html <-- RENAMED
├── strategy-n8n.html <-- RENAMED
└── ...
PHASE 2: ADVANCED OPTIMIZATION OPTIONAL

TRANSITION TO TIMELESS SLUGS: Removing `log-XX` sequence numbers from blog URLs to decouple content from chronology.

Recommendation: Retain `log-XX` for now as it is core to the SQUADROID brand identity. Standardizing underscores is the priority.
MIGRATION ACTION PLAN
EXECUTION_SEQUENCE ACTION_REQUIRED

1. RENAME FILES

> mv intel/blog.html intel/blog-intel.html
> mv intel/security_audit.html intel/security-audit.html
> mv intel/strategy_geo.html intel/strategy-geo.html
> mv intel/strategy_n8n.html intel/strategy-n8n.html

2. UPDATE INTERNAL LINKS

Execute global search and replace across the codebase for all renamed assets.

3. GIT COMMIT & 301 REDIRECTS

WARNING: If the site is live, 301 redirects are mandatory to preserve existing link equity during the transition.