Skip to main content
Glama

init_vault

Set up or repair the vault directory structure and default templates by creating only missing items. Safe to re-run after cloning the repo or moving to a new machine.

Instructions

Initialize or repair vault directory structure and default templates.

Safe to re-run: only creates missing items, never overwrites existing files. Call this after cloning the repo or setting up on a new machine.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden, and it does disclose the key behavioral trait: it is idempotent and non-destructive ('only creates missing items, never overwrites existing files'). It stops short of stating permission/auth requirements or whether any output messaging signals partial repair.

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?

Three short sentences, each earning its place: purpose first, then the safety guarantee, then the timing cue. No waste and front-loaded with the action.

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?

An output schema exists, so return values need no explanation, and the description covers purpose, safety, and timing for a parameterless tool. Only minor gaps remain around environment prerequisites or failure behavior when the vault path is invalid.

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

Parameters4/5

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

The tool takes zero parameters, so per the rubric the baseline is 4. There is nothing further the description could add on parameter semantics.

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?

States a specific verb (initialize/repair) and resource (vault directory structure and default templates), so the agent knows exactly what the tool does. It doesn't explicitly contrast itself with any sibling, but no sibling in the list overlaps with this scaffolding function.

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?

Gives a clear triggering context: 'Call this after cloning the repo or setting up on a new machine.' It does not name explicit exclusions or alternatives, but the when-to-use condition is unambiguous.

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