Hand tracking in HoloLens2 is awesome but detecting gestures is not. Currently, HoloLens allows the following in-built hand gestures,

HoloLens 1

HoloLens 2

Hand Tracking

If no controllers are present then the default controllers are the user's hands.

MixedRealityPose pose;
if (HandJointUtils.TryGetJointPose(TrackedHandJoint.IndexTip, Handedness.Right, out pose))
{
	// Use pose object to access the position and orientation of IndexTip
}

Gesture Detection

HoloLens uses *Pointers* to focus on different GameObjects.

public class FiringProjectiles: Singleton<FiringProjectiles>, IMixedRealityPointerHandler
{
	void Awake()
  {
      CoreServices.InputSystem?.RegisterHandler<IMixedRealityPointerHandler>(this);
  }
	
	void IMixedRealityPointerHandler.OnPointerUp(MixedRealityPointerEventData eventData)
  {
      // Requirement for implementing the interface
  }

  void IMixedRealityPointerHandler.OnPointerDown(
       MixedRealityPointerEventData eventData)
  {
      // Requirement for implementing the interface
  }

  void IMixedRealityPointerHandler.OnPointerDragged(
       MixedRealityPointerEventData eventData)
  {
      // Requirement for implementing the interface
  }

  // Detecting the air tap gesture
  void IMixedRealityPointerHandler.OnPointerClicked(MixedRealityPointerEventData eventData)
	{
			if (eventData.InputSource.SourceName == 'Right Hand' || eventData.InputSource.SourceName == 'Mixed Reality Controller Right')
			{
					// Do something when the user does an air tap using their right hand only
			}
	}
}