build Project
Builds the project using the specified command.
This method executes the provided build command in the project's root directory. It leverages the Ci implementation to handle the actual command execution and returns the output (stdout/stderr) from the build process.
The method is annotated with @Tool to make it available as a callable tool within the agent system.
Return
The output of the build process as a string, containing both stdout and stderr
Parameters
command
The build command to execute in the project root (e.g., "mvn clean install", "gradle build", "npm run build", etc.)
Throws
if the build process fails or cannot be executed