Claude-skill-registry build-test-auto
Automatically builds and tests code changes. Use whenever code is modified, tests fail, before creating pull requests, or when verifying code quality.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/build-test-auto" ~/.claude/skills/majiayu000-claude-skill-registry-build-test-auto && rm -rf "$T"
manifest:
skills/data/build-test-auto/SKILL.mdsource content
Automated Build & Test Workflow
Overview
This skill provides automated build and test execution for various project types. It is triggered automatically when code changes are made or when tests need verification.
Quick Reference
Project Detection & Commands
# JavaScript/Node.js if [ -f "package.json" ]; then npm install && npm run build && npm test fi # Python if [ -f "pyproject.toml" ] || [ -f "setup.py" ]; then pip install -e . && python -m pytest fi # Rust if [ -f "Cargo.toml" ]; then cargo build && cargo test fi # Go if [ -f "go.mod" ]; then go build ./... && go test ./... fi # Java Maven if [ -f "pom.xml" ]; then mvn compile && mvn test fi # Java/Kotlin Gradle if [ -f "build.gradle" ] || [ -f "build.gradle.kts" ]; then ./gradlew build && ./gradlew test fi # Ruby if [ -f "Gemfile" ]; then bundle install && bundle exec rspec fi # Make-based if [ -f "Makefile" ]; then make && make test fi
Workflow Steps
1. Pre-Build Checks
- Verify dependencies are installed
- Check for required tools (use
if available)mise - Validate configuration files
2. Build Phase
- Run the build command
- Capture all output
- Stop immediately on build failure
- Show exact error location
3. Test Phase
- Run the full test suite
- Capture test output with verbose mode
- Document all failures
4. Failure Analysis
For each failure:
- Identify the test name and file
- Show the exact error message
- Display relevant stack trace
- Analyze root cause
5. Fix & Verify
- Apply minimal fixes
- Re-run tests to confirm
- Report final status
Linting
After tests pass, also run linting:
| Project Type | Lint Command |
|---|---|
| Node.js | |
| Python | or |
| Rust | |
| Go | |
Tips
- Use
to install missing runtimesmise - Check
,.nvmrc
,.python-version
for version requirements.tool-versions - Run lint and build before pushing to remote