# ═══════════════════════════════════════════════════════ # Content Rules Configuration # ═══════════════════════════════════════════════════════ # Path to your content-rules.md file (auto-detected if not set) # Run '/myai-configure content-rules' to create one CONTENT_RULES_PATH=./content-rules.md # ═══════════════════════════════════════════════════════ # WordPress Configuration # ═══════════════════════════════════════════════════════ WORDPRESS_URL=https://your-wordpress-site.com WORDPRESS_USERNAME=your-username WORDPRESS_APP_PASSWORD=your-application-password # Optional: WordPress SSH for advanced administration WORDPRESS_SSH_HOST= WORDPRESS_SSH_USER= WORDPRESS_SSH_KEY_PATH= # ═══════════════════════════════════════════════════════ # PayloadCMS Configuration # ═══════════════════════════════════════════════════════ PAYLOADCMS_URL=https://your-payloadcms-site.com PAYLOADCMS_EMAIL=your-email@example.com PAYLOADCMS_PASSWORD=your-password # ═══════════════════════════════════════════════════════ # Coolify Deployment Configuration # ═══════════════════════════════════════════════════════ COOLIFY_URL=https://your-coolify-instance.com COOLIFY_API_KEY=your-coolify-api-key # ═══════════════════════════════════════════════════════ # Git Configuration (for commits and static site publishing) # ═══════════════════════════════════════════════════════ GIT_USER_NAME=Your Name GIT_USER_EMAIL=your-email@example.com GIT_REMOTE_URL=origin # ═══════════════════════════════════════════════════════ # Static Site Project Paths # ═══════════════════════════════════════════════════════ # Paths to your static site generator projects DOCUSAURUS_PROJECT_PATH=./path-to-docusaurus-project MINTLIFY_PROJECT_PATH=./path-to-mintlify-project ASTRO_PROJECT_PATH=./path-to-astro-project # ═══════════════════════════════════════════════════════ # Default Content Settings # ═══════════════════════════════════════════════════════ DEFAULT_WORD_COUNT=1500 DEFAULT_POST_STATUS=draft DEFAULT_TONE=professional # ═══════════════════════════════════════════════════════ # Visual Content Generation APIs (Optional) # Supported platforms: Claude Code, Gemini CLI, Codex CLI # ═══════════════════════════════════════════════════════ # Google AI API (for Gemini 2.5 Flash Image) # Get simple API key from: https://ai.google.dev/ # This key starts with "AIza..." and is 39 characters long GOOGLE_API_KEY= # Google Cloud Vertex AI (for Imagen 4) # Required for premium Imagen 4 image generation # Requires: Google Cloud Project with billing enabled # Setup: https://cloud.google.com/vertex-ai/docs/start/cloud-environment GOOGLE_CLOUD_PROJECT_ID=your-project-id GOOGLE_CLOUD_LOCATION=us-central1 # Path to your service account JSON key file GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account-key.json # OpenAI API (for DALL-E 3, GPT-Image-1) # Get API key: https://platform.openai.com/api-keys OPENAI_API_KEY= # Fal.ai API (for FLUX 2, Veo 3, and 600+ AI models) - OPTIONAL # Get API key: https://fal.ai/dashboard/keys # When set, enables: # 1. SDK-based generation (FLUX 2 Pro, Veo 3) via visual-generator skill # 2. fal.ai MCP server for model discovery, pricing, and generation tools # Pricing: FLUX 2 Pro $0.05/image, Veo 3 $0.40/second FAL_KEY= # Visual Generation Preferences VISUAL_DEFAULT_SERVICE=gemini # gemini|imagen|dalle|veo|flux|veo3 VISUAL_DEFAULT_QUALITY=standard # standard|hd VISUAL_ASSETS_PATH=./content-assets # Where to save generated files # Budget Controls (Optional) VISUAL_DAILY_BUDGET=5.00 # Max USD per day VISUAL_MONTHLY_BUDGET=50.00 # Max USD per month VISUAL_WARN_THRESHOLD=0.80 # Warn at 80% budget usage # ═══════════════════════════════════════════════════════ # Security Tools Configuration (Kali Linux Docker) # ═══════════════════════════════════════════════════════ # ⚠️ ONLY RELEVANT if you've installed a security workflow: # npx myaidev-method install security-pentest # npx myaidev-method install security-audit # npx myaidev-method install security-webapp # # If you only installed 'content' workflow, ignore this section. # # Run '/myai-configure security' for interactive setup # Requires Docker to be installed on your system # Container Settings KALI_CONTAINER_NAME=kali-security KALI_IMAGE=kalilinux/kali-rolling # Network Mode: host|bridge|none # host = Full network access (recommended for pentesting) # bridge = Isolated with port mapping # none = No network (offline analysis) KALI_NETWORK_MODE=host # Ports to expose (only used with bridge mode) # Comma-separated list, e.g., 8080,4444,443 KALI_PORTS= # Volume Mounts (host paths) KALI_TOOLS_PATH=./security-tools # Custom scripts and tools KALI_RESULTS_PATH=./security-results # Scan outputs and reports KALI_WORDLISTS_PATH= # Optional: Custom wordlists # Tool Packages (space-separated list) # Options: kali-linux-headless, kali-tools-web, kali-tools-exploitation, # kali-tools-forensics, kali-tools-passwords, kali-tools-wireless, # kali-tools-sniffing, or specific tools like nmap,burpsuite KALI_PACKAGES=kali-linux-headless # Auto-start container on system boot KALI_AUTOSTART=false