Function calls have silent dependencies

Created on 26 March 2025, 8 days ago

Problem/Motivation

Currently, AI Agents includes a few function calls that have dependencies on other modules that are not core dependencies of AI Agents (or it's dependants). This means there are function calls that make use of services, classes, or entity types that are not available.

Steps to reproduce

Install AI Agents on a site that doesn't have node enabled. Try the Get Content Type Info tool in the API explorer, you get a fatal error:

Drupal\Component\Plugin\Exception\PluginNotFoundException: The "node_type" entity type does not exist. in Drupal\Core\Entity\EntityTypeManager->getDefinition() (line 142 of /var/www/html/docroot/core/lib/Drupal/Core/Entity/EntityTypeManager.php).

Proposed resolution

We should introduce a mechanism for declaring module dependencies in the plugin definition and the plugin manager should check that module dependencies are met, discarding plugins where that is not the case.

User interface changes

N/A

API changes

New optional param in the plugin definition attribute.

📌 Task
Status

Active

Version

1.1

Component

Code

Created by

🇬🇧United Kingdom andrewbelcher

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @andrewbelcher
  • 🇬🇧United Kingdom MrDaleSmith

    The content type AI Agent has:

      /**
       * {@inheritDoc}
       */
      public function isAvailable() {
        // Check if node module is installed.
        return $this->agentHelper->isModuleEnabled('node');
      }
    

    so I'm not entirely sure how you got it to be available on a site without node enabled?

    Can you provide steps to recreate?

  • 🇬🇧United Kingdom andrewbelcher

    Steps given in the initial report.

    The isAvailable method only appears to be called in ai_agents_extra's MCP plugin, and the ai_content_suggestions settings form.

    That probably should be checked in other places, but is more suitable for "run time" checks, rather than dependency checks. For example, if a function call tried to inject a dependency from a module not enabled, you wouldn't be able to instantiate the plugin to call isAvailable.

  • 🇬🇧United Kingdom MrDaleSmith

    Are you saying you want some kind of system that works without instantiating the plugin?

  • 🇬🇧United Kingdom andrewbelcher

    Ah, just realised this is a duplicate of a ticket Marcus has already fixed - 📌 Add module dependencies to tools Active .

Production build 0.71.5 2024