Skip to main content
Glama

repository_create

Create a validated local Git repository from an architecture declaration, without creating a commit.

Instructions

Create a validated local Git repository without creating a commit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
target_pathYes
initial_branchNomain
declaration_pathNoarchitecture.yaml
declaration_sourceYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations provided, the description must disclose behavioral traits itself. It does add two useful facts: the repository is 'validated' and no commit is created. However, it does not explain what validation does, whether the operation is destructive to an existing path, what side effects occur, or what happens on failure.

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

Conciseness4/5

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

The description is a single sentence with no filler and front-loads the core action. The qualifiers 'validated' and 'without creating a commit' earn their place, though the extreme brevity leaves key context absent.

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

Completeness1/5

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

For a tool with 4 parameters, 2 required, no annotations, and zero schema description coverage, this description is far from complete. An agent cannot determine what declaration_source should contain, what validation is performed, how target_path is handled, or how this differs from repository_initialize.

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

Parameters1/5

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

Schema description coverage is 0% and the description provides no parameter-level meaning. target_path, declaration_source, initial_branch, and declaration_path are left entirely to the schema, which only gives titles and defaults. The description does not compensate for the low coverage.

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 verb ('Create'), a resource ('local Git repository'), and decisive qualifiers ('validated', 'without creating a commit'). This clearly separates it from repository_commit and repository_clone in general intent, though it does not explicitly name any sibling tool.

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?

The description implies the tool is used to initialize a fresh repository and deliberately avoids committing, but gives no explicit guidance on when to choose it over siblings like government_repository_initialize, repository_initialize, or repository_clone. There are no when-to-use or when-not-to-use conditions.

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