What a cool library! Sometimes instead of loading fixtures, I want a simple command that let's me create/update an object. For example: ```bash bin/console make:book --title "Rust" --isbn "29294-42" --author "..." ``` Obviously, I can create that now using Symfony's `make:command`, but I like how tight the code is using console-extra. Perhaps Symfony 7 will incorporate this structure into make:command, but in the meantime, it'd be nice to have something that facilitated create it.