In a foundry project with **passing** tests that are run with `forge test`, you can mutate all solidity files in the `src` folder by running the following:
To view the list of mutators available `slither-mutate --list-mutators`
`slither-mutate src --test-cmd='forge test'`
You can provide flags to `forge` as part of the `--test-cmd` parameter or target a single file path instead of the whole `src` directory, for example:
`slither-mutate src/core/MyContract.sol --test-cmd='forge test --match-contract="MyContract"'`