Skip to main content
Glama

sync

Update the vector store from the documents directory. Choose to force a full rebuild, retry previously skipped files, or prune sources excluded by .lilbeeignore.

Instructions

Sync the documents directory into the vector store.

force_rebuild drops every table and re-ingests. retry_skipped clears failed-file skip markers without dropping the store. prune_ignored drops sources a .lilbeeignore now excludes; without it, the patterns only govern what sync takes in.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
force_rebuildNo
prune_ignoredNo
retry_skippedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.5
    • addedInput schema / properties / prune_ignored
      Added value: +{
      +  "type": "boolean"
      +}
  2. Changed5 schema fields changedv1.0.2
    • removedInput schema / properties / force_rebuild / default
      Removed value: -false
    • removedInput schema / properties / force_rebuild / title
      Removed value: -"Force Rebuild"
    • removedInput schema / properties / retry_skipped / default
      Removed value: -false
    • removedInput schema / properties / retry_skipped / title
      Removed value: -"Retry Skipped"
    • removedInput schema / title
      Removed value: -"syncArguments"
  3. First observedv1.0.0

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of disclosing side effects. It does so explicitly for each flag: force_rebuild 'drops every table', retry_skipped 'clears failed-file skip markers', and prune_ignored 'drops sources' without dropping the store. It also notes the default behavior of prune_ignored. This provides meaningful behavioral safety information that is absent from the schema.

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, focused paragraph that front-loads the primary action and then explains each flag using backticks for clarity. It is concise without being overly terse, and every sentence contributes to describing behavior. The only minor inefficiency is the lack of a visual break between purpose and parameter details, but it remains well-structured.

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?

Given the presence of an output schema, the description appropriately focuses on the tool's purpose and parameter effects. It covers all three parameters and their edge cases but does not mention default behavior when no flags are passed, potential side effects on existing data beyond force_rebuild, or concurrency/asynchronous behavior. These are likely captured in the output schema, so the description is largely complete for the agent's needs.

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

Parameters5/5

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

Schema coverage is 0%, so the description is the sole source of parameter meaning. It explains all three boolean parameters in detail with concrete effects and consequences. This fully compensates for the schema's lack of descriptions, giving the agent clear guidance on what each flag does.

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 opens with a specific verb and resource: 'Sync the documents directory into the vector store.' This clearly states the tool's core function. While it doesn't explicitly name sibling alternatives, the phrasing is distinct enough (e.g., vs. 'add' or 'crawl') to avoid confusion, though an explicit differentiation would warrant 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?

The description explains what the three boolean flags do but does not provide any context on when to use this tool versus siblings like 'init', 'add', or 'crawl'. There is no mention of typical use cases, prerequisites, or conditions that would make 'sync' the appropriate choice over others. This leaves the agent to infer usage context.

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