fix: resolve LocalSandbox execution issues on macOS with Java 25#6
Open
cpage-pivotal wants to merge 2 commits intospring-ai-community:mainfrom
Open
fix: resolve LocalSandbox execution issues on macOS with Java 25#6cpage-pivotal wants to merge 2 commits intospring-ai-community:mainfrom
cpage-pivotal wants to merge 2 commits intospring-ai-community:mainfrom
Conversation
Add AutoConfiguration.imports file to support Spring Boot 3.x's new autoconfiguration discovery mechanism. This ensures ClaudeAgentAutoConfiguration and SandboxAutoConfiguration are properly discovered in Spring Boot 3.x applications. The existing spring.factories file is retained for Spring Boot 2.x compatibility. Fixes the "No qualifying bean of type 'AgentClient$Builder' available" error when running samples with Spring Boot 3.5.0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes critical issues preventing LocalSandbox from executing Claude CLI commands on macOS with Java 25:
#!/usr/bin/env nodeissuescdinstead of using.directory()which has severe restrictions on macOSTest Plan
Technical Details
Modified Files:
LocalSandbox.java- Core fixes for environment, directory handling, and auto-creationClaudeCliDiscovery.java- Command name resolution fixThese changes resolve the root cause of sandbox execution failures discovered during local testing.