ai-repo-adventures

DanWahlin/ai-repo-adventures

3.2

If you are the rightful owner of ai-repo-adventures and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Model Context Protocol (MCP) server is a versatile tool designed to transform code repositories into interactive adventures, providing an engaging way to explore and understand complex codebases.

Tools
4
Resources
0
Prompts
0

AI Repo Adventures

Adventure Awaits

A fun, Model Context Protocol (MCP) server and/or HTML generator that transforms code repositories into interactive adventures! Explore codebases through engaging stories with themes and characters that represent different technologies and architectural components.

Features

๐ŸŽฎ Story-based Code Exploration - Turn learning about codebases into a "choose your own adventure" story ๐Ÿ“š Educational Analogies - Complex technical concepts explained through relatable story elements
๐ŸŒŸ Multiple Themes - Choose from Space, Medieval, or Ancient Civilization themes ๐Ÿค– Character-Based Learning - Meet characters that represent different technologies (Database Dragons, API Messengers, etc.) ๐Ÿ” Choose Your Own Adventure - Interactive exploration paths through the codebase ๐ŸŒ HTML Adventure Generation - Export your adventures as beautiful, standalone HTML websites ๐Ÿš€ Auto-Launch Web Server - Automatically starts a local server and opens your adventure in the browser ๐ŸŽจ Themed Styling - Rich CSS themes with gradient titles, code highlighting, and responsive design

How It Works

  1. Start Adventure - The server analyzes your project using repomix and presents theme options
  2. Choose Theme - Select from Space Exploration, Mythical Kingdom, or Ancient Civilization
  3. Explore Quests - Follow dynamically generated quest paths through your codebase
  4. View Progress - Track your exploration progress and see completed areas
  5. Learn Through Story - Understand complex systems through engaging LLM-generated narratives
  6. Export to HTML - Generate beautiful web adventures for sharing or offline exploration

Architecture Flow

graph TD
    A[MCP Server Package] -->|start_adventure| B[Core: RepoAnalyzer]
    B --> C[Generate Repomix Content]
    C --> D[Return Theme Options]
    
    A -->|choose_theme| E[Core: AdventureManager]
    E --> F[Core: StoryGenerator]
    F --> G[Load adventure.config.json]
    G --> H[Core: LLM Client]
    H --> I[Generate Story + Quests]
    I --> J[Return Themed Story]
    
    A -->|explore_quest| K[Core: Find Quest]
    K --> L[Core: Generate Targeted Content]
    L --> M[Core: LLM Quest Content]
    M --> N[Core: Update Progress]
    N --> O[Return Quest Details]
    
    A -->|view_progress| P[Core: Get Progress State]
    P --> Q[Return Completion Stats]
    
    R[Generator Package] --> E
    R --> S[Generator: TemplateEngine]
    S --> T[Generator: Generate Themed CSS]
    S --> U[Generator: Format Markdown Content]
    R --> V[Generator: Copy GitHub Logos]
    R --> W[Generator: Build Quest Pages]
    R --> X[Generator: Auto-Launch Server]
    R --> Y[Generator: Open Browser]
    
    style B fill:#e8f5e8
    style E fill:#fff3e0
    style H fill:#e1f5fe
    style R fill:#f3e5f5
    style S fill:#e8f5e8

๐Ÿ” Project Context Gathering & LLM Integration

Data Flow Architecture

graph TD
    A[User: start_adventure] --> B[Core: RepoAnalyzer]
    B --> C[Repomix CLI]
    C --> D[Complete Codebase Content]
    
    B --> E[adventure.config.json]
    E --> F[Adventure Guidance]
    
    D --> G[Core: LLM Prompt Builder]
    F --> G
    
    G --> H[Core: LLM API]
    H --> I[Generated Story & Quests]
    
    J[Generator: HTML CLI] --> K[Core: AdventureManager]
    K --> L[Core: StoryGenerator] 
    L --> H
    J --> M[Generator: TemplateEngine]
    M --> N[Generator: Theme CSS Files]
    M --> O[Generator: HTML Templates]
    J --> P[Generator: Markdown Formatter]
    P --> Q[Generator: Code Highlighting]
    P --> R[Generator: File Path Links]
    J --> S[Generator: HTTP Server]
    J --> T[Generator: Auto Browser Launch]
    
    U[Core: Input Validator] --> B
    U --> K
    V[Core: Cache System] --> C
    V --> H
    W[Core: Emoji Sanitizer] --> J
    
    style H fill:#e1f5fe
    style J fill:#f3e5f5
    style N fill:#e8f5e8
    style V fill:#fff3e0

