toolbox-browser-tutor
Specialized tutorial cheat sheet for the Vault Toolbox Browser Extension.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Specialized tutorial cheat sheet for the Vault Toolbox Browser Extension.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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