Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

box盒子

Agent Skill

box 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,261

周安装

51

GitHub Stars

4

下载量

396
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:box(盒子)
来源仓库:https://github.com/box/box-for-ai
仓库路径:skills/box
安装命令:
npx skills add https://github.com/box/box-for-ai --skill box
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/box/box-for-ai --skill box

简介

Box 用于在应用代码中实现内容工作流,支持搜索、AI 集成和元数据管理。

  • 适合需要与 Box 平台集成进行内容检索、协作或批量操作的场景。
  • 根据操作类型选择工具,优先使用 MCP 结构化接口处理常见任务。
  • 使用前需完成工具清单并确认身份认证方式,避免重复造轮子。
  • 涉及共享、webhook 或 AI 功能时,应先测试最小可行路径再扩展。

SKILL.md

Box

Overview

Implement Box content workflows in application code. Reuse the repository's existing auth and HTTP or SDK stack whenever possible, identify the acting Box identity before coding, and make the smallest end-to-end path work before layering on sharing, metadata, webhooks, or AI.

Route The Request

Tool selection

After completing step 0 (tool inventory), use this table to pick the right tool for the operation:

Operation typePreferRationale
Most agent workflows (search, AI, content management, metadata, hubs)MCPStructured I/O, concurrent-safe, covers the common cases
Bulk operations (batch moves, folder trees, batch metadata)CLICompact output, --fields filtering, full API surface without requiring manual REST auth
Verification and smoke testsCLIReproducible, user can copy-paste commands
Operations outside MCP scopeCLIFull API coverage
Last-resort fallback when MCP is unavailable and CLI is unavailable or not an optionDirect RESTOnly after explicit user confirmation and REST auth setup guidance
Building application code (SDK/REST endpoints, webhook handlers)SDK or REST in codeNot agent tooling — write code the user ships

MCP covers the majority of common agent workflows and is the default when it has a matching tool. Use CLI when the operation falls outside MCP's scope, when compact and field-filtered output matters, or for reproducible verification commands. If MCP is unavailable, guide the user through MCP setup first; if CLI is unavailable, guide the user through CLI setup next. Use direct REST only as a last resort after explicitly asking the user to confirm that REST fallback is acceptable.

Domain routing

Choose which reference files to read based on what the user needs:

If the user needs...Read firstPair withMinimal verification
Uploads, folders, listings, downloads, shared links, collaborations, or metadatareferences/content-workflows.mdreferences/auth-and-setup.mdRead-after-write call using the same actor
Organizing, reorganizing, or batch-moving files across folders; bulk metadata tagging; migrating folder structuresreferences/bulk-operations.mdreferences/content-workflows.md, references/auth-and-setup.md, references/ai-and-retrieval.mdInventory source, verify move count matches plan
Event-driven ingestion, new-file triggers, or webhook debuggingreferences/webhooks-and-events.mdreferences/auth-and-setup.md, references/troubleshooting.mdSignature check plus duplicate-delivery test
Search, document retrieval, summarization, extraction, or Box AIreferences/ai-and-retrieval.mdreferences/auth-and-setup.mdRetrieval-quality check before answer formatting
401, 403, 404, 409, 429, missing content, or wrong-actor bugsreferences/troubleshooting.mdreferences/auth-and-setup.mdReproduce with the exact actor, object ID, and endpoint
Unsure which workflow appliesreferences/workflows.mdreferences/auth-and-setup.mdChoose the smallest Box object/action pair first

Workflow

Follow these steps in order when coding against Box.

  1. Inventory available Box tooling:

- MCP: Call who_am_i. If it fails, try mcp_auth. If auth still fails, read references/auth-and-setup.md for MCP setup steps. Record whether MCP is available. - CLI: Run box users:get me --json. Record whether CLI is available. - If MCP is unavailable, walk the user through MCP setup and retry MCP auth before considering other tooling. - If CLI is unavailable, walk the user through CLI setup and retry box users:get me --json. - If MCP remains unavailable and CLI remains unavailable or the user declines CLI, ask for explicit confirmation before using direct REST fallback. If approved, use references/rest-calls.md for auth and request patterns. - If the task is building application code (adding SDK endpoints, webhook handlers), tooling availability is secondary — proceed to step 1.

  1. Inspect the repository for existing Box auth, SDK or HTTP client, env vars, webhook handlers, Box ID persistence, and tests.
  2. Determine the acting identity before choosing endpoints: connected user, enterprise service account, app user, or platform-provided token.
  3. Select the tool using the tool selection table and identify the domain reference using the domain routing table above.
  4. Confirm whether the task changes access or data exposure. Shared links, collaborations, auth changes, large-scale downloads, and broad AI retrieval all need explicit user confirmation before widening access or scope.
  5. Read the reference for the selected tool (references/mcp-tool-patterns.md for MCP, references/box-cli.md for CLI, references/rest-calls.md for direct REST fallback) and the domain reference from the routing table:

- Box MCP tool usage patterns: references/mcp-tool-patterns.md - Box CLI local verification: references/box-cli.md - Direct REST fallback patterns: references/rest-calls.md - Auth setup, actor selection, SDK vs REST: references/auth-and-setup.md - Workflow router: references/workflows.md - Content operations: references/content-workflows.md - Bulk file organization, batch moves, folder restructuring: references/bulk-operations.md - Webhooks and events: references/webhooks-and-events.md - AI and retrieval: references/ai-and-retrieval.md - Debugging and failure modes: references/troubleshooting.md

  1. Implement the smallest end-to-end flow that proves the integration works.
  2. Add a runnable verification step. Prefer the repository's tests first; otherwise use native Box CLI commands when CLI is available and authenticated. Use direct Box REST verification only as a last resort after explicit user confirmation.
  3. Summarize the deliverable with auth context, Box IDs, env vars or config, and the exact verification command or test.

