custom-build-process

This is a project-specific custom skill called by the Builder workflow after implementation is complete. It handles building project artifacts specific to this project (claudecode_webui).

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "custom-build-process" with this command: npx skills add edanstarfire/claudecode_webui/edanstarfire-claudecode-webui-custom-build-process

Custom Build Process

Purpose

This is a project-specific custom skill called by the Builder workflow after implementation is complete. It handles building project artifacts specific to this project (claudecode_webui).

Generic workflow skills invoke this skill if it exists; if absent, the build step is skipped.

When Called

The Builder invokes this skill from its working directory (the worktree) after code changes are complete but before testing.

Build Steps

Frontend Build (if frontend code changed)

Check if frontend code was modified:

git diff --name-only HEAD~1 | grep -q "^frontend/" && echo "Frontend changed"

If frontend code changed, build it:

cd frontend && npm run build

Verification

After build:

  • Verify frontend/dist/ directory was created/updated

  • Check build output for errors

  • Report any build failures

Usage by Generic Skills

The Builder workflow calls this skill like:

Invoke custom-build-process skill (no arguments - uses cwd)

The skill runs project-specific build commands in the Builder's working directory. If this skill does not exist, the generic workflow skips the build step.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

custom-cleanup-process

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

custom-environment-setup

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

custom-test-process

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

custom-quality-check

No summary provided by upstream source.

Repository SourceNeeds Review