Rank
70
AI Agents & MCPs & AI Workflow Automation β’ (~400 MCP servers for AI agents) β’ AI Automation / AI Agent with MCPs β’ AI Workflows & AI Agents β’ MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Box CLI skill for working with files, folders, metadata, search, and Box AI in headless environments. --- description: Box CLI skill for working with files, folders, metadata, search, and Box AI in headless environments. homepage: "https://developer.box.com/guides/cli/" metadata: openclaw: emoji: π¦ install: - bins: - box global: true id: npm kind: npm label: Install Box CLI (npm) package: "@box/cli" requires: bins: - box name: box --- box Use the official box CLI to interact with the Box API from OpenClaw. This skil Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
box is best for be, make, using workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Box CLI skill for working with files, folders, metadata, search, and Box AI in headless environments. --- description: Box CLI skill for working with files, folders, metadata, search, and Box AI in headless environments. homepage: "https://developer.box.com/guides/cli/" metadata: openclaw: emoji: π¦ install: - bins: - box global: true id: npm kind: npm label: Install Box CLI (npm) package: "@box/cli" requires: bins: - box name: box --- box Use the official box CLI to interact with the Box API from OpenClaw. This skil
Public facts
3
Change events
0
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Box
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/box-community/openclaw-box-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Box
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
0
Snippets
0
Languages
typescript
Parameters
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Box CLI skill for working with files, folders, metadata, search, and Box AI in headless environments. --- description: Box CLI skill for working with files, folders, metadata, search, and Box AI in headless environments. homepage: "https://developer.box.com/guides/cli/" metadata: openclaw: emoji: π¦ install: - bins: - box global: true id: npm kind: npm label: Install Box CLI (npm) package: "@box/cli" requires: bins: - box name: box --- box Use the official box CLI to interact with the Box API from OpenClaw. This skil
Use the official box CLI to interact with the Box API from OpenClaw.
This skill is designed for headless deployments (e.g.Β Railway, CI, servers). It does not use OAuth login flows or short-lived developer tokens.
Instead, it expects Bring Your Own Credentials using:
This skill does not manage authentication automatically.
You must provide credentials before using Box commands.
β οΈ Never commit credential files (CCG JSON or JWT JSON) to git.
Add the following to your .gitignore:
box-ccg.json
box-jwt.json
.secrets/
Users must supply their own Box CCG configuration file.
The skill does not generate credentials or manage secrets.
Your file should look like:
{
"boxAppSettings": {
"clientID": "client_id_here",
"clientSecret": "client_secret_here"
},
"enterpriseID": "enterprise_id_here"
}
This file can be named box-ccg.json and placed in your deployment
environment before registering it with Box CLI.
Create a Box Custom App using:
Server Authentication (Client Credentials Grant)
You will need:
Create your config file in a secure location outside the workspace, e.g.:
/data/.secrets/box-ccg.json
β οΈ Avoid storing credentials inside the workspace directory β it may be tracked by git or accessible to other tools.
With:
{ "boxAppSettings": { "clientID": "YOUR_CLIENT_ID", "clientSecret": "YOUR_CLIENT_SECRET" }, "enterpriseID": "YOUR_ENTERPRISE_ID" }
Secure it:
chmod 600 /data/.secrets/box-ccg.json
Register it:
box configure:environments:add /data/.secrets/box-ccg.json --ccg-auth --name ccg --set-as-current box configure:environments:set-current ccg
Optional: Run as a managed user instead of the service account:
box configure:environments:add /data/.secrets/box-ccg.json --ccg-auth --ccg-user "USER_ID" --name ccg-user --set-as-current
Set:
BOX_CLIENT_ID BOX_CLIENT_SECRET BOX_ENTERPRISE_ID
Generate config:
mkdir -p /data/.secrets
cat <<EOF > /data/.secrets/box-ccg.json { "boxAppSettings": { "clientID": "$BOX_CLIENT_ID", "clientSecret": "$BOX_CLIENT_SECRET" }, "enterpriseID": "$BOX_ENTERPRISE_ID" } EOF
chmod 600 /data/.secrets/box-ccg.json
Then register:
box configure:environments:add /data/.secrets/box-ccg.json --ccg-auth --name ccg --set-as-current
If using JWT:
box configure:environments:add /data/.secrets/box-jwt.json --name jwt --set-as-current
box configure:environments:get --current box users:get me
Note: With CCG, you are authenticated as either: - The service account, or - A managed user (if --ccg-user is used)
Access depends on that identity's permissions.
If box users:get me returns invalid_grant or
Grant credentials are invalid, check the following:
Ask the user to verify these items if authentication fails.
box folders:get 0 box folders:list-items 0 --json
box files:upload ./report.pdf --parent-id 0
box files:download 123456789 --destination ./downloads --create-path
box search "quarterly plan" --type file
box files:metadata:get-all 123456789 box files:metadata:add 123456789 --template-key employeeRecord --data "department=Sales"
This skill supports using Box AI directly via the Box platform.
AI operations run within Box, respecting: - File permissions - Enterprise security - Data governance - Audit controls
No file download + local LLM inference required.
box ai:ask --item-id 123456789 --item-type file --prompt "Summarize this document and identify risks."
box ai:extract-structured --item-id 123456789 --item-type file --schema '{"fields":[{"name":"invoice_number","type":"string"},{"name":"total","type":"number"}]}'
box ai:extract --item-id 123456789 --item-type file
Use JSON output when parsing results:
box folders:list-items 0 --json
Prefer CCG for headless deployments because:
This skill exposes the full surface area of the Box CLI.
Explore commands:
box --help box folders --help box files --help box ai --help
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation β’ (~400 MCP servers for AI agents) β’ AI Automation / AI Agent with MCPs β’ AI Workflows & AI Agents β’ MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | π Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:53:02.083Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "make",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "using",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|supported|profile capability:make|supported|profile capability:using|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Box",
"href": "https://developer.box.com/guides/cli/",
"sourceUrl": "https://developer.box.com/guides/cli/",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T01:46:26.339Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T01:46:26.339Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/box-community-openclaw-box-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[]
Sponsored
Ads related to box and adjacent AI workflows.