Skip to main content

Maintain consistency across repositories

Project description

repolish

Repolish is a hybrid of templating and diff/patch systems, useful for maintaining repo consistency while allowing local customizations. It uses templates with placeholders that can be filled from a context, and regex patterns to preserve existing local content in files.

Why this exists

Teams often need to enforce repository-level conventions (CI config, build tools, metadata, common docs) while letting individual projects keep local customizations. The naive approaches are painful:

  • Copying templates into many repos means drift over time and manual syncs.
  • Running destructive templating can overwrite local changes developers rely on.

Repolish solves this by combining templating (to generate canonical files) with a set of careful, reversible operations that preserve useful local content. Instead of blindly replacing files, Repolish can:

  • Fill placeholders from provider-supplied context.
  • Apply anchor-driven replacements to keep developer-customized sections.
  • Track provider-specified deletions and record provenance so reviewers can see why a path was requested for deletion.

Design overview

Key concepts:

  • Providers (templates): Each provider lives in a template directory and may include a repolish.py module that exports create_context(), create_anchors(), and/or create_delete_files() helpers. Providers supply cookiecutter context and may indicate files that should be removed from a project.
  • Anchors: A small markup syntax placed in templates (and optionally in project files) that marks blocks or regex lines to preserve. Examples:
    • Block anchors: ## repolish-start[readme] ... repolish-end[readme]
    • Regex anchors: ## repolish-regex[keep]: ^important=.* The processors use these anchors to replace or merge the template content with the local project file while preserving the parts marked with anchors.
  • Delete semantics: Providers can request deletions using POSIX-style paths. A ! prefix acts as a negation (keep). Config-level delete_files are applied last and recorded in provenance.
  • Provenance: Repolish records a delete_history mapping that stores, for each candidate path, a list of decisions (which provider or config requested a delete or a keep). This helps reviewers and automation understand why a path was flagged.

How it works (high level)

  1. Load providers configured in repolish.yaml (or the default config).
  2. Merge provider contexts; config-level context overrides provider values.
  3. Merge anchors from providers and config.
  4. Stage all provider template directories into a single cookiecutter template (adjacent to the config under .repolish/setup-input).
  5. Preprocess staged templates by applying anchor-driven replacements using local project files (looked up relative to the config location).
  6. Render the merged cookiecutter template once into .repolish/setup-output.
  7. In --check mode: compare generated files to project files and report either diffs, missing files, or paths that providers wanted deleted but which are still present.
  8. In apply mode: copy generated files into the project and apply deletions as the final step.

Example usage

repolish.yaml (simple example):

directories:
  - ./templates/template_a
  - ./templates/template_b
context: {}
anchors: {}
delete_files: []

Run a dry-run check (useful for CI):

repolish --check --config repolish.yaml

Post-processing / formatters

Repolish supports an optional post_process list in repolish.yaml that runs commands after the template is rendered but before the --check diff or apply step. This is useful for running project formatters or other transformations so the checks operate on formatted output.

How it runs

  • The commands are executed exactly once after rendering and before checking or applying.
  • Commands are executed with the working directory set to the rendered project folder inside .repolish/setup-output/<project> (where _repolish_project is the generated project folder name; default repolish).

Command forms

You can provide post_process entries in two forms:

-- string (e.g. "ruff --fix .") — the string is tokenized with shlex.split and executed without a shell. This covers common tools and small python one-liners like python -c "open('file','w').write('x')".

  • list/array of argv parts (e.g. ['prettier', '--write', '.']) — recommended when you want to avoid any ambiguity about argument parsing and quoting.

Platform note

  • On Windows the tokenization rules differ; Repolish uses Python's shlex to split string commands into argv lists before executing them without a shell. Because quoting/escaping differs between POSIX shells and Windows, prefer the argv/list form in post_process on Windows to avoid surprises. If you must provide a single string entry, keep arguments simple (no shell metacharacters) or call a committed script from the argv form.

Security note

We intentionally avoid running commands with shell=True to reduce shell injection risks. If you need to run complex shell pipelines or use shell metacharacters, create a small script (bash or python) in the repository and invoke that script from post_process using the argv-list form. That keeps the command execution explicit and avoids embedding complex shells in the configuration.

Example repolish.yaml with formatters

directories:
  - ./templates/template_a
context: {}
anchors: {}
post_process:
  - ['python', '-m', 'pip', 'install', '-r', 'requirements-dev.txt']
  - 'ruff --fix .'
  - ['prettier', '--write', 'src/']
