tony363/superclaude

sc-build

Build, compile, and package projects with intelligent error handling and optimization. Use when building projects, creating artifacts, debugging build failures, or preparing deployments.

First seen Jan 23, 2026

Installation

$ npx skills add tony363/superclaude --skill sc-build

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from tony363/superclaude · top by installs.

npx skills add tony363/superclaude

Browse all from tony363/superclaude

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 19
License LICENSE
Default branch main
Open issues 1
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,549 B
  • docs SUMMARY.md 202 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 86 installs

SKILL.md

Build & Package Skill

Project building and packaging with optimization and error handling.

Quick Start

# Standard build
/sc:build [target]

# Production with optimization
/sc:build --type prod --clean --optimize

# Verbose development build
/sc:build frontend --type dev --verbose

Behavioral Flow

  1. Analyze - Project structure, configs, dependencies
  2. Validate - Build environment, toolchain components
  3. Execute - Build process with real-time monitoring
  4. Optimize - Apply optimizations, minimize bundles
  5. Package - Generate artifacts and build reports

Flags

Flag Type Default Description
--type string dev dev, prod, test
--clean bool false Clean build (remove previous artifacts)
--optimize bool false Enable advanced optimizations
--verbose bool false Detailed build output
--validate bool false Include validation steps

Personas Activated

  • devops-engineer - Build optimization and deployment preparation

Evidence Requirements

This skill requires evidence. You MUST:

  • Show build command output and exit codes
  • Reference generated artifacts
  • Report timing metrics and optimization results

Build Types

Development (--type dev)

  • Fast compilation
  • Source maps enabled
  • Debug symbols included
  • No minification

Production (--type prod)

  • Full optimization
  • Minification enabled
  • Tree-shaking applied
  • Dead code elimination

Test (--type test)

  • Test coverage instrumentation
  • Mock configurations
  • Test-specific environment

Examples

Clean Production Build

/sc:build --type prod --clean --optimize
# Minification, tree-shaking, deployment prep

Component Build

/sc:build frontend --verbose
# Targeted build with detailed output

Validation Build

/sc:build --type dev --validate
# Development build with quality gates

Error Handling

Build failures trigger:

  1. Error log analysis
  2. Dependency verification
  3. Configuration validation
  4. Actionable resolution guidance

Tool Coordination

  • Bash - Build system execution
  • Read - Configuration analysis
  • Grep - Error parsing and log analysis
  • Glob - Artifact discovery
  • Write - Build reports