sync_catalog
Scans markdown files in the catalog directory to build in-memory indices for poetry management. Call this tool before using other catalog functions to ensure your poetry collection is properly indexed.
Instructions
Synchronize catalog from filesystem.
Scans all markdown files in catalog/ directory and builds in-memory indices. This should be called before using other catalog tools.
Args: force_rescan: If True, rescan all files even if already loaded
Returns: SyncResult with statistics about the sync operation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| force_rescan | No |
Input Schema (JSON Schema)
{
"properties": {
"force_rescan": {
"default": false,
"type": "boolean"
}
},
"type": "object"
}