delete_files: []

If a post_process command exits with a non-zero status, Repolish will fail and return a non-zero exit code so CI can detect the problem.

This will produce structured logs that include:

  • The merged provider context and delete_paths (so you can see what was requested).
  • A check_result listing per-path diffs or deletion warnings like PRESENT_BUT_SHOULD_BE_DELETED.

Processor story (anchors)

We iterated on preserving local file semantics and landed on a simple, explicit anchor-based system. Anchors are easy for template authors to add and for maintainers to reason about:

  • Block anchors allow entire sections of a file to be preserved or replaced while keeping the surrounding template-driven structure.
  • Regex anchors can mark single lines or patterns to keep (useful for maintainer-inserted keys or comments that should survive templating).

Anchors are processed in staging before cookiecutter runs, so the generated output already reflects local overrides while still taking canonical values from templates when needed.

How do I add anchors?

Anchors are intentionally simple so template authors and maintainers can reason about them easily. There are two primary forms:

  • Block anchors mark a named section to preserve or replace between repolish-start[...] and repolish-end[...] markers. Use them for multi-line sections such as README snippets, install blocks, or long descriptions.
  • Regex anchors mark single-line patterns to keep using a regular expression. They are useful when you want to preserve a line that follows a predictable pattern (version lines, keys, simple single-line edits).

Below are two practical examples you can copy into templates and projects.

Dockerfile (block anchor)

Template (templates/template_a/Dockerfile):

# base image
FROM python:3.11-slim

## repolish-start[install]
# install system deps
RUN apt-get update && apt-get install -y build-essential libssl-dev
## repolish-end[install]

# copy + install python deps
COPY pyproject.toml .
RUN pip install --no-cache-dir .

Project Dockerfile (local override) — developer has custom install needs:

FROM python:3.11-slim

## repolish-start[install]
# custom build deps for project X
RUN apt-get update && apt-get install -y locales libpq-dev
## repolish-end[install]

# copy + install python deps
COPY pyproject.toml .
RUN pip install --no-cache-dir .

When Repolish runs its preprocessing, the install block from the local project will be preserved in the staged template (so the generated output keeps the local custom RUN command), while the rest of the Dockerfile comes from the template.

pyproject.toml (regex anchor + block anchor)

Template (templates/template_a/pyproject.toml):

[tool.poetry]
name = "{{ cookiecutter.package_name }}"
version = "0.1.0"
## repolish-regex[keep]: ^version\s*=\s*".*"

description = "A short description"

## repolish-start[extra-deps]
# optional extra deps (preserved when present)
## repolish-end[extra-deps]

Project pyproject.toml (developer bumped version and added extras):

[tool.poetry]
name = "myproj"
version = "0.2.0"

description = "Local project description"

## repolish-start[extra-deps]
requests = "^2.30"
## repolish-end[extra-deps]

In this example the ## repolish-regex[keep]: ^version\s*=\s*".*" anchor ensures the local version = "0.2.0" line is preserved instead of being replaced by the template's 0.1.0. The extra-deps block is preserved whole-cloth when present, letting projects keep local dependency additions.

Notes and tips

  • Use meaningful anchor names (e.g., install, readme, extra-deps) so reviewers immediately understand the preserved section's intent.
  • Regex anchors are applied line-by-line; prefer anchoring to a simple, easy to read pattern to avoid surprises.
  • Anchors are processed before cookiecutter rendering, so template substitutions still work around preserved sections.

Regex anchors and capture groups

Regex anchors let you specify exactly what to preserve from a local file. Two important behaviors to know:

  • Capture group preference: If your regex includes a capturing group (parentheses), Repolish will prefer the first capture group (group 1) as the block to insert into the template. If there are no capture groups, Repolish falls back to the entire match (group 0).
  • Safeguard trimming: As a conservative safeguard Repolish trims captured blocks to a contiguous region based on indentation so that incidental following sections are not accidentally pulled into the template. However, the canonical way to express intent is an explicit capture group — authors should prefer to capture exactly what they mean.

Implementation note

  • Repolish computes the absolute span of the selected capture (group 1 when present, otherwise the full match) inside the template and trims that slice using an indentation-aware heuristic before replacing it with the trimmed content extracted from the local file. Also note that the ## repolish-regex[...] declaration line is removed from the template prior to matching and replacement. This avoids accidentally removing unrelated template sections when patterns include surrounding context.