Phase 1: Project Analysis & Context Gathering

Step 1: Initial Project Scan

Location: packages/core/src/analyzer/repo-analyzer.ts

When start_adventure is called, the system:

  1. Executes Repomix CLI as a subprocess (npx repomix)
  2. Captures stdout containing the entire codebase structure and content
  3. Caches result with SHA256 hash for 5-minute reuse

Repomix Output Structure:

# Project Summary
- Files: 50
- Languages: TypeScript (85%), JavaScript (15%)

## File: src/server.ts
```typescript
class RepoAdventureServer {
  constructor() { ... }
  setupHandlers() { ... }
}

// ... continues for ALL files in the project


#### Step 2: Quest Config Loading
**Location:** `packages/core/src/shared/adventure-config.ts`

Optionally loads `adventure.config.json` from the project root, which provides:
- Predefined quest titles and descriptions
- Important files and functions to highlight
- Workshop-style exploration guidance

### Phase 2: LLM Prompt Construction

#### What Gets Sent to LLM for Initial Story Generation

The system sends a comprehensive prompt containing:

1. **Complete Repomix Output** - Every file in the project with full content
2. **Quest Config Guidance** (if available) - Predefined quests with highlighted functions
3. **Theme Guidelines** - Vocabulary, metaphors, and style rules for the selected theme
4. **Critical Instructions** - Rules for code authenticity and story structure

**Example prompt structure:**
```markdown
You are a technical education specialist creating story-based workshops...

## Complete Codebase
[Full repomix output with all files]

## Quest Guidance
Quest: "Core MCP Server"
Files:
    File: src/server.ts
    Key Functions:
      - RepoAdventureServer.setupHandlers: Registers handlers
      [... more highlights]

## Theme Guidelines
[Space/Mythical/Ancient vocabulary and mappings]

## Response Format
Return JSON with story and adventures array
LLM Response

The LLM generates:

  • A 2-3 paragraph themed story introducing the codebase
  • 2-6 dynamic quests based on project complexity
  • Each quest includes specific files to explore

Phase 3: Individual Quest Content Generation

What Gets Sent for Each Quest

When exploring a specific quest:

  1. Targeted File Content - Only files relevant to that quest
  2. Workshop Highlights - Specific functions to explore step-by-step
  3. Theme Continuity - Same vocabulary for consistent narrative
  4. Code Authenticity Rules - Must use actual code from files

Example quest prompt:

Continue the space-themed exploration for: "Command Protocols"

## Complete Codebase
[Only relevant files for this quest]

## Workshop Highlights (Focus Areas)
Create a step-by-step workshop for:
- RepoAdventureServer.constructor: Creates MCP server
- RepoAdventureServer.setupHandlers: Registers handlers
[... more function highlights]

## Response Format
Return JSON with quest narrative, code snippets, and hints

Quest Configuration System

adventure.config.json Structure

Projects can include an adventure.config.json file to guide story and quest generation:

{
  "quests": [
    {
      "title": "Core MCP Server",
      "description": "Explore the MCP protocol implementation",
      "files": [
        {
          "path": "src/server.ts",
          "description": "Main MCP server",
          "highlights": [
            {
              "name": "RepoAdventureServer.setupHandlers",
              "description": "Registers ListTools and CallTool handlers"
            }
          ]
        }
      ]
    }
  ]
}

This configuration:

  • Guides quest titles toward important code areas
  • Highlights key functions and members for workshop-style exploration
  • Provides context for more accurate story generation

Context Flow Summary

ComponentPurposeWhat It Adds to LLM Context
RepomixFull codebase analysisActual code, file structure, all content
Quest ConfigGuidance structureImportant functions to highlight, suggested titles
Theme SystemNarrative consistencyVocabulary, metaphors, character types
Workshop HighlightsEducational focusStep-by-step exploration of key functions

Optimization Features

  • Targeted Content: Quests only receive relevant file content
  • Smart Caching: Repomix output cached for 5 minutes, LLM responses cached
  • Config Loading: Loaded once per session if available
  • Fallback System: Works without LLM using template-based stories

Installation

npm install
npm run build

๐Ÿš€ Automated Releases

This project uses Lerna with conventional commits for automated versioning and publishing to npm.

