Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Function browseBenchRegistry

    • Parameters

      • params: { base: string; query?: string }

      Returns Promise<
          {
              benches: {
                  benchId: string;
                  evidence: {
                      integrityIndex: number;
                      trustLabel: "HIGH"
                      | "MEDIUM"
                      | "LOW";
                  };
                  labels: {
                      agentType?: | "code-agent"
                      | "support-agent"
                      | "ops-agent"
                      | "research-agent"
                      | "sales-agent"
                      | "other";
                      deployment?: "host"
                      | "single"
                      | "k8s"
                      | "compose";
                      industry?: "health" | "software" | "fintech" | "other" | "manufacturing";
                  };
                  scopeType: "AGENT"
                  | "WORKSPACE"
                  | "NODE";
                  versions: {
                      risk: "HIGH" | "MEDIUM" | "LOW";
                      sha256: string;
                      signerFingerprint: string;
                      url: string;
                      version: string;
                  }[];
              }[];
              registryFingerprint: string;
              registryId: string;
          },
      >