Launch Configuration

Your launch configuration page determines how your plugin gets deployed to your AI Agent

Launch Audience

When launching your plugin, you can choose from 4 launch types:

  1. Launch to all users - make sure that you check the box, otherwise it will be launched to no one.

  2. Launch to selected emails - List of user emails as they appear in your Moveworks user roster. This comparison is case insensitive. If an email included, they will have access. Great for testing / launching to yourself.

  3. Block selected emails - List of user emails to exclude from this plugin. Great for blocking specific VIPs.

  4. Launch to users matching the rule - Use DSL to restrict entire departments / groups of employees based on user attributes. You have access to all user attributes under user.

    # All Johns who are not Software Engineers
    (user.first_name == "John") AND (user.role != "Software Engineer")
    
    # All Marketing, Sales, & Customer Success
    user.department IN ["Marketing", "Sales", "Customer Success"]
    
    # All FTEs and US-based contractors in the Technology department
    ( 
      user.custom_data.is_fte OR
    	(  
    		user.custom_data.type == "CONTINGENT" AND  
    		user.custom_data.country_code == "US" AND  
    		user.department == "Technology"  
    	)  
    )
    

Production Mode

When you build & deploy new plugins, you don't want those plugins to affect your production analytics. Until you check this box, your plugin won't affect production analytics.

This primarily affects classic plugins, and if unchecked, those analytics will not appear on the Creator Studio Analytics dashboard.

Plugins built with the Agentic Automation Engine will appear in Copilot Insights.

Data Redaction Policy

If you're building a plugin that interacts with sensitive data and you don't want that information to be available in the debug logs app, you can enable redaction on the plugin.

Any logs that touch that plugin will be strictly redacted, and only metadata will be logged.