Skill build systems
A comprehensive Claude Code plugin that automates the complete Software Development Lifecycle with 20 role-specific agents, 12 knowledge skills, and 8 commands, all guided by principles.
npx -y skills add saitarrun/sdlc-ai-workflow --skill skill-build-systemsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Hermetic builds, dependency management, build caching, reproducible builds, cross-compilation, build optimization. Use when optimizing build speed, ensuring reproducibility, or designing build infrastructure.
SKILL.md
1.8 KB, as published. Nobody here has run it
Skill: Build Systems
Fast, reproducible, hermetic builds. No network calls. Same output every time.
Hermetic Builds
Requirements:
- ✓ All dependencies vendored (in repo or locked)
- ✓ No network calls during build
- ✓ Deterministic output (bit-for-bit same)
- ✓ Works offline
Example (Bazel):
bazel build //app:binary
→ uses //third_party/go/dependencies.bzl (locked)
→ no network needed
→ same binary every time
Reproducible Builds
# Build 1
$ bazel build //app --action_env=BUILD_TIME=0
$ sha256sum bazel-bin/app/binary
→ abc123...
# Build 2 (week later)
$ bazel build //app --action_env=BUILD_TIME=0
$ sha256sum bazel-bin/app/binary
→ abc123... # Identical!
Caching Strategy
- Local cache: ~/.cache/bazel (fast)
- Shared cache: S3/GCS (team)
- CI cache: Previous builds (speed up)
Cache hit = skip recompilation
Dependency Locking
# dependencies.lock
requests:
version: 2.28.0
sha256: abc123...
url: https://pypi.org/packages/...
urllib3:
version: 1.26.0
sha256: def456...
Freeze dependencies → reproducible
Build Optimization
- Parallelism:
-j 8(8 parallel builds) - Incremental: Only rebuild changed files
- Caching: Reuse previous outputs
- Sandboxing: Isolation (prevents hidden dependencies)
Binary Optimization
# Strip debug symbols
$ strip -s app
# Compress
$ upx -9 app
# Size reduction: 50MB → 5MB
Status: Ready for build work
Best for: Build optimization, hermetic builds, reproducibility