From 86dd49dc4a5151e14f572ddb37b7d18f1582d37f Mon Sep 17 00:00:00 2001 From: Piyush Vyas Date: Thu, 2 Apr 2026 16:26:01 -0500 Subject: [PATCH] Restore README banner using a packaged relative asset The GitHub raw-hosted image URL currently renders as a broken image in the README view. This switches the banner back to a repo-relative asset and includes that asset in the npm package files so both GitHub and the npm package page can resolve it without depending on GitHub raw URL serving. Constraint: Keep the fix narrowly scoped to the README banner path and package file whitelist Rejected: Keep using a raw.githubusercontent.com URL | current raw URLs return 404 in practice for this repo and break the rendered README Confidence: high Scope-risk: narrow Reversibility: clean Directive: Keep README images on packaged relative paths or another verified stable host; do not assume raw GitHub URLs will render reliably Tested: npm pack --dry-run --json includes assets/readme-banner.svg and README references the packaged relative asset Not-tested: Live npm/GitHub renderer refresh after merge; behavior is inferred from the packaged relative path and current broken raw URL evidence --- README.md | 2 +- assets/readme-banner.svg | 29 +++++++++++++++++++++++++++++ package.json | 1 + 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 assets/readme-banner.svg diff --git a/README.md b/README.md index 8f83f9f..cc3fa81 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- DBAR — Deterministic Browser Agent Runtime + DBAR — Deterministic Browser Agent Runtime

diff --git a/assets/readme-banner.svg b/assets/readme-banner.svg new file mode 100644 index 0000000..6e8befb --- /dev/null +++ b/assets/readme-banner.svg @@ -0,0 +1,29 @@ + + + DBAR + Deterministic Browser Agent Runtime + + + + + + capture + + + + + + + + + + + + + replay + + + + + Same inputs. Same outputs. Every time. + diff --git a/package.json b/package.json index a7a017b..731e498 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "dbar": "./dist/cli.js" }, "files": [ + "assets", "dist", "README.md", "LICENSE"