toolbox-browser-tutor
Specialized tutorial cheat sheet for the Vault Toolbox Browser Extension.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Specialized tutorial cheat sheet for the Vault Toolbox Browser Extension.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
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.
| name | toolbox-browser-tutor |
| description | Specialized tutorial cheat sheet for the Vault Toolbox Browser Extension. |
| applicable_apps | ["toolbox-browser"] |
This skill provides the specialized example data and narrative notes for the Toolbox Browser Extension tutorial.
Explain why this tool is chosen: it demonstrates UI orchestration, sequential API calls, and local VQL prototyping.
Render the following prompt in a fenced block:
:feature Workflow Cancellation Tool. As an admin, I need to select an object and retrieve all its records with active workflows. I want to see a table with workflow details and record metadata. I should be able to select multiple workflows and cancel them in bulk. The tool should handle the cancellation asynchronously and show me the progress.
Workflow Query:
SELECT object_name__sys, object_record_id__sys, (SELECT id, label__sys, name__sys, owner__sys, type__sys, status__sys, due_date__sys FROM active_workflow__sysr) FROM active_workflow_item__sys WHERE (object_name__sys = '{objectName}')
Cancellation Endpoint:
POST /api/{version}/object/workflow/actions/cancelworkflows
Payload (form-urlencoded):
workflow_ids=id1,id2,id3