You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add /tooltest slash command and bump iOS deployment target to 26.0
- Add `toolTest(suite:)` case to `SlashCommand` enum for running chat-driven V2 tool test suites
- Implement `/tooltest [suite|list]` parsing in `SlashCommandParser` supporting optional suite ID argument
- Add `executeToolTestCommand` to dispatch to `ToolTestSuiteService`, listing suites or running a specified suite with missing-tool validation
- Update help text and extended documentation to document the new `/tooltest` command
- Set `IPHONEOS_DEPLOYMENT_TARGET` to 26.0 in both Debug and Release build configurations
Copy file name to clipboardExpand all lines: Axon.xcodeproj/project.pbxproj
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -717,6 +717,7 @@
717
717
INFOPLIST_KEY_NSLocalNetworkUsageDescription = "Axon provides a local API server to allow developer tools like Cline to access your conversations via OpenAI-compatible endpoints.";
718
718
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Axon needs access to your photos to attach images to messages.";
719
719
INFOPLIST_KEY_NSSupportsLiveActivities = YES;
720
+
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
720
721
LD_RUNPATH_SEARCH_PATHS = (
721
722
"$(inherited)",
722
723
"@executable_path/Frameworks",
@@ -783,6 +784,7 @@
783
784
INFOPLIST_KEY_NSLocalNetworkUsageDescription = "Axon provides a local API server to allow developer tools like Cline to access your conversations via OpenAI-compatible endpoints.";
784
785
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Axon needs access to your photos to attach images to messages.";
0 commit comments