Skip to main content
Settings
Search
Appearance
Theme Mode
About
Jekyll v3.10.0
Environment Production
Last Build
2026-05-27 23:28 UTC
Current Environment Production
Build Time May 27, 23:28
Jekyll v3.10.0
Build env (JEKYLL_ENV) production
Quick Links
Page Location
Page Info
Layout quest
Collection quests
Path _quests/codex/quest-network-mapping-example.md
URL /quests/codex/quest-network-mapping-example/
Date 2025-10-04
Theme Skin
SVG Backgrounds
Layer Opacity
0.6
0.04
0.08

Quest Network Mapping: Comprehensive Learning Path Visualization

Demonstration of the enhanced quest hierarchy system with complete mapping examples and mermaid diagrams

Lvl 0000 ⚔️ Side Quest 🟢 Easy Variable

Quest Network Mapping: Comprehensive Learning Path Visualization

Quest Network Mapping Examples

Primary Tech
🛠️ reference
Skill Focus
Fullstack
Series
Codex Reference
Author
IT-Journey Team

Quest Network Mapping Examples

This document demonstrates the comprehensive quest hierarchy system with practical examples of how main quests, side quests, bonus quests, and epic quests interconnect to create cohesive learning experiences.

Complete Quest Line Example: Foundation Path

Terminal Mastery Path Series

graph TB
    subgraph "Prerequisites"
        HelloNoob[🌱 Hello n00b<br/>Entry Point]
        ComputerLit[🏰 Computer Literacy<br/>Main Quest]
    end
    
    subgraph "Terminal Mastery Path"
        TerminalNav[🏰 Terminal Navigation<br/>Main Quest]
        OhMyZsh[⚔️ Oh-My-Zsh Setup<br/>Side Quest]
        NerdFonts[⚔️ Nerd Font Enchantment<br/>Side Quest]
        ProductivityHacks[🎁 Terminal Productivity<br/>Bonus Quest]
        ShellScript[🏰 Shell Scripting<br/>Main Quest]
        TerminalEpic[👑 Terminal Automation<br/>Epic Quest]
    end
    
    subgraph "Unlocked Adventures"
        GitMastery[🏰 Git Version Control<br/>Main Quest]
        VSCodeMastery[🏰 VS Code Mastery<br/>Main Quest]
        DevEnv[🏰 Dev Environment<br/>Main Quest]
    end
    
    HelloNoob --> ComputerLit
    ComputerLit --> TerminalNav
    TerminalNav --> OhMyZsh
    TerminalNav --> NerdFonts
    TerminalNav --> ProductivityHacks
    OhMyZsh --> ShellScript
    NerdFonts --> ShellScript
    ShellScript --> TerminalEpic
    TerminalNav --> GitMastery
    TerminalNav --> VSCodeMastery
    TerminalNav --> DevEnv
    
    style TerminalNav fill:#87ceeb
    style ShellScript fill:#87ceeb
    style OhMyZsh fill:#ffd700
    style NerdFonts fill:#ffd700
    style ProductivityHacks fill:#ff69b4
    style TerminalEpic fill:#9370db

Multi-Path Learning Network

Character Class Integration

graph TD
    subgraph "Character Classes"
        SoftwareDev[💻 Software Developer]
        SystemEng[🏗️ System Engineer]
        DataSci[📊 Data Scientist]
        Security[🛡️ Security Specialist]
    end
    
    subgraph "Foundation Skills"
        Terminal[🏰 Terminal Mastery]
        Git[🏰 Version Control]
        Editor[🏰 Text Editor Mastery]
    end
    
    subgraph "Specialization Paths"
        Frontend[🎨 Frontend Development]
        Backend[⚙️ Backend Systems]
        DevOps[🔧 DevOps Automation]
        SecOps[🛡️ Security Operations]
        DataPipe[📊 Data Pipelines]
    end
    
    subgraph "Advanced Integration"
        FullStack[👑 Full-Stack Epic]
        CloudArch[👑 Cloud Architecture Epic]
        AIIntegration[👑 AI Development Epic]
    end
    
    SoftwareDev --> Terminal
    SystemEng --> Terminal
    DataSci --> Terminal
    Security --> Terminal
    
    Terminal --> Git
    Terminal --> Editor
    
    Git --> Frontend
    Git --> Backend
    Editor --> Frontend
    Editor --> Backend
    Terminal --> DevOps
    Terminal --> SecOps
    Terminal --> DataPipe
    
    Frontend --> FullStack
    Backend --> FullStack
    DevOps --> CloudArch
    SecOps --> CloudArch
    DataPipe --> AIIntegration

Quest Type Integration Example

Complete Learning Campaign: Web Development Mastery

timeline
    title Web Development Mastery Campaign
    
    section Foundation (Levels 0000-0111)
        Init World : 🌱 Hello n00b (Entry)
                   : 🏰 Computer Literacy (Main)
                   : 🏰 Terminal Navigation (Main)
                   : ⚔️ Oh-My-Zsh Setup (Side)
                   : ⚔️ Nerd Fonts (Side)
        
        Development : 🏰 HTML/CSS Fundamentals (Main)
                    : ⚔️ Bootstrap Integration (Side)
                    : 🏰 JavaScript Basics (Main)
                    : 🎁 ES6+ Features (Bonus)
    
    section Intermediate (Levels 1000-1111)
        Frontend : 🏰 React Fundamentals (Main)
                 : ⚔️ Component Libraries (Side)
                 : 🏰 State Management (Main)
                 : 🎁 Performance Optimization (Bonus)
        
        Backend : 🏰 Node.js & Express (Main)
                : ⚔️ API Documentation (Side)
                : 🏰 Database Integration (Main)
                : 🎁 Caching Strategies (Bonus)
    
    section Advanced (Levels 10000+)
        Integration : 🏰 Full-Stack Architecture (Main)
                    : ⚔️ Testing Strategies (Side)
                    : 👑 Portfolio Website Epic (Epic)
                    : 🎁 AI Integration (Bonus)
        
        Production : 🏰 Deployment Automation (Main)
                   : ⚔️ Monitoring Setup (Side)
                   : 👑 E-commerce Platform Epic (Epic)
                   : 🎁 Microservices Migration (Bonus)

Dependency Chain Visualization

Complex Prerequisite Network

graph TB
    subgraph "Entry Level"
        A[🌱 Hello n00b]
    end
    
    subgraph "Foundation Layer"
        B[🏰 Computer Literacy]
        C[🏰 Terminal Navigation]
        D[🏰 Text Editor Mastery]
    end
    
    subgraph "Development Fundamentals"
        E[🏰 HTML/CSS Fundamentals]
        F[🏰 JavaScript Basics]
        G[🏰 Version Control with Git]
    end
    
    subgraph "Enhancement Layer"
        H[⚔️ Oh-My-Zsh Setup]
        I[⚔️ Bootstrap Integration]
        J[⚔️ Git Workflow Optimization]
        K[🎁 Advanced CSS Techniques]
        L[🎁 JavaScript ES6+ Features]
    end
    
    subgraph "Intermediate Skills"
        M[🏰 Frontend Framework Mastery]
        N[🏰 Backend Development]
        O[🏰 Database Design]
    end
    
    subgraph "Advanced Integration"
        P[👑 Full-Stack Portfolio Epic]
        Q[👑 E-commerce Platform Epic]
    end
    
    A --> B
    B --> C
    B --> D
    C --> E
    C --> F
    C --> G
    D --> E
    D --> F
    
    C --> H
    E --> I
    G --> J
    E --> K
    F --> L
    
    E --> M
    F --> M
    F --> N
    G --> N
    M --> O
    N --> O
    
    M --> P
    N --> P
    O --> P
    
    P --> Q
    
    style A fill:#90EE90
    style B fill:#87ceeb
    style C fill:#87ceeb
    style D fill:#87ceeb
    style E fill:#87ceeb
    style F fill:#87ceeb
    style G fill:#87ceeb
    style H fill:#ffd700
    style I fill:#ffd700
    style J fill:#ffd700
    style K fill:#ff69b4
    style L fill:#ff69b4
    style M fill:#87ceeb
    style N fill:#87ceeb
    style O fill:#87ceeb
    style P fill:#9370db
    style Q fill:#9370db

Learning Path Customization

Different Character Class Journeys

graph TD
    subgraph "Common Foundation"
        Start[🌱 Hello n00b]
        Terminal[🏰 Terminal Navigation]
        Git[🏰 Version Control]
    end
    
    subgraph "Software Developer Path"
        DevHTML[🏰 HTML/CSS Fundamentals]
        DevJS[🏰 JavaScript Mastery]
        DevFramework[🏰 Frontend Framework]
        DevBackend[🏰 Backend Development]
        DevEpic[👑 Full-Stack Portfolio Epic]
    end
    
    subgraph "System Engineer Path"
        SysLinux[🏰 Linux Administration]
        SysNetwork[🏰 Network Configuration]
        SysDocker[🏰 Container Management]
        SysCloud[🏰 Cloud Platform Mastery]
        SysEpic[👑 Infrastructure Automation Epic]
    end
    
    subgraph "Data Scientist Path"
        DataPython[🏰 Python Programming]
        DataAnalysis[🏰 Data Analysis]
        DataML[🏰 Machine Learning]
        DataViz[🏰 Data Visualization]
        DataEpic[👑 ML Pipeline Epic]
    end
    
    Start --> Terminal
    Terminal --> Git
    
    Git --> DevHTML
    DevHTML --> DevJS
    DevJS --> DevFramework
    DevFramework --> DevBackend
    DevBackend --> DevEpic
    
    Git --> SysLinux
    SysLinux --> SysNetwork
    SysNetwork --> SysDocker
    SysDocker --> SysCloud
    SysCloud --> SysEpic
    
    Git --> DataPython
    DataPython --> DataAnalysis
    DataAnalysis --> DataML
    DataML --> DataViz
    DataViz --> DataEpic
    
    style Start fill:#90EE90
    style Terminal fill:#87ceeb
    style Git fill:#87ceeb
    style DevEpic fill:#9370db
    style SysEpic fill:#9370db
    style DataEpic fill:#9370db

Quest Progress Tracking System

Individual Quest Progress

graph LR
    subgraph "Quest Status Indicators"
        NotStarted[⚪ Not Started]
        InProgress[🟡 In Progress]
        Completed[✅ Completed]
        Mastered[🏆 Mastered]
    end
    
    subgraph "Quest Dependencies"
        Locked[🔒 Locked]
        Available[🟢 Available]
        Recommended[🔵 Recommended]
    end
    
    subgraph "Quest Types"
        Main[🏰 Main Quest]
        Side[⚔️ Side Quest]
        Bonus[🎁 Bonus Quest]
        Epic[👑 Epic Quest]
    end

Learning Path Progress Dashboard

