/bazel-build-optimization
Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.
One skill from wshobson-agents.
shell
$ npx -y skills add wshobson/agents --skill bazel-build-optimization --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/bazel-build-optimization
Context preview
The summary Claude sees to decide when to auto-load this skill.
Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.
Stats
Stars38,169
Forks4,092
LanguagePython
LicenseMIT
Ships with wshobson-agents
SKILL.md
bazel-build-optimization.SKILL.md
--- name: bazel-build-optimization description: Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases. --- # Bazel Build Optimization Production patterns for Bazel in large-scale monorepos. ## When to Use This Skill - Setting up Bazel for monorepos - Configuring remote caching/execution - Optimizing build times - Writing custom Bazel rules - Debugging build issues - Migrating to Bazel ## Core Concepts ### 1. Bazel Architecture ``` workspace/ โโโ WORKSPACE.bazel # External dependencies โโโ .bazelrc # Build configurations โโโ .bazelversion # Bazel version โโโ BUILD.bazel # Root build file โโโ apps/ โ โโโ web/ โ โโโ BUILD.bazel โโโ libs/ โ โโโ utils/ โ โโโ BUILD.bazel โโโ tools/ โโโ bazel/ โโโ rules/ ``` ### 2. Key Concepts