๐Ÿ“ฆ Available Packages

  • @codewithdan/ai-repo-adventure-generator - CLI tool for generating HTML adventure websites
  • @codewithdan/ai-repo-adventure-mcp - Model Context Protocol server for interactive code exploration

๐Ÿ”„ Release Process

Releases are automatically triggered when you push to main with conventional commit messages:

# Examples of commits that trigger releases:
git commit -m "feat(generator): add new theme support"     # Minor version bump
git commit -m "fix(mcp): resolve connection issue"         # Patch version bump  
git commit -m "feat(core)!: breaking API change"          # Major version bump

# Non-releasing commits:
git commit -m "docs: update README"                        # No version bump
git commit -m "test: add unit tests"                       # No version bump

๐Ÿท๏ธ Manual Release Commands

npm run release:check        # See what packages have changed
npm run version:patch        # Manual patch version bump
npm run version:minor        # Manual minor version bump  
npm run version:major        # Manual major version bump

See for complete conventional commit guidelines.

Quick HTML Adventure Test

Generate a beautiful HTML adventure website with just one command:

npm run test:html                      # Default: mythical theme
npm run test:html -- --theme=space    # Specify theme (space, mythical, ancient, developer)
npm run test:html -- --theme=all      # Generate all themes at once

This will:

  • ๐Ÿงช Run a minimal test using only 2 LLM calls (1 story + 1 quest)
  • ๐ŸŒ Generate a complete HTML adventure website in tests/public/
  • ๐Ÿš€ Automatically start a local HTTP server on port 8080
  • ๐ŸŽฏ Open your browser to view the adventure immediately
  • ๐ŸŽจ Include full themed CSS styling and responsive design
  • ๐ŸŒˆ With --theme=all, generates complete websites for all 4 themes

Perfect for: Testing the system, sharing adventures, or creating standalone exploration websites.

Configuration

LLM Setup (Optional - Enables Dynamic Story Generation)

The server supports multiple LLM providers through a generic OpenAI-compatible client:

  1. Choose Your Provider and copy the configuration:

    cp .env.example .env
    
  2. Configure Your Preferred Provider:

    ๐Ÿ†“ GitHub Models (Free tier available - but limited):

    GITHUB_TOKEN=your_github_token_here
    LLM_BASE_URL=https://models.inference.ai.azure.com
    LLM_MODEL=gpt-4o-mini
    

    ๐Ÿ”ฅ OpenAI (Direct):

    LLM_API_KEY=your_openai_key_here
    LLM_BASE_URL=https://api.openai.com/v1
    LLM_MODEL=gpt-4o-mini
    

    ๐Ÿข Azure OpenAI:

    LLM_API_KEY=your_azure_key_here
    LLM_BASE_URL=https://your-resource.openai.azure.com/openai/deployments/your-deployment
    LLM_MODEL=gpt-4o
    LLM_API_VERSION=2025-01-01-preview
    

    ๐Ÿ  Local Ollama:

    LLM_BASE_URL=http://localhost:11434/v1
    LLM_API_KEY=ollama
    LLM_MODEL=llama3.2
    
  3. Fine-tune Settings (Optional):

    LLM_TEMPERATURE=1.0      # Creativity (0.0-2.0)
    LLM_MAX_TOKENS=1000      # Response length
    

๐Ÿ“ Model Recommendations:

  • Best Creative Writing: gpt-4o
  • Most Cost-Effective: gpt-4o-mini
  • Local/Private: llama3.2 (via Ollama)

Testing

# Core MCP functionality tests
npm test                 # Run comprehensive test suite
npm run test:unit        # Core algorithm and component tests
npm run test:integration # LLM integration tests
npm run test:simple      # Basic MCP workflow test
npm run test:real-world  # Full MCP integration test

# HTML generation tests
npm run test:html        # Generate HTML adventure with auto-launch

# Interactive testing
npm run chat             # Interactive terminal test MCP client

Available Tools

start_adventure

Analyzes your code repository using repomix and begins an interactive, gamified exploration experience. Presents theme options for your adventure.

Parameters:

  • projectPath (optional): Path to project directory (defaults to current directory)

choose_theme

Generates a personalized, LLM-powered narrative adventure based on your selected theme. Creates dynamic adventures based on your actual project structure.

Parameters:

  • theme: "space", "mythical", "ancient", "developer" (also accepts numbers: 1, 2, 3, 4)

explore_quest

