From 5be8be764a984343e08c26e3f8d9bfa715d63916 Mon Sep 17 00:00:00 2001 From: damocles Date: Mon, 29 Jun 2026 00:54:54 +0200 Subject: [PATCH 1/2] refactor(#2077): collapse dev-assets tree in assets.rs to a nix/assets.nix pointer --- hive-sh4re/src/assets.rs | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/hive-sh4re/src/assets.rs b/hive-sh4re/src/assets.rs index 2db24e1d..838d8e42 100644 --- a/hive-sh4re/src/assets.rs +++ b/hive-sh4re/src/assets.rs @@ -12,17 +12,8 @@ //! HIVE_ASSETS_DIR=$(pwd)/dev-assets cargo run ... //! ``` //! -//! where `dev-assets/` is laid out the same as the nix output: -//! -//! ```text -//! dev-assets/ -//! branding/ -//! hyperhive.{svg,png} -//! agent-configs.{svg,png} -//! prompts/ -//! system.md -//! claude-settings.json -//! ``` +//! where `dev-assets/` mirrors the nix output's `branding/` + `prompts/` +//! layout (canonical tree in `nix/assets.nix`). //! //! Each crate that wants a specific asset goes through one of the //! typed helpers (`branding_svg()`, `prompt_template()`, …) so the From 3d33a11f3bf1c494dca8626af11f5eb82cdc7b0e Mon Sep 17 00:00:00 2001 From: damocles Date: Mon, 29 Jun 2026 01:33:38 +0200 Subject: [PATCH 2/2] refactor(#2077): drop dev-assets tree + nix/ pointer, keep prose layout note --- hive-sh4re/src/assets.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive-sh4re/src/assets.rs b/hive-sh4re/src/assets.rs index 838d8e42..7f6d04bf 100644 --- a/hive-sh4re/src/assets.rs +++ b/hive-sh4re/src/assets.rs @@ -13,7 +13,7 @@ //! ``` //! //! where `dev-assets/` mirrors the nix output's `branding/` + `prompts/` -//! layout (canonical tree in `nix/assets.nix`). +//! layout. //! //! Each crate that wants a specific asset goes through one of the //! typed helpers (`branding_svg()`, `prompt_template()`, …) so the