Guardrails

  • Preserve the existing Box auth model unless the user explicitly asks to change it.
  • Check the current official Box docs before introducing a new auth path, changing auth scope, or changing Box AI behavior.
  • Prefer an official Box SDK when the codebase already uses one or the target language has a maintained SDK. Otherwise use direct REST calls with explicit request and response handling.
  • In agent workflows, do not jump straight to direct REST when MCP or CLI can be set up. Offer setup guidance for MCP first and CLI second before proposing REST fallback.
  • Never use direct REST fallback silently. Ask the user for explicit confirmation before proceeding with REST calls.
  • Keep access tokens, client secrets, private keys, and webhook secrets in env vars or the project's secret manager.
  • Distinguish file IDs, folder IDs, shared links, metadata template identifiers, and collaboration IDs.
  • Treat shared links, collaborations, and metadata writes as permission-sensitive changes. Confirm audience, scope, and least privilege before coding or applying them.
  • Require explicit confirmation before widening external access, switching the acting identity, or retrieving more document content than the task truly needs.
  • When a task requires understanding document content — classification, extraction, categorization — use Box AI (Q&A, extract) as the first method attempted. Box AI operates server-side and does not require downloading file bodies. Fall back to metadata inspection, previews, or local analysis only if Box AI is unavailable, not authorized, or returns an error on the first attempt.
  • Pace Box AI calls at least 1–2 seconds apart. For content-based classification of many files, classify a small sample first to validate the prompt and discover whether cheaper signals (filename, extension, metadata) can sort the remaining files without additional AI calls.
  • Avoid downloading file bodies or routing content through external AI pipelines when Box-native methods (Box AI, search, metadata, previews) can answer the question server-side.
  • Request only the fields the application actually needs, and persist returned Box IDs instead of reconstructing paths later.
  • Run Box CLI commands strictly one at a time. The CLI does not support concurrent invocations and parallel calls cause auth conflicts and dropped operations. For bulk work in agent-driven sessions, default to CLI and use REST only after MCP/CLI setup attempts fail or CLI is not an option and the user explicitly confirms REST fallback.
  • Make webhook and event consumers idempotent. Box delivery and retry paths can produce duplicates.
  • Keep AI retrieval narrow for search and Q&A tasks. Search and filter first, then retrieve only the files needed for the answer. This does not apply to Box AI classification — when classifying documents, Box AI should be tried first per the content-understanding guardrail above.
  • Do not use box configure:environments:get --current as a routine auth check because it can print sensitive environment details.

Verification

  • Prefer the repository's existing tests or app flows when they already cover the changed Box behavior.
  • If no better verification path exists, prefer native box CLI commands when box is installed and authenticated.
  • Use direct REST verification only after confirming MCP and CLI are unavailable or not an option and after the user explicitly approves REST fallback.
  • For REST fallback, guide the user through token setup (BOX_ACCESS_TOKEN) and safe auth handling before issuing requests.
  • Confirm CLI auth with box users:get me --json.
  • Verify mutations with a read-after-write call using the same actor, and record the object ID.
  • For webhooks, test the minimal happy path, duplicate delivery, and signature failure handling.
  • For AI flows, test retrieval quality separately from answer formatting.

Example smoke checks:

box users:get me --json
box folders:get 0 --json --fields id,name,item_collection
box folders:items 0 --json --max-items 20
box search "invoice" --json --limit 10
curl -sS -H "Authorization: Bearer $BOX_ACCESS_TOKEN" -H "Accept: application/json" "https://api.box.com/2.0/folders/0?fields=id,name,item_collection"

Deliverable

The final answer should include:

  • Acting auth context used for the change
  • Box object type and IDs touched
  • Env vars, secrets, or config expected by the integration
  • Files or endpoints added or changed
  • Exact verification command, script, or test path
  • Any permission-sensitive assumptions that still need confirmation

References

  • references/mcp-tool-patterns.md: best-practice patterns for working with Box content via the Box MCP server — search, file writes, metadata extraction, Box AI tool selection, and general guidelines
  • references/auth-and-setup.md: auth path selection, SDK vs REST choice, existing-codebase inspection, and current Box doc anchors
  • references/box-cli.md: CLI-first local auth, smoke-test commands, and safe verification patterns
  • references/rest-calls.md: direct REST fallback patterns, auth setup, and safe request templates
  • references/workflows.md: quick workflow router when the task is ambiguous
  • references/content-workflows.md: uploads, folders, listings, downloads, shared links, collaborations, metadata, and file moves
  • references/bulk-operations.md: organizing files at scale, batch moves, folder hierarchy creation, serial execution, and rate-limit handling
  • references/webhooks-and-events.md: webhook setup, event-feed usage, idempotency, and verification
  • references/ai-and-retrieval.md: search-first retrieval, Box AI usage, and external AI guardrails
  • references/troubleshooting.md: common failure modes and a debugging checklist
  • examples/box-prompts.md: example prompts for realistic use cases

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.64%
按下载量换算149

Claude

30.91%
按下载量换算122

Cursor

17.15%
按下载量换算68

Gemini CLI

9.19%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills