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