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

zeabur-object-storagezeabur 对象存储

Agent Skill

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

总安装

360

周安装

15

GitHub Stars

25

下载量

120
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/zeabur/zeabur-claude-plugin --skill zeabur-object-storage

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装使用。
  • 安装前需确认权限范围、维护状态,注意是否触发联网或文件读写操作。
  • zeabur-object-storage 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Zeabur Object Storage Deployment & Integration

Always use npx zeabur@latest to invoke Zeabur CLI. Never use zeabur directly or any other installation method. If npx is not available, install Node.js first.

Deploy Object Storage

Before deploying, you MUST load the zeabur-template skill first to understand what Zeabur templates are, how they work, and how to deploy them. This skill only covers object storage-specific integration — all template knowledge lives in zeabur-template.

Search for a storage template:

npx zeabur@latest template search minio -i=false --json

Pick the template with the highest deployment count.

  • Default to MinIO if the user doesn't specify — most widely supported, built-in web console, auto-creates a default bucket.
  • Recommend RustFS if the user wants lightweight/minimal or mentions RustFS specifically.

After Deployment: How to Connect

For object storage, you need: S3 API endpoint (how to connect), access key + secret key (how to authenticate), and a bucket name.

How to connect — service network

npx zeabur@latest service network --id <storage-service-id> -i=false

This shows:

  • Private Networking — internal hostname:port for the S3 API (e.g., minio.zeabur.internal:9000)
  • Public Networking — for HTTP ports, it will indicate you need to bind a domain to access externally
MinIO and RustFS ports are HTTP type, so public access is via domain binding, not port forwarding. Bind a domain to the API port via the Dashboard to get an external S3 endpoint (e.g., https://minio-api.zeabur.app).

How to authenticate — variable list

npx zeabur@latest variable list --id <storage-service-id> -i=false

This lists the access key, secret key, and other credentials.


MinIO

Credentials (from variable list)

VariableDescription
MINIO_USERNAMEAccess Key ID (default: minio)
MINIO_PASSWORDSecret Access Key (auto-generated)
MINIO_DEFAULT_BUCKETDefault bucket name (default: zeabur)
MINIO_CONSOLE_URLWeb console URL

Connect from app (same project)

Set these env vars on your app service:

S3_ENDPOINT=http://minio.zeabur.internal:9000
S3_ACCESS_KEY=${MINIO_USERNAME}
S3_SECRET_KEY=${MINIO_PASSWORD}
S3_BUCKET=zeabur
S3_REGION=us-east-1
S3_FORCE_PATH_STYLE=true
The S3 endpoint is not exposed as a variable — you must hardcode it using the internal hostname from service network.

Connect from local machine

Bind a domain to the API port, then use that domain as endpoint:

# MinIO Client (mc)
mc alias set zeabur https://MINIO_API_DOMAIN MINIO_USERNAME MINIO_PASSWORD
mc ls zeabur/
mc cp local-file.txt zeabur/zeabur/

# AWS CLI
aws --endpoint-url https://MINIO_API_DOMAIN s3 ls

Web Console

Open MINIO_CONSOLE_URL in a browser, login with MINIO_USERNAME / MINIO_PASSWORD. MinIO auto-creates a zeabur bucket on first boot.


RustFS

Credentials (from variable list)

VariableDescription
RUSTFS_USERNAMEAccess Key ID (default: rustfs)
RUSTFS_PASSWORDSecret Access Key (auto-generated)

Connect from app (same project)

Set these env vars on your app service:

S3_ENDPOINT=http://rustfs.zeabur.internal:9000
S3_ACCESS_KEY=${RUSTFS_USERNAME}
S3_SECRET_KEY=${RUSTFS_PASSWORD}
S3_BUCKET=my-bucket
S3_REGION=us-east-1
S3_FORCE_PATH_STYLE=true
The S3 endpoint is not exposed as a variable — you must hardcode it using the internal hostname from service network. Also check service list for the exact service name (may be RustFS not rustfs).
You must create a bucket first — unlike MinIO, RustFS starts with zero buckets.

Connect from local machine

Bind a domain to the API port, then:

mc alias set zeabur https://RUSTFS_API_DOMAIN RUSTFS_USERNAME RUSTFS_PASSWORD
mc mb zeabur/my-bucket
mc ls zeabur/

Web Console

Open the domain bound to port 9001 in a browser, login with RUSTFS_USERNAME / RUSTFS_PASSWORD. Create a bucket before your app can upload files.


SDK Examples

All S3-compatible SDKs need: endpoint, access key, secret key, region, and forcePathStyle: true.

// Node.js (AWS SDK v3)
const { S3Client } = require("@aws-sdk/client-s3");
const s3 = new S3Client({
  endpoint: process.env.S3_ENDPOINT,
  credentials: {
    accessKeyId: process.env.S3_ACCESS_KEY,
    secretAccessKey: process.env.S3_SECRET_KEY,
  },
  region: "us-east-1",
  forcePathStyle: true,
});
# Python (boto3)
import boto3, os
s3 = boto3.client(
    "s3",
    endpoint_url=os.environ["S3_ENDPOINT"],
    aws_access_key_id=os.environ["S3_ACCESS_KEY"],
    aws_secret_access_key=os.environ["S3_SECRET_KEY"],
    region_name="us-east-1",
)
// Go (aws-sdk-go-v2)
cfg, _ := config.LoadDefaultConfig(ctx,
    config.WithRegion("us-east-1"),
    config.WithCredentialsProvider(
        credentials.NewStaticCredentialsProvider(accessKey, secretKey, ""),
    ),
)
client := s3.NewFromConfig(cfg, func(o *s3.Options) {
    o.BaseEndpoint = aws.String(endpoint)
    o.UsePathStyle = true
})

Caveats

  1. forcePathStyle is required — Without it, S3 SDKs use virtual-hosted-style URLs (http://bucket.host:9000/key) which won't resolve. This is the #1 cause of "bucket not found" errors.
  2. Create bucket before uploading (RustFS) — MinIO auto-creates a zeabur bucket; RustFS does not. Create one via the console or mc mb.
  3. S3 endpoint is not a template variable — Hardcode it using the hostname from service network (internal) or the bound domain (external).
  4. Variable references — Zeabur uses a flat namespace. Set ${MINIO_USERNAME} etc. via the Zeabur Dashboard — the CLI has a known bug with ${} expansion.
  5. Console vs API ports — MinIO: API 9000, console 9090. RustFS: API 9000, console 9001. Apps connect to the API port.

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

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

平台分布

Codex

37.04%
按下载量换算44

Claude

27.83%
按下载量换算33

Cursor

17.36%
按下载量换算21

Gemini CLI

9.56%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills