Add Box Tools plugin (box_tools) v0.0.1 - #2765
Merged
Merged
Conversation
crazywoola
approved these changes
Jul 28, 2026
crazywoola
left a comment
Member
There was a problem hiding this comment.
✅ LGTM
Decision: Approve
Local Check Results
| Check | Status | Detail | Required action |
|---|---|---|---|
PR content language |
✅ Pass | PR title/body CJK ratio=0.0% (zh=0, en=2970, ignored_zh=0, allowed_zh<=0) | None. |
Project structure |
✅ Pass | All expected files present: manifest.yaml, README.md, PRIVACY.md. _assets/: yes. | None. |
Manifest author |
✅ Pass | author is valid. | None. |
Icon validation |
✅ Pass | icon exists: _assets/icon.svg | None. |
Version check |
✅ Pass | version 0.0.1 is available. | None. |
README language |
✅ Pass | README.md CJK ratio=0.0% (zh=0, en=2729, allowed_zh<=0) | None. |
PRIVACY.md |
✅ Pass | PRIVACY.md exists and is non-empty. | None. |
Dependency install |
✅ Pass | requirements installed successfully. | None. |
dify_plugin version |
✅ Pass | dify_plugin version 0.10.0 satisfies >= 0.9.0. | None. |
Install test |
✅ Pass | plugin install test passed. | None. |
Packaging test |
✅ Pass | packaging check passed. | None. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Plugin Submission
Plugin information
box_tools)Submission type
What changed
New tool plugin for Box cloud content management. It lets Dify
workflows and agents work with files and folders in Box through the Box REST API v2:
Two authentication methods are supported on the same provider:
Risk level
Required checks
.envfiles,.gitdirectories, virtual environments, caches, logs, or IDE files.PRIVACY.mdor a hosted privacy policy, andmanifest.yamlreferences it.Security and privacy notes
The plugin performs file operations (list/search/upload/download/create/delete/move/rename)
against a user's Box account and transmits file content between Dify and Box. All requests go
to fixed Box HTTPS endpoints (
api.box.com,upload.box.com,account.box.com). Credentials(OAuth tokens, or Client ID/Secret + Subject ID for CCG) are stored encrypted by the Dify
platform and only used to authenticate to Box. No data is sent to any third party other than
Box. See
PRIVACY.md. No command execution, code execution, SQL, SSH/SFTP, browser automation,arbitrary URL fetching, or handling of health/financial/biometric data.
Local validation
dify plugin package .→ packaged successfully (box_tools-0.0.1.difypkg, no.git/.venv/__pycache__/.env).box_client.py,provider/box_tools.py, and all 7 tools.Installed tool: box_tools.validation, and file operations (list + download/upload of files) work end to end.
Reviewer notes
refuses files over 100MB to avoid excessive memory use. These are documented in the README.