Executes a chosen quest to explore specific parts of your codebase through LLM-generated narrative content. Reveals code insights wrapped in themed storytelling.

Parameters:

  • choice: Quest number (1, 2, 3) or quest title/partial title

view_progress

Displays comprehensive progress tracking for your code exploration adventure. Shows completion percentage, completed adventures, and remaining areas to explore.

Parameters:

  • None required - automatically tracks state from previous tool calls

HTML Adventure Generator

Create beautiful, standalone HTML adventure websites from your code exploration:

Interactive CLI Generator

npm run generate-html

Features:

  • ๐ŸŽจ Choose from Space, Mythical, Ancient, Developer, or Custom themes
  • ๐Ÿ“ Choose the output directory
  • ๐ŸŒ Complete HTML website with CSS and assets
  • ๐Ÿš€ Auto-launch local server and browser
  • ๐Ÿ“ฑ Responsive design for all devices
  • ๐ŸŽฏ GitHub integration with automatic file linking

Command-Line Options

npm run generate-html [options]

Options:
  --theme              Theme: space, mythical, ancient, developer, custom, or all
  --output             Output directory (default: ./public)
  --overwrite          Overwrite existing files without prompting
  --serve              Start HTTP server and open browser after generation
  --port               HTTP server port (default: 8080)
  --max-quests         Limit number of quests for testing (default: unlimited)
  --log-llm-output     Save LLM outputs to files for debugging
  --help, -h           Show help message

Examples:
  npm run generate-html                              # Interactive mode
  npm run generate-html --theme space --output ./public --overwrite --serve
  npm run generate-html --theme all --output ./docs  # Generate all themes
  npm run generate-html --theme mythical --max-quests 2 --log-llm-output

Quick Test Generator

npm run test:html                    # Generate single theme (mythical)
npm run test:html -- --theme=all    # Generate all themes

Perfect for:

  • ๐Ÿงช Testing HTML generation (only 2 LLM calls per theme)
  • ๐ŸŽฏ Quick development iteration
  • ๐Ÿ“‹ Creating demo adventures for all themes at once
  • ๐Ÿš€ Sharing complete adventure collections

HTML Generator Features

The HTML generator (packages/generator/src/cli/html-generator.ts) creates fully-featured adventure websites:

Core Capabilities:

  • Theme System: 5 built-in themes with custom theme support
  • Template Engine: Dynamic HTML generation with variable substitution
  • Markdown Processing: Full markdown to HTML conversion with code highlighting using Prism.js
  • File Path Linking: Automatic GitHub URL generation for code files
  • Responsive Design: Mobile-first CSS with gradient styling
  • Navigation System: Quest-to-quest navigation with progress tracking

Generated Structure:

output-directory/
โ”œโ”€โ”€ index.html              # Main adventure homepage with theme selection
โ”œโ”€โ”€ [theme]/                # Individual theme directories (space, mythical, ancient, developer)
โ”‚   โ”œโ”€โ”€ index.html          # Theme-specific adventure page with story
โ”‚   โ”œโ”€โ”€ quest-1.html        # Individual quest pages
โ”‚   โ”œโ”€โ”€ quest-2.html
โ”‚   โ”œโ”€โ”€ quest-3.html
โ”‚   โ””โ”€โ”€ assets/
โ”‚       โ”œโ”€โ”€ theme.css       # Combined theme + base + animations CSS
โ”‚       โ””โ”€โ”€ images/
โ”‚           โ”œโ”€โ”€ github-mark.svg       # Dark GitHub logo for light themes
โ”‚           โ”œโ”€โ”€ github-mark-white.svg # White GitHub logo for dark themes
โ”‚           โ””โ”€โ”€ [theme-specific-images] # Theme backgrounds and assets
โ””โ”€โ”€ assets/                 # Global assets shared across themes
    โ”œโ”€โ”€ theme.css          # Homepage styling
    โ””โ”€โ”€ images/            # Shared images and GitHub logos

Theme-Specific Features:

  • Dynamic Navbar: Shows repo name from adventure.config.json with GitHub logo
  • Responsive Design: GitHub logo positioned right, title aligned left
  • Theme-Aware Logos: Dark logos for light themes, white logos for dark themes
  • Consistent Footer: "Created using AI Repo Adventures" across all pages

Example Adventure Flow

