You can use CrT to add or remove recipes form the AS grindstone.

You can call the InfusionRecipe package using mods.astralsorcery.Grindstone.

This will remove the first grinding recipe it finds that creates the provided IItemStack output.
If there are multiple recipes that return the provided output, you need to call this method multiple times!

ZenScript
Copy
//mods.astralsorcery.Grindstone.removeRecipe(IItemStack output);
mods.astralsorcery.Grindstone.removeRecipe(<minecraft:redstone>);
ZenScript
Copy
//mods.astralsorcery.Grindstone.addRecipe(IItemStack input, IItemStack output);
mods.astralsorcery.Grindstone.addRecipe(<minecraft:stone>, <minecraft:gravel>);

//mods.astralsorcery.Grindstone.addRecipe(IItemStack input, IItemStack output, float doubleChance);
mods.astralsorcery.Grindstone.addRecipe(<minecraft:cobblestone>, <minecraft:gravel>, 0.5f);