graph TD
    subgraph "Foundation Path Progress"
        F1[✅ Hello n00b - Completed]
        F2[✅ Terminal Navigation - Completed]
        F3[🟡 Shell Scripting - In Progress]
        F4[⚪ Version Control - Not Started]
        F5[🔒 Advanced Automation - Locked]
    end
    
    subgraph "Side Quest Completion"
        S1[✅ Oh-My-Zsh Setup - Completed]
        S2[✅ Nerd Fonts - Completed]
        S3[🟡 Productivity Hacks - In Progress]
    end
    
    subgraph "Available Next Steps"
        N1[🟢 Git Fundamentals - Available]
        N2[🟢 VS Code Mastery - Available]
        N3[🔵 Development Environment - Recommended]
    end
    
    F2 --> S1
    F2 --> S2
    F3 --> N1
    S1 --> N2
    S2 --> N2

Implementation Guidelines

Quest Creator Workflow

graph TD
    Idea[💡 Quest Idea] --> Analysis{Analyze Scope}
    Analysis -->|60+ min, Multi-skill| EpicPath[👑 Epic Quest]
    Analysis -->|60+ min, Single-skill| MainPath[🏰 Main Quest]
    Analysis -->|15-60 min, Enhancement| SidePath[⚔️ Side Quest]
    Analysis -->|Variable, Experimental| BonusPath[🎁 Bonus Quest]
    
    EpicPath --> EpicTemplate[Use Epic Template]
    MainPath --> MainTemplate[Use Main Template]
    SidePath --> SideTemplate[Use Side Template]
    BonusPath --> BonusTemplate[Use Bonus Template]
    
    EpicTemplate --> Dependencies{Map Dependencies}
    MainTemplate --> Dependencies
    SideTemplate --> Dependencies
    BonusTemplate --> Dependencies
    
    Dependencies --> Network[Create Network Diagram]
    Network --> Validate[Validate Quest Network]
    Validate --> Publish[Publish Quest]

Automated Quest Map Generation

graph TB
    subgraph "Data Sources"
        Frontmatter[📄 Quest Frontmatter]
        Registry[💾 Quest Registry]
        UserProgress[📊 User Progress Data]
    end
    
    subgraph "Processing Engine"
        Parser[🔍 YAML Parser]
        Validator[✅ Dependency Validator]
        MapGenerator[🗺️ Map Generator]
    end
    
    subgraph "Output Formats"
        StaticMap[📄 Static Mermaid Diagrams]
        InteractiveMap[🎮 Interactive Web Map]
        ProgressDash[📊 Progress Dashboard]
        RecommendEngine[🤖 Recommendation Engine]
    end
    
    Frontmatter --> Parser
    Registry --> Parser
    UserProgress --> Parser
    
    Parser --> Validator
    Validator --> MapGenerator
    
    MapGenerator --> StaticMap
    MapGenerator --> InteractiveMap
    MapGenerator --> ProgressDash
    MapGenerator --> RecommendEngine

Practical Implementation Examples

Jekyll Collection Integration

<!-- _layouts/quest.html - Enhanced quest layout -->
<article class="quest side_quest">
  <header class="quest-header">
    <h1>Quest Network Mapping: Comprehensive Learning Path Visualization</h1>
    <div class="quest-metadata">
      <span class="quest-type side_quest">
        ⚔️ Side Quest
          
      </span>
      <span class="difficulty">🟢 Easy</span>
      <span class="time">Variable</span>
    </div>
  </header>

  <!-- Quest Network Visualization -->
  

  <!-- Main quest content -->
  <main class="quest-content">
    <!--
  ===================================================================
  DEFAULT LAYOUT - Standard content layout with sidebars
  ===================================================================

  File: default.html
  Path: _layouts/default.html
  Inherits: root.html
  Purpose: Primary content layout with sidebar navigation and table of contents

  Template Logic:
  - Creates a responsive three-column layout using Bootstrap grid
  - Left sidebar: Site navigation and content outline (collapsible on mobile)
  - Local graph: Obsidian side panel (rendered at body level via footer.html)
  - Center: Main content area with page title and body content
  - Right sidebar: Table of contents and page shortcuts (hidden on mobile)
  - Implements scroll spy for navigation highlighting
  - Responsive design that stacks vertically on mobile devices

  Layout Structure:
  1. Container wrapper with Bootstrap responsive classes
  2. Left sidebar (bd-sidebar) - Navigation and outline
  3. Main content area (bd-main) with:
     - Intro section (page title, metadata)
     - Right sidebar (bd-toc) - Table of contents
     - Content area (bd-content) - Main page content

  Dependencies:
  - sidebar-left.html: Site navigation and content outline
  - intro.html: Page title, breadcrumbs, and metadata
  - sidebar-right.html: Table of contents and page shortcuts

  Bootstrap Classes Used:
  - container-xxl: Extra large responsive container
  - bd-gutter: Custom Bootstrap spacing
  - bd-layout: Custom layout utility class
  - bd-sidebar: Custom sidebar styling
  - bd-main: Main content area
  - bd-toc: Table of contents styling
  - bd-content: Content area styling
  ===================================================================