1. start_adventure() 
   โ†’ Generates repomix content for your TypeScript/Node.js project
   โ†’ "๐ŸŒŸ Welcome to Repo Adventures! You've discovered 45 files of digital wisdom!"
   โ†’ "Choose Your Story Theme: 1. ๐Ÿš€ Space 2. ๐Ÿฐ Mythical 3. ๐Ÿ›๏ธ Ancient"

2. choose_theme("space")
   โ†’ LLM analyzes your repomix content and generates personalized story
   โ†’ "In the cosmic realm of API Service, the advanced Starship 'TypeScript' 
      navigates through 45 star systems..."
   โ†’ "Available Quests: 1. ๐Ÿงญ Navigation Protocols 2. ๐Ÿ“ก Communication Hub"

3. explore_quest("1")
   โ†’ LLM generates detailed quest content using actual code files
   โ†’ "As you enter the Navigation Control Center, you discover the sacred 
      algorithm that guides all requests..."
   โ†’ Shows real code snippets with explanations in space theme
   โ†’ "Progress: 33% complete (1/3 quests finished)"

4. view_progress()
   โ†’ "๐Ÿ“Š Quest Progress: 33% complete"
   โ†’ "โœ… Completed: Navigation Protocols"
   โ†’ "๐Ÿ—บ๏ธ Remaining: Communication Hub, System Diagnostics"

Monorepo Structure

packages/
โ”œโ”€โ”€ core/                           # @ai-repo-adventures/core (shared business logic)
โ”‚   โ””โ”€โ”€ src/
โ”‚       โ”œโ”€โ”€ adventure/              # Adventure generation system
โ”‚       โ”‚   โ”œโ”€โ”€ adventure-manager.ts   # Orchestrates adventure state and user interactions
โ”‚       โ”‚   โ””โ”€โ”€ story-generator.ts     # LLM-powered story and quest generation
โ”‚       โ”œโ”€โ”€ analyzer/               # Code analysis and repomix integration
โ”‚       โ”‚   โ””โ”€โ”€ repo-analyzer.ts    # Repository analysis and content generation
โ”‚       โ”œโ”€โ”€ llm/                    # LLM integration
โ”‚       โ”‚   โ””โ”€โ”€ llm-client.ts       # Multi-provider LLM client (OpenAI, Azure, Ollama, etc.)
โ”‚       โ””โ”€โ”€ shared/                 # Shared utilities and types
โ”‚           โ”œโ”€โ”€ types.ts            # Core type definitions
โ”‚           โ”œโ”€โ”€ theme.ts            # Theme system and validation
โ”‚           โ”œโ”€โ”€ config.ts           # Configuration and environment settings
โ”‚           โ”œโ”€โ”€ input-validator.ts  # Security and input validation
โ”‚           โ”œโ”€โ”€ emoji-validator.ts  # Emoji sanitization for HTML output
โ”‚           โ””โ”€โ”€ adventure-config.ts # Adventure configuration parser
โ”œโ”€โ”€ generator/                      # @codewithdan/ai-repo-adventure-generator (HTML CLI)
โ”‚   โ””โ”€โ”€ src/cli/
โ”‚       โ”œโ”€โ”€ html-generator.ts       # Interactive HTML adventure generator with CLI options
โ”‚       โ”œโ”€โ”€ template-engine.ts      # HTML template processor with variable substitution
โ”‚       โ”œโ”€โ”€ assets/                 # Static assets for HTML generation
โ”‚       โ”‚   โ””โ”€โ”€ images/             # GitHub logos and theme images
โ”‚       โ”œโ”€โ”€ templates/              # HTML templates for generation
โ”‚       โ””โ”€โ”€ themes/                 # CSS theme files
โ”‚           โ”œโ”€โ”€ space.css           # Space theme styling
โ”‚           โ”œโ”€โ”€ mythical.css        # Mythical theme styling
โ”‚           โ”œโ”€โ”€ ancient.css         # Ancient theme styling
โ”‚           โ”œโ”€โ”€ developer.css       # Developer theme styling
โ”‚           โ”œโ”€โ”€ custom.css          # Custom theme base
โ”‚           โ”œโ”€โ”€ base.css            # Base styling for all themes
โ”‚           โ””โ”€โ”€ animations.css      # CSS animations and transitions
โ””โ”€โ”€ mcp/                           # @codewithdan/ai-repo-adventure-mcp (MCP server)
    โ””โ”€โ”€ src/
        โ”œโ”€โ”€ server.ts              # Main MCP server entry point
        โ””โ”€โ”€ tools/                 # MCP tool definitions
            โ””โ”€โ”€ tools.ts           # 4 main tools: start_adventure, choose_theme, explore_quest, view_progress

