AgentSkillsCN

integration-box

AgenCo 支持的 Box 操作

SKILL.md
--- frontmatter
name: integration-box
description: "Box actions available through AgenCo"
user-invocable: false
disable-model-invocation: false

Box

Actions available through AgenCo secure gateway. All credentials are stored in the cloud vault — never exposed locally.

Actions

ActionDescription
get_userRetrieves current user information
list_filesGets files in folders
get_file_infoFetches file metadata
upload_fileUploads new files to Box
download_fileDownloads file content
delete_fileRemoves files from Box
create_folderCreates new folders
list_folder_itemsGets contents of folders
create_collaborationShares files and folders with users

How to Use

Always search first to discover exact tool names and their input schemas, then call the tool.

Step 1: Search for the tool

bash
agenco search-tools '{"queries":["box get user"]}'

The response includes toolName (exact name) and inputSchema (required/optional parameters).

Step 2: Call the tool

Use the exact toolName and match the inputSchema from the search results:

bash
agenco call-tool '{"toolName":"<toolName from search>","input":{...}}'

Example

bash
# Find the right tool
agenco search-tools '{"queries":["box get user"]}'

# Call it (use the exact toolName and schema from the search result)
agenco call-tool '{"toolName":"box_get_user","input":{...}}'

If Box is not connected, run agenco list-connected-integrations to check, then connect it via the Shield UI.