No such thing as AI in this engine. You gotta build it yourself. Have the character calculate its distance to player and act accordingly. Randomize variables and determine their next events by the resulting numbers. Simulate movement by giving the character a movement behavior, but disable its default controls so player can't control them.
From my experience making AI is a very long process of hit and miss. You gotta start simple and add to that. First start by making the enemy move and stop when required. Then make them jump randomly at certain distances. Then add animations and events for them to simulate attacks. One piece at a time.
One good tip I can give to you is to make a Hitbox (the sprite that has the movement behaviors and such, and is invisible) and Animation sprite (the actual character and its sprites) seperately. Pin the Animation sprite to Hitbox and make the Hitbox invisible.