From 651f66db007ff8dbd68f27617d947f239bd2a443 Mon Sep 17 00:00:00 2001 From: Paolo Mainardi Date: Thu, 11 Jun 2026 19:13:19 +0200 Subject: [PATCH] fix(claude): import the claude-fix-settings recipe in shared recipes PR #518 added sjust/recipes/shared/09-claude-fix-settings.just and its scripts but did not add the matching import to sjust/recipes/04-shared.just. The recipe file was therefore never loaded, so 'sjust claude-fix-settings' failed with 'justfile does not contain recipe'. Add the import line, consistent with the sibling 07 and 08 claude recipes. Verified with 'just --list': claude-fix-settings and claude-fix-settings-info now appear. Assisted-by: claude-code/claude-opus-4-8[1m] --- sjust/recipes/04-shared.just | 1 + 1 file changed, 1 insertion(+) diff --git a/sjust/recipes/04-shared.just b/sjust/recipes/04-shared.just index f827549..3ef43f2 100644 --- a/sjust/recipes/04-shared.just +++ b/sjust/recipes/04-shared.just @@ -9,3 +9,4 @@ import "shared/05-rtk.just" import "shared/06-shell.just" import "shared/07-claude-statusline.just" import "shared/08-claude-usage.just" +import "shared/09-claude-fix-settings.just"