ワンクリックで
builder
Analyze project structure, identify build system, execute build, capture errors/warnings, and report results with logs and metadata.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Analyze project structure, identify build system, execute build, capture errors/warnings, and report results with logs and metadata.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create a comprehensive project structure overview: repo tree, folder usage, core components, and build/test commands.
Update project documentation, READMEs, and .gitignore files to reflect changes, build steps, test procedures, and ensure source code files are properly excluded from version control.
Create a comprehensive project structure overview: repo tree, folder usage, core components, and build/test commands.
Execute test suite, parse results, capture failures, and provide comprehensive test report with metrics and diagnostics.
| name | builder |
| description | Analyze project structure, identify build system, execute build, capture errors/warnings, and report results with logs and metadata. |
Systematically inspect a project's build configuration, execute the build, capture all output, identify errors/warnings/important details, and provide a comprehensive report with logs and metadata.
A structured report containing:
Examine root directory for build configuration files:
.csproj, .sln, project.json, MSBuild files
TargetFramework, OutputType, RuntimeIdentifiers.sln with multiple .csproj files)package.json, webpack.config.js, tsconfig.jsonsetup.py, pyproject.toml, requirements.txtpom.xml, build.gradle, build.gradle.ktsgo.mod, MakefileCargo.tomlFor the detected language/system:
.csproj in root or identify .sln entry pointbuild script in package.jsonDetect available build modes:
Debug or Release (check .csproj for <Configuration>)development, production or no explicit mode--self-contained, -r osx-arm64)Based on detected system:
C# / .NET (most common):
cd <project-root>
dotnet build <ProjectFile>.csproj -c Release
# OR if multi-project solution:
dotnet build <Solution>.sln -c Release
Node.js/npm:
npm install
npm run build
# OR for yarn:
yarn install
yarn build
Python:
python -m pip install -e .
# OR
python setup.py build
Java/Maven:
mvn clean install
Java/Gradle:
./gradlew build
Make:
make build
Execute the build command and capture:
Extract and organize:
Determine outcome:
Format findings as:
## Build Analysis Report
**Project**: [Name from .csproj / package.json]
**Type**: C# / Node.js / Python / etc.
**Framework**: .NET 8.0 / Node 18.x / etc.
**Build Mode**: Release / Debug / Production
**Date**: [ISO timestamp]
### Build Command
\`\`\`bash
[exact command executed]
\`\`\`
### Result
- **Status**: ✅ Success / ⚠️ Success with Warnings / ❌ Failed
- **Duration**: X.XXs
- **Exit Code**: 0 / [code]
- **Artifacts**: [list output paths]
### Errors
[If any - list each error with context]
### Warnings
[If any - group by category and list]
### Important Details
- Embedded resources: [list if any]
- Dependency resolution: [notes on package versions, conflicts]
- Platform-specific: [runtime identifiers, OS-specific paths]
- Custom targets: [any special MSBuild/build hooks]
### Full Build Log
\`\`\`
[Complete stdout + stderr]
\`\`\`
### Recommendations
[Next steps: fix errors, address critical warnings, test artifacts, etc.]
User: "Run the build and show me what happened — any errors, warnings, important details"
Assistant:
.sln first, then specific projects if needed2>&1 | tail -n; keep complete output for analysisdotnet clean, npm ci, mvn clean) and retry/WarnAsError or -Werror are set in project files