Install
openclaw skills install @hith3sh/box-filesManage Box files, folders, collaborations, shared links, metadata, and enterprise content workflows via the Box API. Use this skill when users want to browse enterprise content, manage file sharing, automate document workflows, or coordinate Box Sign signature requests.
openclaw skills install @hith3sh/box-filesAccess Box via the Box API with managed OAuth authentication. Browse files, inspect metadata, manage sharing and collaboration, and coordinate file workflows from chat.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Box API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Box |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Box |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Box API │
│ (User Chat) │ │ (OAuth) │ │ (Files) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Box │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Box │
│ File │ │ Auth │ │ Web App │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Box again."
# List integrations
clawlink_list_integrations
# List Box tools
clawlink_list_tools --integration box
# Search for a specific tool
clawlink_search_tools --query "file" --integration box
All Box tool calls are authenticated automatically by ClawLink using the user's connected Box account.
No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Box API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for box in the list.
clawlink_list_tools --integration box
Response: Returns the live tool catalog for Box.
If Box tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration boxclawlink_list_integrations to confirm Box is connected.clawlink_list_tools --integration box to see the live catalog.clawlink_search_tools with a short query and integration box.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: List files → Get metadata → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute update │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.| Tool | Description | Mode |
|---|---|---|
box_list_folder | List items in a folder | Read |
box_get_file | Get file metadata and details | Read |
box_create_folder | Create a new folder | Write |
box_upload_file | Upload a file to Box | Write |
box_copy_file | Copy a file to another folder | Write |
box_move_file | Move a file to another folder | Write |
box_delete_file | Permanently delete a file | Write |
box_download_file | Download a file from Box | Read |
| Tool | Description | Mode |
|---|---|---|
box_create_collaboration | Add a collaborator to a file or folder | Write |
box_delete_collaboration | Remove a collaborator | Write |
box_add_shared_link_to_file | Add a shared link to a file | Write |
box_add_shared_link_to_folder | Add a shared link to a folder | Write |
box_get_file_collaborators | List collaborators on a file | Read |
| Tool | Description | Mode |
|---|---|---|
box_create_metadata_template | Create a metadata template | Write |
box_create_metadata_instance_on_file | Apply metadata to a file | Write |
box_create_metadata_instance_on_folder | Apply metadata to a folder | Write |
box_get_metadata_template | Get metadata template details | Read |
| Tool | Description | Mode |
|---|---|---|
box_create_box_sign_request | Create a signature request | Write |
box_cancel_box_sign_request | Cancel a pending signature request | Write |
box_get_sign_request | Get signature request status | Read |
| Tool | Description | Mode |
|---|---|---|
box_list_users | List enterprise users | Read |
box_create_user | Create a new managed user | Write |
box_create_group | Create a new group | Write |
box_add_user_to_group | Add a user to a group | Write |
| Tool | Description | Mode |
|---|---|---|
box_create_retention_policy | Create a retention policy | Write |
box_assign_retention_policy | Assign a retention policy | Write |
box_create_legal_hold_policy | Create a legal hold policy | Write |
box_assign_legal_hold_policy | Assign a legal hold policy | Write |
| Tool | Description | Mode |
|---|---|---|
box_ask_question | Ask questions about Box files using AI | Read |
box_create_ai_agent | Create a custom AI agent | Write |
clawlink_call_tool --tool "box_list_folder" \
--params '{
"folder_id": "0",
"limit": 20
}'
clawlink_call_tool --tool "box_get_file" \
--params '{
"file_id": "123456789"
}'
clawlink_call_tool --tool "box_create_folder" \
--params '{
"name": "New Project Folder",
"parent_folder_id": "0"
}'
clawlink_call_tool --tool "box_create_collaboration" \
--params '{
"item": {
"type": "file",
"id": "123456789"
},
"accessible_by": {
"type": "user",
"email": "collaborator@example.com"
},
"role": "viewer"
}'
| Status / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration box. |
| Missing connection | Box is not connected. Direct the user to https://claw-link.dev/dashboard?add=box. |
ItemNotFound | File or folder does not exist. Check the ID. |
Conflict | A file or folder with that name already exists in the target location. |
AccessDenied | No permission to access this resource. Verify account permissions. |
Write rejected | User did not confirm a write action. Always confirm before executing writes. |
openclaw plugins list
/new as a standalone message to reload the catalog.openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
/new again and retry.box.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
