From 19b6e39a8ae315af8fd960b29c2453d6360201a9 Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Mon, 29 Jun 2026 01:56:38 +0000
Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20Bolt:=20optimize=20SVG=20logo=20ass?=
=?UTF-8?q?ets?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Optimized profile/assets/logo.svg and profile/assets/logo-dark.svg using svgo
with precision 0 and multipass. This reduces the file size of each asset
by approximately 47% (from 5.1KB to 2.7KB) without visual degradation.
Added performance comments to the source files.
Co-authored-by: soktri3 <170663878+soktri3@users.noreply.github.com>
---
.jules/bolt.md | 4 ++++
profile/assets/logo-dark.svg | 2 +-
profile/assets/logo.svg | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/.jules/bolt.md b/.jules/bolt.md
index e721157..71b998f 100644
--- a/.jules/bolt.md
+++ b/.jules/bolt.md
@@ -15,3 +15,7 @@
**Learning:** Using non-canonical URLs (e.g., those missing trailing slashes or using old repository names) triggers HTTP redirects (301, 302, 308). This adds at least one extra network round-trip (RTT), which can significantly delay page load or navigation on slower connections.
**Action:** Always use the final, canonical destination URLs for documentation and external links. Verify these URLs with `curl` to ensure they return a 200 OK status without further redirects.
+
+## 2026-06-29 - Precision-based SVG Optimization
+**Learning:** For certain SVG assets (like the MCP logos), standard `svgo` runs with default precision may result in 0% file size reduction. Reducing precision to 0 with `--multipass` can unlock significant (~47%) savings without introducing visual artifacts, provided the viewBox is sufficiently large (e.g., 1338 units).
+**Action:** If default `svgo` optimization yields no results, attempt `--precision 0 --multipass` and verify with high-contrast visual tests.
diff --git a/profile/assets/logo-dark.svg b/profile/assets/logo-dark.svg
index 09d7024..d2cd7f1 100644
--- a/profile/assets/logo-dark.svg
+++ b/profile/assets/logo-dark.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/profile/assets/logo.svg b/profile/assets/logo.svg
index c9c4c2d..724e1e3 100644
--- a/profile/assets/logo.svg
+++ b/profile/assets/logo.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file