--><!-- ================================================ -->
<!-- MAIN LAYOUT CONTAINER                           -->
<!-- Bootstrap responsive container with custom grid -->
<!-- ================================================ -->
<div class="container-xxl bd-gutter mt-3 my-md-4 bd-layout">

    <!-- ================================ -->
    <!-- LEFT SIDEBAR - Navigation       -->
    <!-- ================================ -->
    <!-- Site navigation, content outline, and offcanvas menu for mobile -->
    
    <aside class="bd-sidebar">
          <!--
  ===================================================================
  SIDEBAR LEFT - Dynamic Navigation Sidebar
  ===================================================================
  
  File: sidebar-left.html 
  Path: _includes/navigation/sidebar-left.html
  Purpose: Left sidebar navigation with three standardized content modes
  
  Template Logic:
  - Responsive offcanvas sidebar for mobile devices
  - Three navigation modes based on page.sidebar.nav:
    * "auto": Auto-generated folder structure from collection documents
    * "tree": YAML-defined hierarchical navigation from _data/navigation/
    * "categories": Category-based navigation from site categories
  
  Dependencies:
  - sidebar-folders.html: Dynamic folder structure generation (auto mode)
  - sidebar-categories.html: Category-based navigation (categories mode)
  - nav-tree.html: YAML-based hierarchical tree (tree mode)
  - Bootstrap 5 offcanvas component
  
  Navigation Modes:
  1. auto: Scans collection documents to build folder structure
  2. tree: Uses predefined YAML navigation from _data/navigation/*.yml
  3. categories: Groups content by Jekyll categories
  ===================================================================
-->

<!-- ================================ -->
<!-- SIDEBAR NAVIGATION CONTAINER   -->
<!-- ================================ -->
<!-- Responsive offcanvas sidebar - full-width on mobile, fixed on desktop -->
<script>
  try {
    if (localStorage.getItem('zer0-nav-sidebar-visible') === 'false') {
      document.documentElement.classList.add('bd-sidebar-pref-hidden');
    }
  } catch (e) {}
</script>
<div class="offcanvas-lg offcanvas-start" tabindex="-1" id="bdSidebar" aria-labelledby="bdSidebarOffcanvasLabel">

  <!-- ========================== -->
  <!-- SIDEBAR HEADER            -->
  <!-- ========================== -->
  <!-- Mobile-only header with close button -->
  <div class="offcanvas-header">
    <h2 class="offcanvas-title h5 mb-0" id="bdSidebarOffcanvasLabel">Browse docs</h2>
    <div class="d-flex align-items-center gap-1">
      <button type="button"
              class="btn btn-sm btn-link text-body-secondary bd-sidebar-visibility-toggle d-lg-none px-2"
              aria-controls="bdSidebar"
              aria-expanded="true"
              aria-label="Hide documentation sidebar">
        <i class="bi bi-eye-slash" aria-hidden="true"></i>
        <span class="visually-hidden">Hide documentation sidebar</span>
      </button>
      <button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close documentation sidebar" data-bs-target="#bdSidebar"></button>
    </div>
  </div>

  <!-- ========================== -->
  <!-- SIDEBAR CONTENT AREA      -->
  <!-- ========================== -->
  <!-- Scrollable content area with dynamic navigation options -->
  <div class="offcanvas-body overflow-auto">

    <div class="bd-sidebar-desktop-header mb-3 d-none d-lg-flex align-items-center justify-content-between gap-2 w-100">
      <strong class="d-flex align-items-center mb-0">
        <i class="bi bi-journal-bookmark me-2" aria-hidden="true"></i>
        Browse docs
      </strong>
      <button type="button"
              class="btn btn-sm btn-link text-body-secondary bd-sidebar-visibility-toggle d-none d-lg-inline-flex flex-shrink-0 px-1"
              aria-controls="bdSidebar"
              aria-expanded="true"
              aria-label="Hide documentation sidebar"
              title="Hide documentation sidebar">
        <i class="bi bi-layout-sidebar-inset" aria-hidden="true"></i>
        <span class="visually-hidden">Hide documentation sidebar</span>
      </button>
    </div>

    <!-- ========================== -->
    <!-- AUTO MODE: Collection Docs -->
    <!-- ========================== -->
    <!-- Auto-generates folder structure from collection documents -->
    
    <nav class="w-100 nav-tree" data-nav-tree>
      <!--
  ===================================================================
  NAV TREE - Flat YAML Navigation Renderer
  ===================================================================
  
  File: nav-tree.html
  Path: _includes/navigation/nav-tree.html
  Purpose: Render hierarchical navigation from YAML data files
  
  Parameters:
  - nav: Name of navigation file in _data/navigation/ (e.g., "docs", "main")
  
  Data Schema (expected in _data/navigation/*.yml):
  - title: string (required) - Display text
  - url: string (optional) - Link URL
  - icon: string (optional) - Bootstrap Icons class (e.g., "bi-folder")
  - expanded: boolean (optional) - Default expanded state (default: false)
  - children: array (optional) - Nested navigation items (max 2 levels)
  
  Note: This implementation supports 2 levels of nesting to avoid Jekyll's
  include depth limit. For deeper nesting, consider a plugin approach.
  
  Dependencies:
  - site.data.navigation[nav]: Navigation YAML data
  - Bootstrap 5 collapse component
  - Bootstrap Icons for visual indicators
  
  Usage:
  include navigation/nav-tree.html nav="docs"
  ===================================================================
-->




<ul class="list-unstyled fw-normal pb-2 small nav-tree-root">
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/home/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-map me-2"></i>
              <span>Quest Hub</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-quest-hub" 
                    aria-expanded="false"
                    aria-controls="nav-quest-hub"
                    aria-label="Toggle Quest Hub submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-quest-hub">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/home/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Overworld Map</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Quest Index</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/0000/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-emoji-sunglasses me-2"></i>
              <span>Level 0000 - Foundation & Init World</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-0000-foundation-init-world" 
                    aria-expanded="false"
                    aria-controls="nav-level-0000-foundation-init-world"
                    aria-label="Toggle Level 0000 - Foundation & Init World submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-0000-foundation-init-world">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/begin-your-it-journey/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Begin your IT Journey</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/character-building/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Character Building: Forge Your IT Identity and Development Environment</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/character-selection/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Character Selection</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/git-basics/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Git Basics: Version Control Introduction</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/hello-cloud/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Hello Cloud: First Steps into the Sky Realm</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/hello-macos/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Hello macOS: Setting Up the Apple Kingdom</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/hello-noob/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Hello n00b: Your First Steps into the IT Journey</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/hello-windows/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Hello Windows: Mastering the Windows Development Environment</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/it-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>IT Fundamentals</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/linux-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Linux Fundamentals</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/markdown-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Markdown Mastery: Content Formatting Fundamentals</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/os-selection/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>OS Selection</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/terminal-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Terminal Fundamentals: Command Line Navigation Quest</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/vscode-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>VS Code Mastery Quest: Forge Your Ultimate Development Weapon</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/agent-mode/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Agent Mode: AI Automation and Contribution</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/bash-run/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ bashcrawl and Beyond: Extending a Terminal Dungeon Adventure</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/armoury/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Armoury: File Permissions and Script Execution</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/cellar/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Cellar: File Types, Aliases, and Emerald Amulet</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/chamber/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Chamber: Bash Arithmetic and the Statue Boss</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/entrance/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Entrance: Your First Terminal Commands</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/hidden-chapel/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Hidden Chapel: Hidden Files and Man Pages</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/rift/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Rift: Pipes, Redirection, and the Final Boss</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/scrap/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Scrap Heap: Symbolic Links and Portal Creation</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/vault/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Vault: Environment Variables and the Goblet Puzzle</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0000/side-quests/workshop/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Bashcrawl Workshop: File Management Fundamentals</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/0001/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-feather me-2"></i>
              <span>Level 0001 - Web Fundamentals</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-0001-web-fundamentals" 
                    aria-expanded="false"
                    aria-controls="nav-level-0001-web-fundamentals"
                    aria-label="Toggle Level 0001 - Web Fundamentals submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-0001-web-fundamentals">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/git-init-testing/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Building & Testing the Git Init Script: Headless, Interactive, Scaffolding</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/forge-your-character/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Forge Your Character: Crafting Your Contributor Identity</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/stating-the-stats/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Forging the Stats Portal: Data Analytics Quest</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/git-workflow-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Git Workflow Mastery: Branches, Merging & Team Collaboration</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/github-pages-basics/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>GitHub Pages Basics: Deploy Free Websites in Minutes</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/jekyll-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Jekyll Fundamentals: Build Static Sites with Ruby</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/kaizen-continuous-improvement/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Kaizen Quest: The Path of Continuous Improvement in Software Alchemy</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/liquid-templating/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Liquid Templating: Dynamic Content for Jekyll Sites</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/stack-attack/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Stack Attack: Building an Enterprise Django + React ERP with AI Agents</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/terminal-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Terminal Mastery: Conquering the Command-Line Realm</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/github-pages-portal/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The GitHub Pages Portal: Forging Your Digital Realm</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/docs-in-a-row/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Knowledge Vault: Building an Automated Documentation Hub</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/yaml-configuration/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>YAML Configuration: Site Settings Mastery</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/side-quests/avatar-forge/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Avatar Forge: Crafting Your Digital Portrait</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/side-quests/badge-collector/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Badge Collector: Showcasing Your Achievements</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/side-quests/personal-site/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Personal Site</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/side-quests/it-journey-stack-analysis/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Stack Attack Analysis: IT-Journey</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0001/side-quests/barodybroject-stack-analysis/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Technology Stack Analysis: Barodybroject</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/0010/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-terminal me-2"></i>
              <span>Level 0010 - Terminal Mastery</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-0010-terminal-mastery" 
                    aria-expanded="false"
                    aria-controls="nav-level-0010-terminal-mastery"
                    aria-label="Toggle Level 0010 - Terminal Mastery submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-0010-terminal-mastery">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/advanced-markdown/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Advanced Markdown: Tables, Footnotes & Extended Syntax</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/bootstrap-framework/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Bootstrap Framework: Build Responsive Sites Fast</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/change-logs/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Change Logs</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/commitments-to-clean-commits/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Commitments to clean commits</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/css-styling-basics/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>CSS Styling Basics: Selectors, Layout & Responsive Design</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/prompt-engineering-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Forging the Prompt Crystal: Master AI Communication</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/javascript-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>JavaScript Fundamentals: DOM Manipulation & Events</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/branches-and-pull-requests/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Mastering Branches and Pull Requests for Developers</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/bash-scripting/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Mastering the Bash Incantations: Binary Level 0010 (2) Command Line Sorcery Quest</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/planting-seeds/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>planting seeds</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/recursive-realms-testing/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Recursive Realms: Testing Infinite Loops with AI</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/revolutionizing-work-with-ai-automation/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Revolutionizing Work with AI Automation</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/django-and-git/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Setting up Django and Git</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/oh-my-zsh-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Terminal Enchantment: Oh-My-Zsh Mastery</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/jekyll-mermaid-integration/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Diagrammatic Enchantment: Jekyll-Mermaid Integration Quest</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/action-triggers/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Understanding Action Triggers in Depth</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/side-quests/contribution-calendar/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Contribution Calendar: Mapping Your Journey Through Time</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/epic-quest-zer0-to-her0-cmstyle/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Epic Quest: Zer0-to-Her0 CMStyle</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/side-quests/nerd-font-enchantment/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Nerd Font Enchantment: Terminal Icon Mastery</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/side-quests/stats-dashboard/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Stats Dashboard: Enhancing Your Data Visualization</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0010/side-quests/terminal-artificer-frontend-building/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Terminal Artificer: Forging the Glass Interface</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/0011/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-stars me-2"></i>
              <span>Level 0011 - AI-Assisted Development</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-0011-ai-assisted-development" 
                    aria-expanded="false"
                    aria-controls="nav-level-0011-ai-assisted-development"
                    aria-label="Toggle Level 0011 - AI-Assisted Development submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-0011-ai-assisted-development">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0011/advanced-git-workflows/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Advanced Git Workflows: Master Rebase, Cherry-pick, and Stash Commands</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0011/custom-domains/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Custom Domains for GitHub Pages: Professional Website Setup Guide</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0011/prompt-crystal-vscode-copilot/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Forging the Prompt Crystal: VS Code Copilot Mastery Quest</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0011/analytics-integration/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Google Analytics for Jekyll: Complete User Tracking Integration Guide</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0011/jekyll-plugins/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Jekyll Plugins: Essential Extensions for Powerful Static Sites</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0011/seo-optimization/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>SEO Optimization: Boost Search Engine Visibility for Jekyll Sites</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0011/github-pages-hidden-gem/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Epic Quest for the Hidden Gem: Unleashing GitHub Pages to Capture and Conquer AI Realms</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0011/prd-codex-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The PRD Codex: Mastering the Art of Product Reality Distillation</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/0100/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-box-seam me-2"></i>
              <span>Level 0100 - Frontend & Containers</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-0100-frontend-containers" 
                    aria-expanded="false"
                    aria-controls="nav-level-0100-frontend-containers"
                    aria-label="Toggle Level 0100 - Frontend & Containers submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-0100-frontend-containers">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/docker-compose-orchestration/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Docker Compose Orchestration: Build Multi-Container Applications</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/container-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Docker Container Fundamentals: Master Isolation & Portability for DevOps</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/frontend-docker/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Dockering Jekyll with Bootstrap 5</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/frontend-docker-000/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Frontend Docker - level 000</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/001-frontend-docker/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Frontend Docker Level 001: Create Jekyll Site with Docker Container</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/010-frontend-docker/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Frontend Docker Level 010: Adding Bootstrap 5 to Jekyll in Docker</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/frontend-levels/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Frontend Forests Levels</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/frontend/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Frontend Forests: Building a Jekyll Site with Bootstrap</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/source-control-sorcery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Quest: Mastering the Ancient Arts of Source Control Sorcery</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/side-quests/profile-themes/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Profile Themes: Unleashing the Style Sorcerer</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0100/side-quests/jekyll-component-refactoring/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ The Artisan's Forge: Refactoring Jekyll Theme Components</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/0101/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-rocket-takeoff me-2"></i>
              <span>Level 0101 - CI/CD & DevOps</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-0101-ci-cd-devops" 
                    aria-expanded="false"
                    aria-controls="nav-level-0101-ci-cd-devops"
                    aria-label="Toggle Level 0101 - CI/CD & DevOps submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-0101-ci-cd-devops">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/artifact-management/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Artifact Management: Build Output Storage and Dependency Caching</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/cicd-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>CI/CD Fundamentals: Continuous Integration and Continuous Deployment Essentials</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/deployment-pipelines/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Deployment Pipelines: Production Release Automation Strategies</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/docker-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Docker Containerization Mastery: Level 0101 (5) Quest</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/environment-management/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Environment Management: Dev, Staging, and Production Configuration</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/latex-cv-forging/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Forging the La(zy)TeX CV: Binary Level 0101 (5) Quest</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/github-actions-basics/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>GitHub Actions Basics: Workflow Automation for Modern DevOps</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/secrets-management/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Secrets Management: Secure Configuration and Credential Handling</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/testing-integration/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Testing Integration: Automated Quality Assurance in CI/CD Pipelines</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/workflow-optimization/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Workflow Optimization: Caching Strategies and Pipeline Parallelization</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0101/side-quests/jekyll-quest-tracking/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ Jekyll Quest Tracking: Building Dynamic Collection Layouts</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/0110/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-database me-2"></i>
              <span>Level 0110 - Database Mastery</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-0110-database-mastery" 
                    aria-expanded="false"
                    aria-controls="nav-level-0110-database-mastery"
                    aria-label="Toggle Level 0110 - Database Mastery submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-0110-database-mastery">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0110/backup-recovery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Backup and Recovery: Data Protection Strategies for Databases</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0110/connection-pooling/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Connection Pooling: Efficient Database Resource Management</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0110/data-modeling/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Data Modeling: Schema Design and Database Relationships</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0110/database-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Database Fundamentals: Data Storage and Retrieval</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0110/database-migrations/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Database Migrations: Schema Evolution and Version Control</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0110/database-security/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Database Security: Access Control and Data Encryption</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0110/query-optimization/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Query Optimization: Performance Tuning for Fast Database Queries</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0110/sql-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>SQL Mastery: Query Language Proficiency for Data Professionals</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/0111/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-cloud-arrow-up me-2"></i>
              <span>Level 0111 - API Development</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-0111-api-development" 
                    aria-expanded="false"
                    aria-controls="nav-level-0111-api-development"
                    aria-label="Toggle Level 0111 - API Development submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-0111-api-development">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0111/api-authentication/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>API Authentication: OAuth, JWT, and API Keys Implementation</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0111/api-documentation/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>API Documentation: OpenAPI Specification and Developer Experience</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0111/api-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>API Fundamentals: Building Web Services and HTTP APIs</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0111/api-versioning/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>API Versioning: Managing API Evolution and Backwards Compatibility</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0111/error-handling/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Error Handling: API Response Patterns and HTTP Status Codes</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0111/agentic-sdlc-integration/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Initiation Rites: Embedding Agents in the SDLC</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0111/rate-limiting/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Rate Limiting: API Traffic Control and Throttling Strategies</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0111/rest-principles/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>REST Principles: RESTful API Design Best Practices</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/0111/agentic-plan-vs-action-boundaries/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Three Sigils: Plan, Reason, Act</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/1000/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-cloud me-2"></i>
              <span>Level 1000 - Cloud Computing</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-1000-cloud-computing" 
                    aria-expanded="false"
                    aria-controls="nav-level-1000-cloud-computing"
                    aria-label="Toggle Level 1000 - Cloud Computing submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-1000-cloud-computing">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1000/aws-essentials/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>AWS Essentials: Core Services and Cloud Architecture Patterns</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1000/cloud-computing-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Cloud Computing Fundamentals: IaaS, PaaS, and SaaS Explained</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1000/agentic-tool-selection-and-permissions/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Forging the Agent's Arsenal: Tool Selection & Permissions</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1000/infrastructure-as-code/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Infrastructure as Code: Terraform and CloudFormation Fundamentals</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1000/agentic-observability-and-control/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The All-Seeing Eye: Observability & Control for Autonomous Agents</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1000/agentic-mcp-server-mastery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The MCP Conclave: Mastering Model Context Protocol Servers</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/1001/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-grid-3x3-gap me-2"></i>
              <span>Level 1001 - Kubernetes Orchestration</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-1001-kubernetes-orchestration" 
                    aria-expanded="false"
                    aria-controls="nav-level-1001-kubernetes-orchestration"
                    aria-label="Toggle Level 1001 - Kubernetes Orchestration submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-1001-kubernetes-orchestration">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1000/azure-ascension-jekyll-deployment/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Azure Ascension: Deploying Jekyll to the Cloud Kingdom</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1001/agentic-dev-environment-integration/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Bind the Agent to the Realm: Dev Environment Integration</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1001/k8s-config-secrets/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Kubernetes ConfigMaps and Secrets: Configuration Management Best Practices</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1001/kubernetes-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Kubernetes Fundamentals: Container Orchestration Essentials</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1001/k8s-pods-workloads/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Kubernetes Pods and Workloads: Deployments and StatefulSets</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1001/k8s-services-networking/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Kubernetes Services and Networking: Ingress and DNS Configuration</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1001/agentic-safe-execution-and-error-handling/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Shield of Retries: Safe Execution and Error Handling</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1001/agentic-memory-strategies/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Vaults of Recollection: Agent Memory Strategies</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/1010/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-graph-up me-2"></i>
              <span>Level 1010 - Monitoring & Observability</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-1010-monitoring-observability" 
                    aria-expanded="false"
                    aria-controls="nav-level-1010-monitoring-observability"
                    aria-label="Toggle Level 1010 - Monitoring & Observability submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-1010-monitoring-observability">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/alerting-systems/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Alerting Systems: PagerDuty Integration & Incident Management Guide</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/agentic-state-persistence-and-drift/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Anchoring the Drifting Agent: State Persistence and Drift Prevention</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/agentic-state-continuity-cross-tools/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Crossing the Tool Planes: State Continuity Across Tools</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/distributed-tracing/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Distributed Tracing: Jaeger & OpenTelemetry Implementation Guide</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/elk-stack/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>ELK Stack Tutorial: Elasticsearch, Logstash & Kibana for Log Analysis</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/automated-hyperlink-guardian/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Link to the Future: Automated Hyperlink Guardian Quest</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/monitoring-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Monitoring Fundamentals: Master Metrics, Logs & Traces for Observability</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/prometheus-grafana/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Prometheus & Grafana: Complete Metrics Collection & Visualization Tutorial</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/agentic-failure-root-cause-analysis/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Necromancer's Inquest: Agent Failure Root Cause Analysis</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1010/agentic-success-criteria-and-signals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Oracle's Rubric: Defining Agent Success Criteria and Signals</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/1011/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-shield-lock me-2"></i>
              <span>Level 1011 - Security & Compliance</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-1011-security-compliance" 
                    aria-expanded="false"
                    aria-controls="nav-level-1011-security-compliance"
                    aria-label="Toggle Level 1011 - Security & Compliance submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-1011-security-compliance">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/ai-feature-pipeline-architect/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>AI Feature Pipeline Architect: DevSecOps Mastery Quest</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/compliance-standards/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Compliance Standards: SOC 2, GDPR, and HIPAA Requirements</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/penetration-testing/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Penetration Testing: Tools and Ethical Hacking Methodologies</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/agentic-behavior-tuning/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Reforging the Agent's Mind: Behavior Tuning Through Instructions</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/secure-coding/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Secure Coding Practices: OWASP Top 10 Vulnerability Prevention</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/security-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Security Fundamentals: CIA Triad and Defense in Depth Strategies</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/agentic-multi-agent-orchestration-patterns/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Council of Many: Multi-Agent Orchestration Patterns</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/agentic-multi-agent-observability/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Scribe's Codex: Observability in Multi-Agent Systems</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/threat-modeling/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Threat Modeling: STRIDE Framework and Attack Trees Analysis</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1011/agentic-multi-agent-failure-recovery/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>When Familiars Fall: Multi-Agent Failure Recovery</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/1100/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-diagram-3 me-2"></i>
              <span>Level 1100 - Data Engineering</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-1100-data-engineering" 
                    aria-expanded="false"
                    aria-controls="nav-level-1100-data-engineering"
                    aria-label="Toggle Level 1100 - Data Engineering submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-1100-data-engineering">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/apache-spark/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Apache Spark Mastery: Big Data Processing with PySpark & Scala</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/data-quality/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Data Quality Engineering: Testing, Validation & Monitoring Frameworks</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/data-warehousing/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Data Warehousing: Design Star Schema & Build Modern Analytics Architecture</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/etl-pipeline-design/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>ETL Pipeline Design: Build Scalable Data Pipelines with Python</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/mastering-version-control-workflows/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Mastering Version Control Workflows: The Grand Merge Ritual</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/conquer-king-edgar/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Quest to Conquer King EDGAR: The Epic Siege of the SEC Data Castle</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/stream-processing/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Stream Processing: Real-Time Data with Apache Kafka & Flink</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/agentic-multi-agent-lifecycle-management/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Agent Pantheon: Multi-Agent Lifecycle Management</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/agentic-autonomy-levels-matrix/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Autonomy Scales: Mapping Agent Autonomy Levels</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/sec-edgar-siege/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Siege of King EDGAR: Storming the SEC Data Castle</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/temple-of-templates/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Temple of Templates: Binary Abstractions and Reusable Realms</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/agentic-guardrails-and-human-in-the-loop/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>The Warden's Pact: Guardrails and Human-in-the-Loop Patterns</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1100/agentic-codex-capstone-exam-trial/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Trial of the Agentic Codex: The Grand Capstone</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/1101/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-cpu me-2"></i>
              <span>Level 1101 - Machine Learning & AI</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-1101-machine-learning-ai" 
                    aria-expanded="false"
                    aria-controls="nav-level-1101-machine-learning-ai"
                    aria-label="Toggle Level 1101 - Machine Learning & AI submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-1101-machine-learning-ai">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1101/computer-vision/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Computer Vision Mastery: Image Classification, Object Detection & Segmentation</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1101/deep-learning-frameworks/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Deep Learning Frameworks: PyTorch vs TensorFlow Comparison & Implementation</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1101/ml-fundamentals/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Machine Learning Fundamentals: Supervised & Unsupervised Learning with Scikit-Learn</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1101/mlops/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>MLOps Engineering: CI/CD Pipelines for Machine Learning Production</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1101/natural-language-processing/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Natural Language Processing: Text Analysis, Transformers & LLMs with Python</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1101/neural-networks/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Neural Networks Deep Dive: Build CNNs, RNNs & Transformers from Scratch</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1101/python-data-science/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Python for Data Science: NumPy, Pandas & Matplotlib Complete Guide</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1101/side-quests/ai-ethics/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>⚔️ AI Ethics and Responsible AI: Bias Detection, Fairness & Governance</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/1110/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-building-gear me-2"></i>
              <span>Level 1110 - Architecture & Design</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-1110-architecture-design" 
                    aria-expanded="false"
                    aria-controls="nav-level-1110-architecture-design"
                    aria-label="Toggle Level 1110 - Architecture & Design submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-1110-architecture-design">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1110/404-hunting-quest/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>404 Hunting: Binary Wards for Unbreakable Links</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1110/api-gateway-patterns/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>API Gateway Patterns: Routing, Load Balancing and Security</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1110/domain-driven-design/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Domain-Driven Design: Strategic and Tactical Patterns</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1110/event-driven-design/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Event-Driven Architecture: Message Queues and Event Sourcing</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1110/microservices-architecture/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Microservices Architecture: Building Scalable Distributed Systems</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1110/scaling-strategies/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Scaling Strategies: Horizontal and Vertical Scaling Patterns</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1110/design-patterns/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Software Design Patterns: Gang of Four and Modern Patterns</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1110/system-design-interviews/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>System Design Interview Mastery: Ace Technical Interviews</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <a href="/quests/1111/" 
               class="nav-tree-link flex-grow-1 d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
              <i class="bi-trophy me-2"></i>
              <span>Level 1111 - Leadership & Innovation</span>
            </a>
            <button class="btn btn-sm btn-link nav-tree-toggle p-1 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-level-1111-leadership-innovation" 
                    aria-expanded="false"
                    aria-controls="nav-level-1111-leadership-innovation"
                    aria-label="Toggle Level 1111 - Leadership & Innovation submenu">
              <i class="bi bi-chevron-down"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-level-1111-leadership-innovation">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1111/architecture-reviews/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Architecture Reviews: Leading Technical Design Discussions</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1111/building-technical-communities/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Building Technical Communities: Growing Developer Ecosystems</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1111/career-advancement/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Career Advancement Strategies: Growing from Engineer to Leader</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1111/innovation-rnd/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Innovation and R&D: Driving Technical Innovation</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1111/mentorship-programs/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Mentorship Programs: Developing and Growing Engineering Talent</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1111/open-source-contribution/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Open Source Contribution: Leading and Maintaining Projects</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1111/tech-speaking-writing/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Tech Speaking and Writing: Building Your Technical Brand</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/1111/technical-leadership/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Technical Leadership: Building High-Performance Engineering Teams</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
    
    
    
    
    
    <li class="mb-1 nav-tree-item" data-depth="0">
      
        <!-- Parent item with children - collapsible -->
        <div class="d-flex align-items-center">
          
            <button class="btn btn-link nav-tree-toggle w-100 d-flex align-items-center text-start fw-semibold py-1 px-2 collapsed"
                    type="button"
                    data-bs-toggle="collapse" 
                    data-bs-target="#nav-resources" 
                    aria-expanded="false"
                    aria-controls="nav-resources">
              <i class="bi-book me-2"></i>
              <span class="flex-grow-1">Resources</span>
              <i class="bi bi-chevron-down nav-tree-chevron"></i>
            </button>
          
        </div>
        
        <!-- Children container (Level 1) -->
        <div class="collapse" id="nav-resources">
          <ul class="list-unstyled fw-normal ps-3 nav-tree-children">
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/codex/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Codex</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/inventory/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Inventory</span>
                    </a>
                  
                
              </li>
            
              
              
              
              
              
              <li class="mb-1 nav-tree-item" data-depth="1">
                
                  <!-- Level 1 leaf item -->
                  
                    <a href="/quests/tools/" 
                       class="nav-tree-link d-inline-flex align-items-center rounded py-1 px-2 text-decoration-none active">
                      
                      <span>Tools</span>
                    </a>
                  
                
              </li>
            
          </ul>
        </div>
      
    </li>
  
</ul>


    </nav>
    
    
  </div>
</div>

    </aside>
    <div class="position-fixed bd-sidebar-fab d-lg-none" id="sidebarFab">
      <button class="btn btn-primary rounded-circle shadow-lg p-0 bd-sidebar-toggle"
              type="button"
              aria-controls="bdSidebar"
              aria-expanded="true"
              aria-label="Open documentation sidebar">
        <i class="bi bi-journal-bookmark fs-5" aria-hidden="true"></i>
      </button>
    </div>
    

    <!-- ================================ -->
    <!-- MAIN CONTENT AREA               -->
    <!-- ================================ -->
    <!-- Primary content section with scroll spy for table of contents navigation -->
    <main class="bd-main order-1" data-bs-spy="scroll" data-bs-target="#TableOfContents" data-bs-offset="100" data-bs-smooth-scroll="true">
        
        
          <!--
  file: _includes/content/intro.html
  description: Enhanced intro section with share, edit, and Copilot agent session buttons
  path: _includes/content/intro.html
  features:
    - Responsive share dropdown with multiple social platforms
    - Edit on GitHub quick link
    - Copilot Agent dropdown: select a prompt template to pre-fill a GitHub issue
    - Issue body includes prompt template + page context + environment details
    - Prompts sourced from _data/prompts.yml
    - Responsive flex layout: full-width content block, frosted metadata footer with reading time and action buttons
    - Balanced padding and typography hierarchy via bd-intro-* classes
    - Metadata row: author, dates, category, difficulty, tags, view source
--> 


<!-- Intro Section -->
































  
  
    
      
        
        
  
  











<div class="bd-intro" style="
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assetsimages/previews/oh-my-zsh-terminal-enchantment-shell-enhancement-m.png') no-repeat center center / cover;">

  <div class="bd-intro-inner">
    <div class="bd-intro-content">
      <h1 class="bd-intro-title">Oh-My-Zsh Terminal Enchantment: Shell Enhancement Magic</h1>
      
      <p class="bd-intro-subtitle">Level 0010 (2) Side Quest: Terminal Enhancement and Customization</p>
      
      
      <p class="bd-intro-description">Transform your terminal into a powerful, visually enhanced development environment with Oh-My-Zsh themes and plugins</p>
      
    </div>

    <div class="bd-intro-meta-footer">
      <ul class="bd-intro-meta-row list-unstyled" aria-label="Page metadata">
        <li class="bd-intro-meta-item">
          <i class="bi bi-person-fill bd-intro-meta-icon" aria-hidden="true"></i>
          
          <a class="bd-intro-meta-link" href="https://github.com/bamr87" rel="author" itemprop="author">Quest Master IT-Journey Team</a>
          
        </li>

        
        <li class="bd-intro-meta-item">
          <i class="bi bi-calendar3 bd-intro-meta-icon" aria-hidden="true"></i>
          <time datetime="2025-10-04T15:25:33+00:00" itemprop="datePublished">
            Published Oct 04, 2025
          </time>
        </li>
        

        
        <li class="bd-intro-meta-item">
          <i class="bi bi-pencil bd-intro-meta-icon" aria-hidden="true"></i>
          <time datetime="2025-10-03T12:30:00+00:00" itemprop="dateModified">
            Updated Oct 03, 2025
          </time>
        </li>
        

        
        <li class="bd-intro-meta-item">
          <i class="bi bi-folder2 bd-intro-meta-icon" aria-hidden="true"></i>
          
          <a class="bd-intro-meta-link bd-intro-badge" href="/tags/#quests">Quests</a>
          
        </li>
        

        
        <li class="bd-intro-meta-item">
          <i class="bi bi-bar-chart-steps bd-intro-meta-icon" aria-hidden="true"></i>
          
          <span class="bd-intro-badge bd-intro-badge--level bd-intro-badge--level-medium">🟡 medium</span>
        </li>
        

        
        <li class="bd-intro-meta-item bd-intro-meta-item--tags">
          <i class="bi bi-tags bd-intro-meta-icon" aria-hidden="true"></i>
          <span class="bd-intro-tag-list">
            
            
            <a class="bd-intro-badge bd-intro-badge--tag" href="/tags/#0010">0010</a>
            
            
            <a class="bd-intro-badge bd-intro-badge--tag" href="/tags/#terminal-enhancement">terminal-enhancement</a>
            
            
            <a class="bd-intro-badge bd-intro-badge--tag" href="/tags/#oh-my-zsh">oh-my-zsh</a>
            
            
            <a class="bd-intro-badge bd-intro-badge--tag" href="/tags/#shell-customization">shell-customization</a>
            
            
            <a class="bd-intro-badge bd-intro-badge--tag" href="/tags/#productivity-tools">productivity-tools</a>
            
            
            <span class="bd-intro-badge bd-intro-badge--tag bd-intro-badge--more">+2</span>
            
          </span>
        </li>
        

        
        <li class="bd-intro-meta-item bd-intro-meta-item--source d-none d-md-inline-flex">
          <i class="bi bi-file-earmark-code bd-intro-meta-icon" aria-hidden="true"></i>
          <a class="bd-intro-meta-link" href="https://github.com/bamr87/it-journey/blob/main/pages/_quests/codex/oh-my-zsh-side-quest-example.md" target="_blank" rel="noopener noreferrer">View source</a>
        </li>
        
      </ul>

      <div class="bd-intro-meta-bottom">
        <p class="bd-intro-meta">
          <i class="bi bi-clock me-1" aria-hidden="true"></i>
          
          Estimated reading time: 10 minutes
          
        </p>

        <!-- Action Buttons Group -->
        <div class="bd-intro-actions">
    <!-- Share Button -->
    <div class="dropdown">
      <button class="btn btn-sm btn-info dropdown-toggle" type="button" id="shareDropdownBottom" data-bs-toggle="dropdown" aria-expanded="false">
        <i class="bi bi-share" aria-hidden="true"></i>
        <span class="d-none d-sm-inline ms-1">Share</span>
      </button>
      <ul class="dropdown-menu dropdown-menu-end" aria-labelledby="shareDropdownBottom">
        <li>
          <a class="dropdown-item" href="https://reddit.com/submit?url=https%3A%2F%2Fit-journey.dev%2Fquests%2Fcodex%2Foh-my-zsh-terminal-enchantment%2F&amp;title=Oh-My-Zsh+Terminal+Enchantment%3A+Shell+Enhancement+Magic" target="_blank">
            <i class="bi bi-reddit me-2"></i>Share on Reddit
          </a>
        </li>
        <li>
          <a class="dropdown-item" href="https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fit-journey.dev%2Fquests%2Fcodex%2Foh-my-zsh-terminal-enchantment%2F" target="_blank">
            <i class="bi bi-linkedin me-2"></i>Share on LinkedIn
          </a>
        </li>
        <li>
          <a class="dropdown-item" href="https://x.com/intent/tweet?url=https%3A%2F%2Fit-journey.dev%2Fquests%2Fcodex%2Foh-my-zsh-terminal-enchantment%2F&text=Oh-My-Zsh+Terminal+Enchantment%3A+Shell+Enhancement+Magic" target="_blank" aria-label="Share on X">
            <i class="bi bi-twitter-x me-2"></i>Share on X
          </a>
        </li>
        <li><hr class="dropdown-divider"></li>
        <li><button class="dropdown-item" type="button" data-copy="https://it-journey.dev/quests/codex/oh-my-zsh-terminal-enchantment/">
            <i class="bi bi-clipboard me-2" aria-hidden="true"></i>Copy Link
          </button>
        </li>
      </ul>
    </div>

    <!-- Copilot Agent Prompt Dropdown -->
    <div class="dropdown">
      <button class="btn btn-sm btn-success dropdown-toggle" type="button" id="copilotAgentDropdown" data-bs-toggle="dropdown" aria-expanded="false" title="Open a GitHub issue with a Copilot prompt for this page">
        <i class="bi bi-robot" aria-hidden="true"></i>
        <span class="d-none d-sm-inline ms-1">Copilot Agent</span>
      </button>
      <ul class="dropdown-menu dropdown-menu-end copilot-agent-menu" aria-labelledby="copilotAgentDropdown">
        
        
      </ul>
    </div>

    <!-- Edit on GitHub Button -->
    <a href="https://github.com/bamr87/it-journey/blob/main/pages/_quests/codex/oh-my-zsh-side-quest-example.md"
       class="btn btn-sm btn-dark bd-intro-action-link"
       target="_blank"
       rel="noopener noreferrer">
      <i class="bi bi-github" aria-hidden="true"></i>
      <span class="d-none d-sm-inline ms-1">Edit on GitHub</span>
    </a>
        </div>
      </div>
    </div>
  </div>
</div>
        

        <!-- =============================== -->
        <!-- RIGHT SIDEBAR - Table of Contents -->
        <!-- =============================== -->
        <!-- Page outline, shortcuts, and related links (hidden on mobile) -->
        
        <div class="bd-toc text-body-secondary">
            <!-- 
  file: sidebar-right.html 
  path: _includes/sidebar-right.html
  includes: nav_list.html, content/toc.html
-->

<!-- FOUC guard: apply hidden TOC preference before paint -->
<script>
  try {
    if (localStorage.getItem('zer0-nav-toc-visible') === 'false') {
      document.documentElement.classList.add('bd-toc-pref-hidden');
    }
  } catch (e) {}
</script>

<!-- Right sidebar container -->
<div class="offcanvas-lg offcanvas-end" tabindex="-1" id="tocContents" aria-labelledby="tocLabel">
  <div class="offcanvas-header">
    <h2 class="offcanvas-title h5 mb-0" id="tocLabel">Table of Contents</h2>
    <div class="d-flex align-items-center gap-1">
      <button type="button"
              class="btn btn-sm btn-link text-body-secondary bd-toc-visibility-toggle d-lg-none px-2"
              aria-controls="tocContents"
              aria-expanded="true"
              aria-label="Hide table of contents">
        <i class="bi bi-eye-slash" aria-hidden="true"></i>
        <span class="visually-hidden">Hide table of contents</span>
      </button>
      <button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close table of contents" data-bs-target="#tocContents"></button>
    </div>
  </div>
  <div class="offcanvas-body">
    <!-- Table of contents -->
    <nav id="TableOfContents" role="navigation" aria-label="Table of Contents">
      <!-- TOC title -->
      <div class="mb-3 d-flex align-items-center justify-content-between gap-2">
        <strong class="d-flex align-items-center mb-0">
          <i class="bi bi-file-text me-2" aria-hidden="true"></i>
          On this page
        </strong>
        <button type="button"
                class="btn btn-sm btn-link text-body-secondary bd-toc-visibility-toggle d-none d-lg-inline-flex flex-shrink-0 px-1"
                aria-controls="tocContents"
                aria-expanded="true"
                aria-label="Hide table of contents"
                title="Hide table of contents">
          <i class="bi bi-layout-sidebar-inset-reverse" aria-hidden="true"></i>
          <span class="visually-hidden">Hide table of contents</span>
        </button>
      </div>

      
      
        <ul class="list-group-flush"><li class="list-group-item"><a href="#quest-progress-heading" class="">📈 Your Progress</a></li><li class="list-group-item"><a href="#quest-prerequisites-heading" class="">🗝️ Prerequisites</a><ul><li class="list-group-item"><a href="#️-quest-network-position" class="">🗺️ Quest Network Position</a></li></ul></li><li class="list-group-item"><a href="#-quest-objectives" class="">🎯 Quest Objectives</a><ul><li class="list-group-item"><a href="#primary-objectives-required-for-side-quest-completion" class="">Primary Objectives (Required for Side Quest Completion)</a></li><li class="list-group-item"><a href="#secondary-objectives-bonus-achievements" class="">Secondary Objectives (Bonus Achievements)</a></li></ul></li><li class="list-group-item"><a href="#️-chapter-1-framework-installation-and-setup" class="">🧙‍♂️ Chapter 1: Framework Installation and Setup</a><ul><li class="list-group-item"><a href="#️-secure-installation-process" class="">🏗️ Secure Installation Process</a></li></ul></li><li class="list-group-item"><a href="#️-chapter-2-theme-mastery-and-visual-enhancement" class="">🧙‍♂️ Chapter 2: Theme Mastery and Visual Enhancement</a><ul><li class="list-group-item"><a href="#️-theme-configuration" class="">🏗️ Theme Configuration</a></li></ul></li><li class="list-group-item"><a href="#️-chapter-3-plugin-integration-and-productivity-enhancement" class="">🧙‍♂️ Chapter 3: Plugin Integration and Productivity Enhancement</a><ul><li class="list-group-item"><a href="#️-essential-plugin-setup" class="">🏗️ Essential Plugin Setup</a></li></ul></li><li class="list-group-item"><a href="#-side-quest-challenges" class="">🎮 Side Quest Challenges</a><ul><li class="list-group-item"><a href="#challenge-1-complete-enhancement-setup--25-minutes" class="">Challenge 1: Complete Enhancement Setup (🕐 25 minutes)</a></li><li class="list-group-item"><a href="#challenge-2-custom-configuration-creation--20-minutes" class="">Challenge 2: Custom Configuration Creation (🕐 20 minutes)</a></li></ul></li><li class="list-group-item"><a href="#-quest-rewards-and-achievements" class="">🎁 Quest Rewards and Achievements</a><ul><li class="list-group-item"><a href="#-achievement-badges-earned" class="">🏆 Achievement Badges Earned</a></li><li class="list-group-item"><a href="#-skills-and-abilities-unlocked" class="">⚡ Skills and Abilities Unlocked</a></li><li class="list-group-item"><a href="#-side-quest-impact-on-main-quest" class="">📈 Side Quest Impact on Main Quest</a></li></ul></li><li class="list-group-item"><a href="#-integration-with-quest-network" class="">🔮 Integration with Quest Network</a><ul><li class="list-group-item"><a href="#parent-quest-enhancement" class="">Parent Quest Enhancement</a></li><li class="list-group-item"><a href="#unlocked-opportunities" class="">Unlocked Opportunities</a></li></ul></li><li class="list-group-item"><a href="#️-knowledge-graph" class="">🕸️ Knowledge Graph</a></li><li class="list-group-item"><a href="#quest-rewards-heading" class="">🎁 Rewards</a></li><li class="list-group-item"><a href="#quest-network-heading" class="">🕸️ Quest Network</a></li></ul>

      
    </nav>
  </div>
</div>
   


        </div>
        

        <!-- =============================== -->
        <!-- MAIN CONTENT BODY              -->
        <!-- =============================== -->
        <!-- Where the actual page content is rendered -->
        <div class="bd-content ps-lg-2">
            <link rel="stylesheet" href="/assets/css/quest-system.css">

<article class="quest-page" data-quest-permalink="/quests/codex/oh-my-zsh-terminal-enchantment/" data-quest-level="0010">
  <header class="quest-header" data-quest-level="0010" data-quest-type="side_quest">
  <div class="quest-header__badges"><a class="quest-badge quest-badge--level" href="/quests/0010/" aria-label="View all Level 0010 quests">
        <span class="quest-badge__icon">⭐</span>
        <span class="quest-badge__label">Lvl 0010</span></a><span class="quest-badge quest-badge--type quest-badge--type-side_quest">
        <span class="quest-badge__icon">⚔️</span>
        <span class="quest-badge__label">Side Quest</span>
      </span><span class="quest-badge quest-badge--difficulty quest-badge--difficulty-medium">
        🟡 Medium
      </span><span class="quest-badge quest-badge--time">
        <span class="quest-badge__icon" aria-hidden="true">🕐</span>
        45-60 minutes
      </span></div>

  <h1 class="quest-header__title">Oh-My-Zsh Terminal Enchantment: Shell Enhancement Magic</h1><p class="quest-header__lead">Enhance your terminal mastery with Oh-My-Zsh framework for improved productivity and visual appeal</p><dl class="quest-header__meta"><div class="quest-header__meta-item">
        <dt>Primary Tech</dt>
        <dd>🛠️ reference</dd>
      </div><div class="quest-header__meta-item">
        <dt>Skill Focus</dt>
        <dd>Fullstack</dd>
      </div><div class="quest-header__meta-item">
        <dt>Series</dt>
        <dd>Terminal Mastery Path</dd>
      </div><div class="quest-header__meta-item">
        <dt>Author</dt>
        <dd>Quest Master IT-Journey Team</dd>
      </div></dl>
</header>


  <div class="quest-page__body">
    <aside class="quest-page__aside">
      <aside class="quest-sidebar" aria-label="Quest tools">
  <nav class="quest-nav" aria-label="Quest breadcrumb and navigation">
  <ol class="quest-breadcrumb">
    <li><a href="/quests/home/">🏰 Overworld</a></li><li><a href="/quests/0010/">⭐ Level 0010</a></li><li aria-current="page">Oh-My-Zsh Terminal Enchantment: Shell Enhancement Magic</li>
  </ol>

  <div class="quest-nav__trail">
    <div class="quest-nav__prev"><span class="quest-nav__placeholder">No prerequisite</span></div>
    <div class="quest-nav__next"><a href="/quests/0010/">
          <span class="quest-nav__direction">↑ Back to level hub</span>
          <span class="quest-nav__title">Level 0010</span>
        </a></div>
  </div>
</nav>

  <section class="quest-progress" data-quest-progress data-quest-permalink="/quests/codex/oh-my-zsh-terminal-enchantment/" data-quest-level="0010" aria-labelledby="quest-progress-heading">
  <h2 id="quest-progress-heading" class="quest-section-heading">📈 Your Progress</h2>

  <div class="quest-progress-bar" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0" aria-label="Quest completion">
    <div class="quest-progress-bar__fill" style="width: 0%"></div>
    <span class="quest-progress-bar__label" data-quest-progress-label>Not started · 0%</span>
  </div>

  <div class="quest-progress__actions">
    <button type="button" class="quest-progress__toggle" data-quest-progress-toggle aria-pressed="false">
      <span class="quest-progress__toggle-icon" aria-hidden="true">⬜</span>
      <span class="quest-progress__toggle-label">Mark quest complete</span>
    </button>
    <button type="button" class="quest-progress__reset" data-quest-progress-reset>Reset</button>
  </div>

  <p class="quest-progress__hint">Your progress is stored in your browser only. Use <a href="/quests/inventory/">your inventory</a> to back it up.</p>
</section>

  <section class="quest-prerequisites" aria-labelledby="quest-prerequisites-heading">
  <h2 id="quest-prerequisites-heading" class="quest-section-heading">🗝️ Prerequisites</h2><div class="quest-prereq-group quest-prereq-group--knowledge">
      <h3>Knowledge requirements</h3>
      <ul><li>Completion of Terminal Navigation Mastery main quest</li><li>Understanding of shell concepts and terminal usage</li><li>Basic familiarity with command-line configuration</li></ul>
    </div><div class="quest-prereq-group quest-prereq-group--system">
      <h3>System requirements</h3>
      <ul><li>Zsh shell installed (default on macOS, installable on Linux/Windows)</li><li>Internet connection for downloading Oh-My-Zsh framework</li><li>Terminal emulator with customization support</li></ul>
    </div></section>
</aside>

    </aside>

    <div id="quest-content" class="quest-page__content">
      <p><em>Welcome, terminal navigator, to the Oh-My-Zsh Terminal Enchantment side quest! Having mastered the fundamental arts of command-line navigation, you’re now ready to transform your terminal from a simple tool into a powerful, visually enhanced development weapon.</em></p>

<p><em>This side quest builds directly upon your Terminal Navigation Mastery, adding themes, plugins, and productivity enhancements that will accelerate your development workflow and make your terminal experience both more efficient and more enjoyable.</em></p>

<h3 id="️-quest-network-position">🗺️ Quest Network Position</h3>

<pre><code class="language-mermaid">graph LR
    Parent[🏰 Terminal Navigation Mastery] --&gt; Current[⚔️ Oh-My-Zsh Enchantment]
    Fonts[⚔️ Nerd Font Enchantment] --&gt; Current
    Current --&gt; Advanced[🏰 Advanced Shell Scripting]
    Current --&gt; Automation[🏰 Terminal Automation]
    
    style Current fill:#ffd700
    style Parent fill:#87ceeb
    style Fonts fill:#ffd700
    style Advanced fill:#98fb98
</code></pre>

<p><strong>Relationship to Parent Quest</strong>:
This side quest enhances the Terminal Navigation Mastery main quest by adding:</p>
<ul>
  <li>Visual improvements through themes and customization</li>
  <li>Productivity enhancements via intelligent plugins</li>
  <li>Workflow optimization for development tasks</li>
  <li>Foundation for advanced terminal automation</li>
</ul>

<h2 id="-quest-objectives">🎯 Quest Objectives</h2>

<h3 id="primary-objectives-required-for-side-quest-completion">Primary Objectives (Required for Side Quest Completion)</h3>
<ul class="task-list">
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" /><strong>Framework Installation</strong> - Install Oh-My-Zsh using secure methods</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" /><strong>Theme Configuration</strong> - Apply and customize visual themes</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" /><strong>Plugin Integration</strong> - Install essential productivity plugins</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" /><strong>Workflow Enhancement</strong> - Demonstrate improved development efficiency</li>
</ul>

<h3 id="secondary-objectives-bonus-achievements">Secondary Objectives (Bonus Achievements)</h3>
<ul class="task-list">
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" /><strong>Custom Configuration</strong> - Create personalized .zshrc settings</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" /><strong>Plugin Development</strong> - Create or modify a custom plugin</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" /><strong>Theme Customization</strong> - Design personal theme variations</li>
</ul>

<h2 id="️-chapter-1-framework-installation-and-setup">🧙‍♂️ Chapter 1: Framework Installation and Setup</h2>

<p><em>Begin your terminal transformation by installing the Oh-My-Zsh framework safely and securely.</em></p>

<h3 id="️-secure-installation-process">🏗️ Secure Installation Process</h3>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c"># Download and examine the installation script</span>
wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh

<span class="c"># Review the script before execution (security best practice)</span>
less install.sh

<span class="c"># Execute the installation</span>
sh install.sh

<span class="c"># Verify successful installation</span>
<span class="nb">echo</span> <span class="nv">$ZSH</span>
<span class="nb">ls</span> ~/.oh-my-zsh/
</code></pre></div></div>

<h2 id="️-chapter-2-theme-mastery-and-visual-enhancement">🧙‍♂️ Chapter 2: Theme Mastery and Visual Enhancement</h2>

<p><em>Transform your terminal’s appearance with beautiful, functional themes.</em></p>

<h3 id="️-theme-configuration">🏗️ Theme Configuration</h3>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c"># Explore available themes</span>
<span class="nb">ls</span> ~/.oh-my-zsh/themes/

<span class="c"># Popular theme recommendations</span>
<span class="nv">ZSH_THEME</span><span class="o">=</span><span class="s2">"agnoster"</span>        <span class="c"># Clean, informative</span>
<span class="nv">ZSH_THEME</span><span class="o">=</span><span class="s2">"powerlevel10k"</span>   <span class="c"># Highly customizable</span>
<span class="nv">ZSH_THEME</span><span class="o">=</span><span class="s2">"spaceship"</span>       <span class="c"># Minimal and fast</span>

<span class="c"># Apply theme by editing .zshrc</span>
code ~/.zshrc  <span class="c"># Or use nano/vim</span>
<span class="nb">source</span> ~/.zshrc  <span class="c"># Reload configuration</span>
</code></pre></div></div>

<h2 id="️-chapter-3-plugin-integration-and-productivity-enhancement">🧙‍♂️ Chapter 3: Plugin Integration and Productivity Enhancement</h2>

<p><em>Unlock powerful terminal capabilities through strategic plugin integration.</em></p>

<h3 id="️-essential-plugin-setup">🏗️ Essential Plugin Setup</h3>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c"># Edit .zshrc to add plugins</span>
<span class="nv">plugins</span><span class="o">=(</span>
    git
    docker
    kubectl
    vscode
    web-search
    jsontools
    colored-man-pages
    zsh-autosuggestions
    zsh-syntax-highlighting
<span class="o">)</span>

<span class="c"># Install external plugins</span>
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting

<span class="c"># Reload configuration</span>
<span class="nb">source</span> ~/.zshrc
</code></pre></div></div>

<h2 id="-side-quest-challenges">🎮 Side Quest Challenges</h2>

<h3 id="challenge-1-complete-enhancement-setup--25-minutes">Challenge 1: Complete Enhancement Setup (🕐 25 minutes)</h3>
<p><strong>Objective</strong>: Transform your terminal with themes and plugins</p>

<p><strong>Requirements</strong>:</p>
<ul class="task-list">
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Install Oh-My-Zsh framework securely</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Configure a theme that enhances productivity</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Install at least 5 useful plugins</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Demonstrate improved workflow efficiency</li>
</ul>

<h3 id="challenge-2-custom-configuration-creation--20-minutes">Challenge 2: Custom Configuration Creation (🕐 20 minutes)</h3>
<p><strong>Objective</strong>: Create personalized terminal configuration</p>

<p><strong>Requirements</strong>:</p>
<ul class="task-list">
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Design custom aliases for common development tasks</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Configure environment variables for your workflow</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Create custom functions for repetitive operations</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Document your configuration for future reference</li>
</ul>

<h2 id="-quest-rewards-and-achievements">🎁 Quest Rewards and Achievements</h2>

<h3 id="-achievement-badges-earned">🏆 Achievement Badges Earned</h3>
<ul>
  <li><strong>Terminal Enchanter</strong> - Master of shell enhancement and customization</li>
  <li><strong>Interface Artisan</strong> - Creator of beautiful, functional terminal environments</li>
</ul>

<h3 id="-skills-and-abilities-unlocked">⚡ Skills and Abilities Unlocked</h3>
<ul>
  <li><strong>Advanced Terminal Customization</strong> - Ability to optimize terminal for specific workflows</li>
  <li><strong>Enhanced Development Productivity</strong> - Improved efficiency through intelligent automation</li>
</ul>

<h3 id="-side-quest-impact-on-main-quest">📈 Side Quest Impact on Main Quest</h3>
<p>This side quest enhances your Terminal Navigation Mastery by:</p>
<ul>
  <li>Adding visual feedback that makes navigation more intuitive</li>
  <li>Providing productivity shortcuts that accelerate common operations</li>
  <li>Creating a more enjoyable development environment</li>
  <li>Establishing foundation for advanced automation workflows</li>
</ul>

<h2 id="-integration-with-quest-network">🔮 Integration with Quest Network</h2>

<h3 id="parent-quest-enhancement">Parent Quest Enhancement</h3>
<p>Completing this side quest adds significant value to your Terminal Navigation Mastery:</p>
<ul>
  <li><strong>Visual Enhancement</strong>: Icons and colors provide immediate feedback</li>
  <li><strong>Productivity Boost</strong>: Plugins automate common terminal tasks</li>
  <li><strong>Workflow Integration</strong>: Better integration with development tools</li>
  <li><strong>Customization Foundation</strong>: Basis for further terminal optimization</li>
</ul>

<h3 id="unlocked-opportunities">Unlocked Opportunities</h3>
<p>Success in this side quest unlocks:</p>
<ul>
  <li><strong>Advanced Shell Scripting</strong>: Enhanced scripting capabilities with Oh-My-Zsh features</li>
  <li><strong>Terminal Automation</strong>: Workflow automation using enhanced terminal features</li>
  <li><strong>Custom Plugin Development</strong>: Create specialized tools for your development needs</li>
</ul>

<hr />

<p><em>Excellent work, terminal enchanter! You have successfully enhanced your command-line mastery with the power of Oh-My-Zsh. Your terminal is now not just a tool, but a personalized development weapon that reflects your style and accelerates your productivity.</em></p>

<p><em>This side quest has transformed your basic terminal navigation skills into an enhanced development environment. You’re now ready to tackle advanced terminal challenges or continue with other foundational quests in your chosen learning path.</em></p>

<p><strong>Side Quest Completed: Oh-My-Zsh Terminal Enchantment</strong> ⚔️✨<br />
<em>Your enhanced terminal powers await your next adventure!</em></p>

<h2 id="️-knowledge-graph">🕸️ Knowledge Graph</h2>

<p><em>Structured wiki-links connect this quest to the IT-Journey knowledge graph. Open the <a href="/docs/obsidian/graph/">Obsidian Graph View</a> to explore connections.</em></p>

<p><strong>Level hub:</strong> [[Level 0010 - Terminal Enhancement &amp; Shell Mastery]]
<strong>Overworld:</strong> [[🏰 Overworld - Master Quest Map]]
<strong>Obsidian docs:</strong> [[Obsidian Knowledge Graph and Wiki Links]]</p>



      <section class="quest-rewards" aria-labelledby="quest-rewards-heading">
  <h2 id="quest-rewards-heading" class="quest-section-heading">🎁 Rewards</h2><div class="quest-rewards__xp">
      <span class="quest-xp-icon" aria-hidden="true">⚡</span>
      <span class="quest-xp-value">75 XP</span>
    </div><div class="quest-rewards__group">
      <h3>Badges</h3>
      <ul class="quest-badge-list"><li class="quest-reward-badge">⚔️ Terminal Enchanter - Master of shell enhancement</li><li class="quest-reward-badge">🎨 Interface Artisan - Creator of beautiful terminal environments</li></ul>
    </div><div class="quest-rewards__group">
      <h3>Skills unlocked</h3>
      <ul><li>🛠️ Advanced Terminal Customization</li><li>🎯 Enhanced Development Productivity</li></ul>
    </div></section>

      <section class="quest-page__network" aria-labelledby="quest-network-heading">
        <h2 id="quest-network-heading" class="quest-section-heading">🕸️ Quest Network</h2>
        <!--
  quest-graph.html — Level-filtered quest dependency graph (Mermaid)
  ===================================================================
  File: _includes/content/quest-graph.html
  Purpose: Renders a Mermaid flowchart of quest dependencies, optionally
           filtered to a single binary level.

  Parameters:
    include.level   (optional) — 4-digit binary level string, e.g. "0001".
                    Omit to show the full cross-level graph (may be large).

  Usage:
    {% include content/quest-graph.html %}
    {% include content/quest-graph.html level="0001" %}

  Dependencies:
    - assets/data/quest-network.json (generated by scripts/quest/build-quest-network.py)
    - Mermaid JS (loaded by the theme)
-->



<div class="quest-graph-container my-3" id="quest-graph-0010">
  <div id="quest-mermaid-0010" class="mermaid">
    graph TD
    loading(["Loading quest graph…"])
  </div>
</div>

<script>
(function () {
  var levelFilter = "0010";
  var containerId = "quest-mermaid-0010";
  var el = document.getElementById(containerId);
  if (!el) return;

  var dataUrl = "/assets/data/quest-network.json";

  fetch(dataUrl)
    .then(function (r) { return r.json(); })
    .then(function (data) {
      var nodes = levelFilter
        ? data.nodes.filter(function (n) { return n.level === levelFilter; })
        : data.nodes;

      if (nodes.length === 0) {
        el.innerHTML = "<p class=\"text-muted\">No quests found for this level.</p>";
        return;
      }

      var nodeIds = new Set(nodes.map(function (n) { return n.id; }));
      var edges = data.edges.filter(function (e) {
        return nodeIds.has(e.source) && nodeIds.has(e.target);
      });

      // Safe Mermaid node identifier
      function safeid(id) {
        return id.replace(/[^a-zA-Z0-9]/g, "_").replace(/^_+|_+$/, "");
      }

      // Difficulty → color class
      var diffColors = {
        "\uD83D\uDFE2": "#4caf50",  // 🟢 Easy
        "\uD83D\uDFE1": "#ff9800",  // 🟡 Medium
        "\uD83D\uDD34": "#f44336",  // 🔴 Hard
        "\u2694\uFE0F": "#9c27b0",  // ⚔️ Epic
      };
      var levelColors = {
        "0000": "#388E3C", "0001": "#1565C0", "0010": "#6A1B9A",
        "0011": "#E65100", "0100": "#B71C1C", "0101": "#00838F",
        "0110": "#558B2F", "0111": "#BF360C", "1000": "#37474F",
        "1001": "#4527A0", "1010": "#00695C", "1011": "#F57F17",
        "1100": "#880E4F", "1101": "#1B5E20", "1110": "#0D47A1",
        "1111": "#212121",
      };

      var diagram = "flowchart TD\n";

      // Class definitions per level
      Object.entries(levelColors).forEach(function (kv) {
        diagram += "  classDef level" + kv[0] + " fill:" + kv[1] + ",stroke:#fff,color:#fff,rx:4px\n";
      });
      diagram += "  classDef side_quest stroke-dasharray:5 5\n";

      // Nodes
      nodes.forEach(function (n) {
        var nid   = safeid(n.id);
        var label = (n.title || n.id).replace(/"/g, "'").substring(0, 45);
        var shape = n.type === "side_quest" ? "((" + label + "))" : "[" + label + "]";
        diagram += "  " + nid + shape + "\n";
        diagram += "  click " + nid + " \"" + n.id + "\" \"Open quest\"\n";
      });

      // Edges
      edges.forEach(function (e) {
        var src = safeid(e.source);
        var tgt = safeid(e.target);
        var arrow = e.kind === "required" ? " --> " : " -.-> ";
        diagram += "  " + src + arrow + tgt + "\n";
      });

      // Class assignments
      nodes.forEach(function (n) {
        var nid = safeid(n.id);
        if (n.level && levelColors[n.level]) {
          diagram += "  class " + nid + " level" + n.level + "\n";
        }
        if (n.type === "side_quest") {
          diagram += "  class " + nid + " side_quest\n";
        }
      });

      el.textContent = diagram;

      // Re-render Mermaid if already loaded
      if (window.mermaid) {
        try {
          mermaid.init(undefined, el);
        } catch (err) {
          console.warn("Mermaid init error:", err);
        }
      }
    })
    .catch(function (err) {
      el.innerHTML = "<p class=\"text-muted\">Quest graph unavailable.</p>";
      console.warn("quest-graph: failed to load network data", err);
    });
})();
</script>

        <!--
  quest-backlinks.html — Quests that depend on (link to) the current page
  ========================================================================
  File: _includes/content/quest-backlinks.html
  Purpose: Displays a list of quests that list the current page as a dependency
           (required, recommended, or unlocked), providing discovery of
           "what to do next" or "what requires this."

  Parameters:
    include.permalink   (optional) — override the URL to look up.
                        Defaults to page.permalink.
    include.heading     (optional) — section heading text.
                        Default: "Referenced by"
    include.kinds       (optional) — comma-separated edge kinds to include.
                        Options: required,recommended,unlocks
                        Default: "required,recommended"

  Usage:
    {% include content/quest-backlinks.html %}
    {% include content/quest-backlinks.html heading="Quests that require this" kinds="required" %}

  Dependencies:
    - assets/data/quest-network.json (generated by scripts/quest/build-quest-network.py)
-->







<section class="quest-backlinks mt-3" aria-label="Referenced by">
  <h5 class="h6 text-muted border-bottom pb-1 mb-2">
    <i class="bi bi-diagram-3 me-1" aria-hidden="true"></i>Referenced by
  </h5>
  <ul class="list-unstyled mb-0" id="quest-backlinks--quests-codex-oh-my-zsh-terminal-enchantment-">
    <li class="text-muted fst-italic small">Loading…</li>
  </ul>
</section>

<script>
(function () {
  var targetUrl   = "/quests/codex/oh-my-zsh-terminal-enchantment/";
  var kindsFilter = ["required","recommended"];
  var listId      = "quest-backlinks--quests-codex-oh-my-zsh-terminal-enchantment-";
  var listEl      = document.getElementById(listId);
  if (!listEl) return;

  // Normalise URL (ensure trailing slash)
  function norm(u) { return u && !u.endsWith("/") ? u + "/" : u || ""; }
  targetUrl = norm(targetUrl);

  fetch("/assets/data/quest-network.json")
    .then(function (r) { return r.json(); })
    .then(function (data) {
      var nodeMap = {};
      data.nodes.forEach(function (n) { nodeMap[norm(n.id)] = n; });

      var backlinks = data.edges
        .filter(function (e) {
          return norm(e.target) === targetUrl &&
                 (kindsFilter.length === 0 || kindsFilter.indexOf(e.kind) !== -1);
        })
        .map(function (e) {
          return { edge: e, node: nodeMap[norm(e.source)] };
        })
        .filter(function (item) { return !!item.node; });

      if (backlinks.length === 0) {
        listEl.innerHTML =
          "<li class=\"text-muted fst-italic small\">No quests link to this page yet.</li>";
        return;
      }

      var kindLabel = { required: "requires", recommended: "recommends", unlocks: "unlocks" };
      var diffIcon  = function (d) {
        if (!d) return "";
        if (d.indexOf("Easy")   !== -1) return "\uD83D\uDFE2 ";
        if (d.indexOf("Medium") !== -1) return "\uD83D\uDFE1 ";
        if (d.indexOf("Hard")   !== -1) return "\uD83D\uDD34 ";
        if (d.indexOf("Epic")   !== -1) return "\u2694\uFE0F ";
        return "";
      };

      listEl.innerHTML = backlinks.map(function (item) {
        var n = item.node;
        var e = item.edge;
        var label = kindLabel[e.kind] || e.kind;
        return [
          "<li class=\"mb-1\">",
          "  <a href=\"" + n.id + "\" class=\"text-decoration-none\">" + diffIcon(n.difficulty) + n.title + "</a>",
          "  <small class=\"text-muted ms-1\">",
          "    &mdash; Level " + (n.level || "?") + " " + (n.type || "").replace(/_/g, " "),
          "    &bull; <em>" + label + " this quest</em>",
          "  </small>",
          "</li>"
        ].join("\n");
      }).join("\n");
    })
    .catch(function (err) {
      listEl.innerHTML = "";
      console.warn("quest-backlinks: failed to load network data", err);
    });
})();
</script>

      </section>
    </div>
  </div>
</article>

<script src="/assets/js/quest-progress.js" defer></script>

        </div>
      </main>
    </div>
  </main>
</article>

Quest Discovery and Recommendation System

// quest-engine.js - Quest recommendation and mapping system
class QuestEngine {
  constructor(questData) {
    this.quests = questData;
    this.questMap = this.buildQuestMap();
  }
  
  buildQuestMap() {
    const map = new Map();
    this.quests.forEach(quest => {
      map.set(quest.permalink, {
        ...quest,
        prerequisites: this.resolveQuestReferences(quest.quest_dependencies?.required_quests || []),
        unlocks: this.resolveQuestReferences(quest.quest_dependencies?.unlocks_quests || []),
        children: this.resolveQuestReferences(quest.quest_relationships?.child_quests || []),
        parent: quest.quest_relationships?.parent_quest || null
      });
    });
    return map;
  }
  
  getAvailableQuests(completedQuests) {
    return Array.from(this.questMap.values()).filter(quest => {
      // Check if all prerequisites are completed
      const prerequisitesMet = quest.prerequisites.every(prereq => 
        completedQuests.includes(prereq.permalink)
      );
      
      // Not already completed
      const notCompleted = !completedQuests.includes(quest.permalink);
      
      return prerequisitesMet && notCompleted;
    });
  }
  
  getRecommendedNextQuests(currentQuest, completedQuests) {
    const quest = this.questMap.get(currentQuest);
    if (!quest) return [];
    
    // Get unlocked quests that are available
    return quest.unlocks.filter(unlock => {
      const unlockQuest = this.questMap.get(unlock.permalink);
      return this.isQuestAvailable(unlockQuest, completedQuests);
    });
  }
  
  generateQuestPath(startQuest, targetQuest) {
    // Implement pathfinding algorithm to find learning path
    // between any two quests in the network
  }
  
  validateQuestNetwork() {
    // Check for circular dependencies, orphaned quests, etc.
    const issues = [];
    
    this.questMap.forEach((quest, permalink) => {
      // Check for circular dependencies
      if (this.hasCircularDependency(permalink)) {
        issues.push(`Circular dependency detected for ${permalink}`);
      }
      
      // Check for broken references
      quest.prerequisites.forEach(prereq => {
        if (!this.questMap.has(prereq.permalink)) {
          issues.push(`Broken prerequisite reference: ${prereq.permalink} in ${permalink}`);
        }
      });
    });
    
    return issues;
  }
}

// Usage example
const questEngine = new QuestEngine(questData);
const availableQuests = questEngine.getAvailableQuests(userCompletedQuests);
const recommendations = questEngine.getRecommendedNextQuests(currentQuest, userCompletedQuests);
const networkIssues = questEngine.validateQuestNetwork();

CSS Styling for Quest Types

/* quest-styles.css - Visual styling for different quest types */

