Prime Vault Context
vault_primeLoad all documents from a vault into the session at startup, ordered by priority and recency, to orient the AI agent on available knowledge.
Instructions
Pre-load all vault documents into the current session by priority order.
Equivalent to vault_inject with no query: loads all documents ordered by priority weight (authoritative first), then by recency. Use at session start to orient yourself on all knowledge available in a vault.
Args: vault_name: Vault name or ID. max_tokens: Hard token budget. Effective cap = max_tokens * safety_factor. cap_behavior: 'best_effort' (inject as many docs as fit) or 'strict' (error if cap exceeded). session_token: Optional opaque string used as per-session cache key. max_single_doc_tokens: Truncate individual documents to this many tokens. safety_factor: Fraction of max_tokens to use as effective cap (default 0.60 = 60%).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_tokens | No | ||
| vault_name | Yes | ||
| cap_behavior | No | best_effort | |
| safety_factor | No | ||
| session_token | No | ||
| max_single_doc_tokens | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |