AkavacheExplorer.iOS and AkavacheExplorer.Android are packages that allow to examine the contents of your Xamarin app's Akavache cache. Explorer will not attempt to modify the content of the cache in any way.
You have to include the package in project targeting Xamarin.iOS or Xamarin.Android and simply present explorer's UIViewController/Activity whenever you want to examine the content of Akavache local store.
using AkavacheExplorer.iOS;
...
PresentViewController(Explorer.GetNavigationController(), true, null);
using AkavacheExplorer.Droid;
...
StartActivity(typeof(ExplorerActivity));