Accounts: user status

Hi,

Why do I need to download this package:

only to do this:

Meteor.publish("Users", function() {
      if(!this.userId) return;
      return Users.find({
        roomId: User.getUser(this.userId).getInfo().roomId,
        "status.online": true
      });
    });

I think this should be build int Meteor!