Skip to main content
Glama

read_skill_resource

Retrieve a specific resource file from a skill by its canonical ID and relative path. Access skill assets stored in public GitHub repositories for reuse.

Instructions

Read one resource file belonging to a skill.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesCanonical skill ID
pathYesResource path relative to skill root

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It only says 'read,' which implies a non-destructive operation, but it does not mention what the tool returns (e.g., file content), error handling, permissions, or any side effects. This is a significant gap for a tool with no annotation safety profile.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with zero waste. It efficiently states the tool's purpose without redundant elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While the tool is simple with two fully documented parameters, the absence of an output schema and any description of the return format or potential errors leaves an agent uncertain about the result. The description is too minimal to be fully actionable on its own.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so both 'id' and 'path' are already documented in the input schema. The description adds no additional meaning about the parameters, but since the schema fully covers them, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource: 'Read one resource file belonging to a skill.' It unambiguously identifies the operation and distinguishes it from listing skills or resources. However, it does not explicitly name sibling tools or contrast them, so it stops short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives like list_skill_resources or read_skill. The description implies usage through the name and parameters, but no explicit context or exclusions are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.