Add ability to install plugins
e.g. wordless new mysite -p plugin-one,plugin-two,plugin-three or wordless new mysite --plugins=plugin-one,plugin-two,plugin-three
Hi, I'm the maintainer of the wp-cli project, which already has something like this:
wp plugin install plugin-one --activate
Perhaps we can collaborate somehow.
Thanks for reaching out. wp-cli looks like a great project and I'd love to collaborate. It's much more full-featured than my own limited WordPress tools (which were recently spun off in their own gem). What I need to figure out is how to include a PHP dependency such as wp-cli in my Ruby gem. I'm sure it's possible, I just haven't had the time to implement it in a seamless way. I'll look into it.
I see you already have some PHP files there, so you could add wp-cli as a submodule in git and call it from your script.
Here's a rough guide on how to write wp-cli commands: https://github.com/wp-cli/wp-cli/wiki/Commands-Cookbook
The --require parameter might also come in handy.