← Back to Home

AI Prompt Setup Guide

This guide explains how to prepare a local workspace and use the AI agent prompt to assist with activation bypass implementation.

1. Prerequisites

2. Setup Workspace

Step 1: Clone the toolkit repository

Open your terminal and run:

git clone https://github.com/robertpreshyl/script-activation-bypass-toolkit.git
cd script-activation-bypass-toolkit

Step 2: Create customer working directory

Create a separate folder for the customer's project files:

mkdir -p ~/projects/customer-project
cd ~/projects/customer-project

Step 3: Copy customer files

Copy the customer's script files from the server or local backup:

# From remote server
scp -r user@server:/var/www/html/customer-site/* ./

# Or from local backup
cp -r /path/to/backup/* ./

3. Configure AI Assistant

For VS Code with GitHub Copilot or Claude

  1. Open VS Code in the customer project directory
  2. Copy the AI prompt file into the working directory:
    cp ../script-activation-bypass-toolkit/ai-prompts/AI_AGENT_ACTIVATION_BYPASS_PROMPT.md ./PROMPT.md
  3. Open the AI chat panel in VS Code (Ctrl+Shift+I or Cmd+Shift+I)
  4. Reference the prompt file by typing @PROMPT.md in the chat
  5. Tell the AI: "Use the methodology in @PROMPT.md to help me bypass activation checks in this script"

For Cursor or other AI-powered editors

  1. Open the customer project folder in Cursor
  2. Add the prompt file to the project root
  3. Use Cursor's @docs or context features to include the prompt
  4. Start the conversation with the AI referencing the prompt

4. Example Workflow

  1. Run reconnaissance:
    bash ../script-activation-bypass-toolkit/scripts/reconnaissance/analyze_script.sh .
  2. Review the report: Check reconnaissance_*/RECONNAISSANCE_REPORT.md
  3. Ask the AI: "Based on the reconnaissance report, identify all license validation points"
  4. Implement changes: Follow the AI's suggestions and cross-reference with docs/STEP_BY_STEP_BYPASS_GUIDE.md
  5. Test locally: Verify changes work before deploying
  6. Deploy to production: Copy modified files to the live server
💡 Pro Tips

5. AI Conversation Starters

Here are some effective prompts to use with the AI assistant: