Record Class AnthropicApi.Skill

java.lang.Object
java.lang.Record
org.springframework.ai.anthropic.api.AnthropicApi.Skill
Record Components:
type - The skill type: "anthropic" for pre-built skills, "custom" for uploaded skills
skillId - Skill identifier - short name for Anthropic skills (e.g., "xlsx", "pptx"), generated ID for custom skills
version - Optional version - "latest", date-based (e.g., "20251013"), or epoch timestamp
Enclosing class:
AnthropicApi

public static record AnthropicApi.Skill(AnthropicApi.SkillType type, String skillId, String version) extends Record
Represents a Claude Skill - either pre-built Anthropic skill or custom skill. Skills are collections of instructions, scripts, and resources that extend Claude's capabilities for specific domains.
Since:
1.0.0
Author:
Christian Tzolov, Mariusz Bernacki, Thomas Vitale, Jihoon Kim, Alexandros Pappas, Jonghoon Park, Claudio Silva Junior, Filip Hrisafov, Soby Chacko, Austin Dase
  • Constructor Details

    • Skill

      public Skill(AnthropicApi.SkillType type, String skillId)
      Create a Skill with default "latest" version.
      Parameters:
      type - Skill type
      skillId - Skill ID
    • Skill

      public Skill(AnthropicApi.SkillType type, String skillId, String version)
      Creates an instance of a Skill record class.
      Parameters:
      type - the value for the type record component
      skillId - the value for the skillId record component
      version - the value for the version record component
  • Method Details

    • builder

      public static AnthropicApi.Skill.SkillBuilder builder()
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • type

      public AnthropicApi.SkillType type()
      Returns the value of the type record component.
      Returns:
      the value of the type record component
    • skillId

      public String skillId()
      Returns the value of the skillId record component.
      Returns:
      the value of the skillId record component
    • version

      public String version()
      Returns the value of the version record component.
      Returns:
      the value of the version record component