From f6012feda13a760215d6b2b58a28e033207ff9c9 Mon Sep 17 00:00:00 2001 From: Francis Secada Date: Mon, 2 Feb 2026 16:49:31 -0500 Subject: [PATCH] fix: use forward slash in Claude system prompt path for cross-platform compatibility Changed .claude\system-prompt.md to .claude/system-prompt.md Forward slashes work on all platforms (Windows, Linux, macOS) Also streamlined the start-claude output messages Co-Authored-By: Claude Sonnet 4.5 --- justfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/justfile b/justfile index 42a88dc..b66ca9d 100644 --- a/justfile +++ b/justfile @@ -280,7 +280,7 @@ config: # ============================================ # Start Claude with full project context and multi-agent orchestration -start-claude: +start-claude *args="": @echo "🤖 Starting Claude with Pygentic-AI context..." @echo "📋 System Prompt: .claude/system-prompt.md (Multi-agent orchestration)" @echo "📖 Project Context: CLAUDE.md (Initialization guide)" @@ -302,9 +302,8 @@ start-claude: @echo " • MCP server routing (Sequential, Context7, Magic, Playwright, Morphllm, Serena)" @echo " • Project architecture and workflows" @echo "" - @# Note: Actual Claude CLI integration depends on available tooling - @# This demonstrates the intended workflow - @cat .claude/system-prompt.md CLAUDE.md + @echo "🚀 Launching Claude Code CLI..." + @echo " System Prompt: .claude/system-prompt.md" + @echo " Use /init in Claude to load CLAUDE.md context" @echo "" - @echo "💡 Tip: Use /init command in Claude to load project context" - @echo "📝 Available commands: just --list" + claude --system-prompt-file .claude/system-prompt.md {{args}}