Skip to main content
Glama
yaaif

@yaaif/platform-mcp

by yaaif

yaaif_skill_read_file

Retrieve the contents of a skill pack file from the tenant skills tree to access its definitions and configuration.

Instructions

Read a skill pack file from the tenant skills tree.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.5

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. The only behavioral clue is the verb 'read', implying a non-mutating operation, but it does not state what is returned, whether it is idempotent, permissions required, or error behavior. This adds little beyond the tool name.

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 no unnecessary words. It immediately communicates the core action and resource without fluff.

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?

This is a simple one-parameter tool, but since there is no output schema or annotations, the description should explicitly mention the return value (file contents) and clarify path semantics. It leaves an agent guessing about the output format and how to construct a valid path, making it incomplete.

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?

The schema provides only a `path` string with no description (0% coverage). The description adds some meaning by clarifying that the path refers to a file within the 'tenant skills tree', which gives an agent a namespace for the path. However, it does not explain the expected path format or whether it is relative/absolute, leaving partial compensation.

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 specific action ('Read') and a specific resource ('skill pack file') within a defined scope ('tenant skills tree'). It is clear and distinct from write/list siblings, though it does not explicitly contrast itself with similar reading tools like yaaif_skill_file_tree or yaaif_file_load_context.

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?

No guidance is provided on when to use this tool versus alternatives. The description does not mention prerequisites, such as obtaining a valid path via yaaif_skill_file_tree, nor does it indicate scenarios where another tool should be preferred.

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

Deploy Server

Other Tools