${PRINT_USAGE:-:} <<EOF
    add <module>      Adds the specified module to the current environment. (clones if needed)
EOF

command_add() {
    [[ -z $context ]] && error "Create an environment before adding mods"
    for m in $args ; do
        add_mod "$m" $context
    done
}
return 0