.quest {
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  border-left: 4px solid;
}

.quest.main_quest {
  border-left-color: #87ceeb;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.quest.side_quest {
  border-left-color: #ffd700;
  background: linear-gradient(135deg, #fffacd 0%, #fff8dc 100%);
}

.quest.bonus_quest {
  border-left-color: #ff69b4;
  background: linear-gradient(135deg, #ffe4e1 0%, #ffc0cb 100%);
}

.quest.epic_quest {
  border-left-color: #9370db;
  background: linear-gradient(135deg, #f8f8ff 0%, #e6e6fa 100%);
  box-shadow: 0 4px 8px rgba(147, 112, 219, 0.3);
}

.quest-network {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

.quest-metadata {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0.5rem 0;
}

.quest-type {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
}

.quest-type.main_quest {
  background: #87ceeb;
  color: white;
}

.quest-type.side_quest {
  background: #ffd700;
  color: #333;
}

.quest-type.bonus_quest {
  background: #ff69b4;
  color: white;
}

.quest-type.epic_quest {
  background: #9370db;
  color: white;
}

This comprehensive example demonstrates how the enhanced quest hierarchy system creates a sophisticated, interconnected learning ecosystem that guides learners through structured progression while maintaining flexibility for different learning styles and goals. The combination of clear quest types, dependency mapping, and visual network diagrams transforms the IT-Journey platform into a truly gamified educational adventure.

🕸️ Knowledge Graph

Structured wiki-links connect this quest to the IT-Journey knowledge graph. Open the Obsidian Graph View to explore connections.

Level hub: [[Level 0000 - Foundation & Init World]] Overworld: [[🏰 Overworld - Master Quest Map]] Obsidian docs: [[Obsidian Knowledge Graph and Wiki Links]]

🕸️ Quest Network

graph TD loading(["Loading quest graph…"])