Skip to main content
Glama

kin_artifact_list

Read-onlyIdempotent

Lists every tracked file—code, Dockerfiles, lockfiles, configurations, assets, symlinks—at one semantic change, so you can see what the repository contains before assessing impact.

Instructions

List the repository's tracked files at one semantic change, code and non-code alike: Dockerfiles, lockfiles, configuration, assets, symlinks. Call it for what the repository contains, not what the parsers turned into entities.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo
source_change_idNoExact semantic change ID. Defaults to the current branch head.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.16

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false and openWorldHint=false, so the safety profile is covered. The description adds genuine scope context (Dockerfiles, lockfiles, config, assets, symlinks are included) but says nothing about pagination behavior, default limits, or what happens with a large repo.

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?

Two tight sentences, zero filler, with the core scope (tracked files at one change) front-loaded and the disambiguation clause second.

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

Completeness4/5

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

For a read-only listing tool with full annotation coverage and no output schema, the description tells the agent what is returned (all tracked files, code and non-code) and when to use it. Only pagination semantics and the default 'current branch head' behavior for omitted source_change_id go unaddressed.

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 only 33% – source_change_id is documented, but limit and offset are not. The description's 'at one semantic change' hints at source_change_id but adds no detail on the limit/offset paging parameters, so the gap is only partially compensated.

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

Purpose5/5

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

States a specific verb (List) and resource (repository's tracked files) scoped to one semantic change, and explicitly distinguishes itself from the parser-based sibling by saying 'not what the parsers turned into entities.' An agent can separate this from list_file_entities without opening either schema.

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

Usage Guidelines4/5

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

Provides a clear usage rule – call it 'for what the repository contains' rather than entity output – which implicitly routes the agent away from list_file_entities. There is no explicit when-not condition or named alternative, but the context is unambiguous for this repo-listing tool.

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