AI Dev Kit does not appear in Tools menu

If AI Dev Kit is not visible in Unity after install, please read this instructions

Issue After importing AI Dev Kit into Unity, the package appears to install correctly, but the AI Dev Kit menu does not appear under Tools, and the package seems non-functional.

Possible Cause In rare cases, Unity fails to automatically apply the required Scripting Define Symbol (UNITY_NEWTONSOFT_JSON, CYSHARP_UNITASK) during installation. This prevents the editor scripts from activating, resulting in the AI Dev Kit menu not appearing.

How to Fix

  1. Open File > Build Settings > Project Settings > Player > Other Settings

  2. Locate the Scripting Define Symbols field for your current build target

  3. Manually add these two symbols:

    UNITY_NEWTONSOFT_JSON
    CYSHARP_UNITASK
  4. Press Enter or click elsewhere to confirm the change

  5. Unity should now recompile the scripts, and the AI Dev Kit menu should appear under Tools

If It Still Doesn’t Work:

  • Sometimes, Unity also fails to automatically install required dependencies during the package import. Make sure you have following folders in Packages in your project window:

    • Newtonsoft Json

    • UniTask

  • If you are missing any of the above, manual install the dependencies.

  • Each guide provides step-by-step instructions for adding the packages to your Unity project and verifying that everything is set up correctly. After completing the installations, restart Unity to ensure the changes take effect.

Please join Discord if it still does not work

Last updated