Claude-skill-registry backend-build-check

Ensure backend build readiness for Espresso Engineered. Use when backend code/config changes are made or when a feature/task is wrapping up to suggest running `npm run build:backend` (and tests only if requested).

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/backend-build-check" ~/.claude/skills/majiayu000-claude-skill-registry-backend-build-check && rm -rf "$T"
manifest: skills/data/backend-build-check/SKILL.md
source content

Backend Build Check

Overview

Confirm the backend still builds cleanly after backend updates. Prompt to run the build when work is wrapping up.

Workflow

  1. Detect trigger: backend files changed or user indicates a task/feature is finishing.
  2. Suggest running
    npm run build:backend
    from repo root.
  3. If the user agrees, run the command and report pass/fail.
  4. If it fails, summarize the top errors and ask how they want to proceed.

Notes

Only run tests when explicitly asked. Respect sandbox/network constraints; if build requires escalation, request approval.