Bazel Starlib

February 16, 2026 ยท View on GitHub

Build

Bazel Starlib is a collection of projects that contain rulesets and libraries that are useful for the implementation of Bazel projects.

ProjectDescriptionDocumentation
bazeldocGenerate Starlark documentation using Bazel Stardoc. Formerly hosted as bazel-doc.API, How-to
bzlformatFormat Bazel Starlark files using Buildifier, test that the formatted files exist in the workspace directory, and copy formatted files to the workspace directory. Formerly hosted as rules_bzlformat.API, How-to, Examples
bzllibCollection of Starlark libraries.API, How-to
bzlreleaseAutomate and customize the generation of releases using GitHub Actions.API, How-to
bzltidyCollect Bazel actions that keep your source files up-to-date.API, How-to
markdownMaintain markdown files.API, How-to, Examples
shlibCollection of libraries useful when implementing shell binaries, libraries, and tests. Formerly hosted as bazel_shlib.API, How-to
updatesrcCopy files from the Bazel output directories to the workspace directory. Formerly hosted as rules_updatesrcAPI, How-to, Examples

Table of Contents

Quickstart

The following provides a quick introduction on how to load this repository into your workspace. For more information on how to use the projects from this repository in your workspace, check out the how-to links above and review the the generated documentation.

MODULE.bazel Snippet

bazel_dep(name = "cgrindel_bazel_starlib", version = "0.30.0")

Developer Documentation

To Add a Golang Dependency

Execute the following to update the go module files, resolve the Golang dependencies and update the Bazel build files.

$ bazel run @io_bazel_rules_go//go -- github.com/sweet/go_pkg
$ bazel run //:go_mod_tidy
$ bazel run //:update_build_files

Other Documentation