Install
openclaw skills install mvn-full-runnerRun Maven commands with full argument passthrough, optionally specifying the working directory, using a Node.js wrapper for safer execution.
openclaw skills install mvn-full-runnerRun Maven with full passthrough support for all Maven capabilities.
node {baseDir}/scripts/mvn.mjs --dir "/path/to/project" -- clean test -DskipTests
node {baseDir}/scripts/mvn.mjs --dir "/path/to/project" -- package -Pprod -T 1C
node {baseDir}/scripts/mvn.mjs --dir "/path/to/project" -- help:effective-pom
node {baseDir}/scripts/mvn.mjs -- -v
node {baseDir}/scripts/mvn.mjs -- --version
--dir <path>: optional working directory for Maven--: optional separator; arguments after it are passed to mvn unchangednode {baseDir}/scripts/mvn.mjs --help-skill
node and mvn binaries in PATH.--dir; everything else is forwarded as-is.shell: false for safer execution.