tests/                             # Shared test suite
โ”œโ”€โ”€ unit/                          # Unit tests for individual components
โ””โ”€โ”€ integration/                   # Integration tests with LLM providers

.github/workflows/                 # Automated release pipeline
โ””โ”€โ”€ release.yml                    # Lerna + conventional commits automation

Contributing

Contributions welcome! This project uses conventional commits and automated releases.

๐Ÿš€ Getting Started

git clone https://github.com/danwahlin/ai-repo-adventures.git
cd ai-repo-adventures
npm install
npm run build
npm run test:unit

๐Ÿ“ Commit Message Format

Use conventional commits for automatic versioning:

feat(generator): add new theme support      # Minor version bump
fix(mcp): resolve connection issue          # Patch version bump  
feat(core)!: breaking API change           # Major version bump
docs: update README                         # No version bump

๐Ÿ—๏ธ Development Workflow

# Work on features
npm run build                    # Build all packages
npm run test:unit               # Run unit tests
npm run lint                    # Check code quality

# Test specific components
npm run test:simple             # Test MCP server
npm run test:html               # Test HTML generation
npm run chat                    # Interactive MCP client

๐Ÿ“ฆ Package Development

  • Core Package (packages/core/): Shared business logic and utilities
  • Generator Package (packages/generator/): HTML generation CLI tool
  • MCP Package (packages/mcp/): Model Context Protocol server

๐ŸŽฏ Areas for Contribution

  • ๐ŸŽจ New CSS themes and styling (packages/generator/src/cli/themes/)
  • ๐ŸŒ Additional language support in analysis
  • ๐Ÿ”ง New quest generation algorithms
  • ๐Ÿงช Additional test coverage
  • ๐Ÿ“– Documentation improvements

See for detailed contribution guidelines.

License

MIT

Prompt for adventure.config.json Generation

Run this in GitHub Copilot, Claude Code, or your favorite AI editor to generate an initial adventure.config.json file. This file is key to helping the LLM understand the project's structure and key components.


Analyze the overall project and determine key "adventure quest" paths to help people understand the monorepo structure and main functionality. Your results will go into the root of the project into a file named adventure.config.json. Focus on the packages/ structure and key integration points. Use the updated file paths as shown in the following JSON:

{ "quests": [ { "title": "MCP Server Interface", "description": "Understanding how users interact with the system through the 4 main MCP tools", "files": [ { "path": "packages/mcp/src/tools/tools.ts", "description": "The 4 main MCP tools that provide the user interface to the adventure system", "highlights": [ { "name": "start_adventure.handler", "description": "Analyzes repositories and presents theme options to users" }, { "name": "choose_theme.handler", "description": "Generates themed stories and adventures based on user selection" }, { "name": "explore_quest.handler", "description": "Executes individual quest exploration with progress tracking" }, { "name": "view_progress.handler", "description": "Shows completion stats and remaining quests" } ] } ] }, { "title": "Core Adventure Engine", "description": "The heart of the adventure generation system with LLM integration", "files": [ { "path": "packages/core/src/adventure/adventure-manager.ts", "description": "Orchestrates adventure state and manages user interactions", "highlights": [ { "name": "AdventureManager.initializeAdventure", "description": "Creates themed stories and quests using LLM" }, { "name": "AdventureManager.exploreQuest", "description": "Executes quest exploration with targeted content generation" } ] }, { "path": "packages/core/src/adventure/story-generator.ts", "description": "LLM-powered story and quest content generation", "highlights": [ { "name": "StoryGenerator.generateWithLLM", "description": "Generates themed narratives using multiple LLM providers" } ] } ] }, { "title": "HTML Adventure Generation", "description": "CLI tool for creating beautiful standalone HTML adventure websites", "files": [ { "path": "packages/generator/src/cli/html-generator.ts", "description": "Interactive HTML adventure generator with theme support and auto-launch", "highlights": [ { "name": "HTMLAdventureGenerator.generateAdventure", "description": "Main orchestrator for HTML website generation" }, { "name": "HTMLAdventureGenerator.generateThemeCSS", "description": "Creates themed CSS files with responsive design" } ] } ] } ] }

Show me what you plan to use for quests and files members before proceeding and doing any updates adventure.config.json. I'll review and provide feedback.