nexus-agents - v2.80.0
    Preparing search index...

    Class PluginRegistry

    In-memory plugin registry with experimental gating.

    Plugins are registered during startup. After freeze(), no further registrations are accepted.

    Implements

    Index

    Constructors

    Accessors

    Methods

    • List all enabled plugins with their manifests.

      Returns readonly {
          id: string;
          version: string;
          description: string;
          stages: (
              "analyze"
              | "validate"
              | "aggregate"
              | "execute"
              | "gate"
              | "route"
          )[];
          requiredCapabilities: string[];
          trustLevel: "external" | "standard" | "core" | "experimental";
          experimental: boolean;
      }[]