fix: change default of register in @GrowToolHint to true so tools are returned
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 4m33s

This commit is contained in:
jade
2026-08-13 17:15:01 +09:00
parent 46df842732
commit 34e678ad63

View File

@@ -23,10 +23,23 @@ import java.lang.annotation.Target;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface GrowToolHint {
boolean register() default false;
boolean register() default true;
boolean requiresApproval() default false;
String categoryKey() default "com";
String mappingId() default "";
String inputSchemaResource() default "";
String outputSchemaResource() default "";
// Meta 정보 추가 (보고용 샘플)
String displayDescription() default "";
String functionDescription() default "";
String whenToUse() default "";
String whenNotToUse() default "";
String ioLimits() default "";
String[] exampleQueries() default {};
boolean destructive() default false;
boolean idempotent() default false;
String[] tags() default {};
String[] requiredEnvKeys() default {};
String ownerOrg() default "";
}