vault_promote
Promote one or more captures into a structured note by synthesizing content, adding titles, summaries, and tags, with optional auto-linking.
Instructions
Promote one or more captures into a structured note.
Actions: promote: Promote captures into a note. params: capture_paths (list[str]), title (str), summary (str), domain (str), content (str), tags (list[str] | None), aliases (list[str] | None), confidence (float, default 0.7), auto_link (bool, default True)
WORKFLOW — Claude MUST follow these steps:
LIST: Call vault_read(action="list_captures", include_content=True) to get all unpromoted captures with full content in a single call.
SELECT & SYNTHESIZE: Choose related captures to promote together. Generate title, summary, domain, content, confidence, tags.
CONFIRM: Present the full synthesis to the user and wait for approval. Promotion is semi-destructive — source captures are marked as promoted and cannot be re-promoted.
PROMOTE: Call this tool with action="promote" and the confirmed output.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| title | No | ||
| action | Yes | ||
| domain | No | ||
| aliases | No | ||
| content | No | ||
| summary | No | ||
| auto_link | No | ||
| confidence | No | ||
| capture_paths | No |