Basic interface modeled on Ruby gems?
sass list # show installed extensions
sass --remote list <query> # show remote extensions matching <query>
sass install <extension> <directory> # install a new <extension> to <directory>
sass config create # generate a new config file
Example of generic sass.json configuration file:
{
remote: 'http://ext.sass-lang.org',
sass_dir: 'sass',
css_dir: 'public/stylesheets',
extensions_dir: 'sass/vendor', // directory where extensions should be installed
output_style: 'expanded'
}
JSON seems like the best language agnostic way to do this.