Example

Template (excerpt):

cat1:
  - line1
  - line2
  ## repolish-regex[cat1-filter]: (^\s*# cat1-filter-additional-paths.*\n(?:\s+.*\n)*)
  # cat1-filter-additional-paths

cat2:
  - from-template
  ## repolish-regex[cat2-filter]: (^\s*# cat2-filter-additional-paths.*\n(?:\s+.*\n)*)
  # cat2-filter-additional-paths

cat3:
  - cat3-line
  ## repolish-regex[cat3-filter]: (^\s*# cat3-filter-additional-paths.*\n(?:\s+.*\n)*)
  # cat3-filter-additional-paths

Local file (excerpt):

cat1:
  - line1
  - line2
  # cat1-filter-additional-paths
  - extra

cat3:
  - cat3-line
  # cat3-filter-additional-paths

Result after preprocessing:

cat1:
  - line1
  - line2
  # cat1-filter-additional-paths
  - extra

cat2:
  - from-template
  # cat2-filter-additional-paths

cat3:
  - cat3-line
  # cat3-filter-additional-paths

When your regex is too greedy, tighten it or add explicit parentheses around the intended capture so Repolish can reliably hydrate the template without importing unrelated content.

Where anchors are declared and uniqueness

Anchors can come from three places (and are merged in this order):

  1. Provider templates: any ## repolish-start[...] / ## repolish-regex[...] markers present inside the provider's template files.
  2. Provider code: a provider's create_anchors() callable can return an anchors mapping (key -> replacement text) used during preprocessing.
  3. Config-level anchors: the anchors mapping in repolish.yaml applies last and can be used to override or add anchor values.

When anchors are merged, later sources override earlier ones (config wins). Anchor keys must be unique across the whole merged template set — keys are global identifiers used to find matching repolish-start[...] blocks or repolish-regex[...] declarations. If two different template files (or providers) use the same anchor key, the later provider's value will override the earlier one, which can produce surprising results.

Example conflict

Two provider templates accidentally use the same anchor key init:

  • templates/a/Dockerfile contains ## repolish-start[init]## repolish-end[init]
  • templates/b/README.md also contains ## repolish-start[init]## repolish-end[init]

Because anchor keys are merged globally, the init block from the provider that is processed later will replace (or be used in place of) the other one. That may not be what you want — for predictable behavior, choose anchor keys scoped to the file or the provider, e.g. docker-install or readme-intro.

Best practice: prefix anchor keys with the file or provider name when the content is file-scoped. This avoids accidental collisions when multiple providers contribute templates that contain similarly-named sections.

Why this is useful

  • Safe consistency: teams get centralized templates without forcing destructive, manual rollouts.
  • Clear explainability: the delete_history provenance makes it easy to review why a file was targeted for deletion or kept.
  • CI-friendly: --check can be run in CI to detect drift; logs and diffs make it straightforward to require PRs to run repolish before merging.

Final notes

Repolish is intentionally small and composable. If you need per-file log artifacts, or slightly different merge rules, the processors and cookiecutter helpers are isolated so you can adapt them safely.

Contributions and issues are welcome — see the test-suite for practical examples of how the system behaves.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

repolish-0.2.1.tar.gz (19.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

repolish-0.2.1-py3-none-any.whl (23.0 kB view details)

Uploaded Python 3

File details

Details for the file repolish-0.2.1.tar.gz.

File metadata

  • Download URL: repolish-0.2.1.tar.gz
  • Upload date:
  • Size: 19.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.20

File hashes

Hashes for repolish-0.2.1.tar.gz
Algorithm Hash digest
SHA256 a402f8ac643f5ead7bdd5d2bbd7675d3e4311ea1627d9ddd8125bb1c6d9885d7
MD5 4bbc442712d7bc1ce48b306cffbcf13f
BLAKE2b-256 48454b6c107fd4e926e409ce2688a911eb532d969322310b2ac30b0643cf389b

See more details on using hashes here.

File details

Details for the file repolish-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: repolish-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 23.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.20

File hashes

Hashes for repolish-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3b69d0cda35989616b98910f182a0cadb2a9b8206bd7a3c5b99d8f7c090f8e20
MD5 59d6cd22015c5aff9aaa3e502996e30f
BLAKE2b-256 6f5bc62f8ba4fde6978b63c2ba244c5607a04da3aa83384e3502528b2eb773a0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page