vault-vql-builder
Guarantees 100% correct, verified VQL queries. Use whenever creating, modifying, or troubleshooting any Vault Query Language (VQL) statement.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guarantees 100% correct, verified VQL queries. Use whenever creating, modifying, or troubleshooting any Vault Query Language (VQL) statement.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | vault-vql-builder |
| description | Guarantees 100% correct, verified VQL queries. Use whenever creating, modifying, or troubleshooting any Vault Query Language (VQL) statement. |
| triggers | ["vql","query","find","select"] |
| applicable_apps | ["toolbox-browser"] |
This skill enforces absolute correctness of Vault Query Language (VQL) statements by eliminating SQL-like assumptions and requiring live, empirical verification against a Veeva Vault.
Before implementing, changing, or committing any VQL query in the codebase, you MUST verify its syntax and structure:
vault-developer-mcp tools (mcp_search_api_reference or mcp_search_developer_docs) to confirm the object, fields, and options are valid.node .agents/scripts/vault_api.js vql "SELECT id, name__v FROM document__v LIMIT 1"
FAILURE. Ensure the field list matches exactly.If the Vault API Utility is NOT_CONFIGURED or fails to connect, you MUST NOT proceed with the implementation on assumed syntax. Instead:
node .agents/scripts/vault_api.js vql "YOUR_QUERY"
Implementation patterns for the Vault Toolbox Browser Extension (Manifest V3).
Specialized design challenges for the Vault Toolbox Browser Extension, focusing on VQL prototyping.
Specialized audit for the Vault Toolbox Browser Extension, focusing on Island Architecture and UI visibility.
Specialized data grid implementation for the Vault Toolbox Browser Extension using TanStack Table/Virtual.
Specialized design requirements for the Vault Toolbox Browser Extension, focusing on UI visibility.
Specialized testing and dev-server protocol for the Vault Toolbox Browser Extension.