Home / Class/ SkillListResponse Class — anthropic-sdk-python Architecture

SkillListResponse Class — anthropic-sdk-python Architecture

Architecture documentation for the SkillListResponse class in skill_list_response.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  eae24b80_2a05_fb15_b35e_40039bca5fc6["SkillListResponse"]
  17ce5647_6f06_0676_a4a5_e378a3f57cb1["BaseModel"]
  eae24b80_2a05_fb15_b35e_40039bca5fc6 -->|extends| 17ce5647_6f06_0676_a4a5_e378a3f57cb1
  1388c69f_7feb_fbd3_5510_3a27904e9a9b["skill_list_response.py"]
  eae24b80_2a05_fb15_b35e_40039bca5fc6 -->|defined in| 1388c69f_7feb_fbd3_5510_3a27904e9a9b

Relationship Graph

Source Code

src/anthropic/types/beta/skill_list_response.py lines 10–49

class SkillListResponse(BaseModel):
    id: str
    """Unique identifier for the skill.

    The format and length of IDs may change over time.
    """

    created_at: str
    """ISO 8601 timestamp of when the skill was created."""

    display_title: Optional[str] = None
    """Display title for the skill.

    This is a human-readable label that is not included in the prompt sent to the
    model.
    """

    latest_version: Optional[str] = None
    """The latest version identifier for the skill.

    This represents the most recent version of the skill that has been created.
    """

    source: str
    """Source of the skill.

    This may be one of the following values:

    - `"custom"`: the skill was created by a user
    - `"anthropic"`: the skill was created by Anthropic
    """

    type: str
    """Object type.

    For Skills, this is always `"skill"`.
    """

    updated_at: str
    """ISO 8601 timestamp of when the skill was last updated."""

Extends

Frequently Asked Questions

What is the SkillListResponse class?
SkillListResponse is a class in the anthropic-sdk-python codebase, defined in src/anthropic/types/beta/skill_list_response.py.
Where is SkillListResponse defined?
SkillListResponse is defined in src/anthropic/types/beta/skill_list_response.py at line 10.
What does SkillListResponse extend?
SkillListResponse extends BaseModel.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free