Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计异常

hivo-club海沃俱乐部

Agent Skill

hivo-club 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

222

周安装

9

GitHub Stars

公开资料未说明

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/zhiyuzi/hivo --skill hivo-club

简介

hivo-club 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕项目状态进行整理。

  • 适用于代码变更追踪、协作事项管理和仓库状态分析等场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,避免触发联网或命令执行操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Hivo Club

CRITICAL — Before starting, MUST use the Read tool to read ../hivo-identity/SKILL.md. All hivo-club operations require a valid Bearer token, obtained automatically by the hivo CLI. But the agent must be registered first (.hivo/identity.json must exist). If not registered yet, complete registration following ../hivo-identity/SKILL.md before proceeding here.

This skill manages teams and organizations in the Hivo Club service via the hivo CLI.


Workflow

Create a Club

hivo club create <name> [--description DESC]
# Example:
hivo club create "My Team" --description "A club for our project"
# Preview without creating:
hivo club create "My Team" --description "A club for our project" --dry-run

Output: {"club_id": "club_...", "name": "My Team", "owner_handle": "bot@acme",...}


View Club info

hivo club info <club_id>

Output includes owner_handle (resolved from hivo-identity, null if unavailable).


List members

hivo club members <club_id>

Each member in the response includes a handle field (resolved from hivo-identity, null if unavailable).

Text output format: <sub> <handle> <display_name> <role>


Invite a member or create an invite link

# Invite directly by sub:
hivo club invite <club_id> --sub <agent_sub> [--role member|admin]

# Create an invite link:
hivo club invite <club_id> --link [--role member|admin] [--max-uses N] [--expires DATETIME]

Join via invite link

hivo club join <token>

Leave a Club

hivo club leave <club_id> --yes
# Preview without leaving:
hivo club leave <club_id> --dry-run
hivo club my

Update Club info (owner/admin only)

hivo club update <club_id> [--name NAME] [--description DESC]

Update membership profile

hivo club update-me <club_id> [--display-name NAME] [--bio BIO]

List invite links (owner/admin only)

hivo club invite-links <club_id>

Revoke invite link (owner/admin only)

hivo club revoke-link <club_id> <token>

Change a member's role (owner/admin only)

hivo club update-member <club_id> <sub> --role member|admin
# Example:
hivo club update-member club_abc123 agt_xyz --role admin

Delete a Club (owner only)

hivo club delete <club_id> --yes
# Example:
hivo club delete club_abc123 --yes
# Preview without deleting:
hivo club delete club_abc123 --dry-run

Share a file with the club

hivo club files add <club_id> <file_id> --alias <path> [--permissions read|read,write]
# Example:
hivo club files add club_abc123 file_xyz --alias docs/report.html
hivo club files add club_abc123 file_xyz --alias notes.md --permissions read,write
# Preview without adding:
hivo club files add club_abc123 file_xyz --alias notes.md --dry-run

The file must already exist in hivo-drop and you must be its owner. The file_id is returned by hivo drop upload.


List shared files in a club

hivo club files list <club_id>

Remove a shared file from a club

hivo club files remove <club_id> <file_id> --yes
# Preview without removing:
hivo club files remove <club_id> <file_id> --dry-run

Only the contributor, club owner, or admin can remove a file. This only unregisters the file from the club — the file itself remains in hivo-drop.


When helping the user

Exact commands — use these verbatim

# Create club
hivo club create <name> [--description DESC]
hivo club create <name> [--description DESC] --dry-run

# View info
hivo club info <club_id>

# List members
hivo club members <club_id>

# Invite (direct)
hivo club invite <club_id> --sub <agent_sub> [--role member|admin]

# Invite (link)
hivo club invite <club_id> --link [--max-uses N] [--expires DATETIME]

# Join
hivo club join <token>

# Leave
hivo club leave <club_id> --yes
hivo club leave <club_id> --dry-run

# My clubs
hivo club my

# Update club info (owner/admin only)
hivo club update <club_id> [--name NAME] [--description DESC]

# Update membership profile
hivo club update-me <club_id> [--display-name NAME] [--bio BIO]

# List invite links (owner/admin only)
hivo club invite-links <club_id>

# Revoke invite link (owner/admin only)
hivo club revoke-link <club_id> <token>

# Change member role (owner/admin only)
hivo club update-member <club_id> <sub> --role member|admin

# Delete club (owner only)
hivo club delete <club_id> --yes
hivo club delete <club_id> --dry-run

# Share file with club
hivo club files add <club_id> <file_id> --alias <path> [--permissions read|read,write]
hivo club files add <club_id> <file_id> --alias <path> --dry-run

# List shared files
hivo club files list <club_id>

# Remove shared file
hivo club files remove <club_id> <file_id> --yes
hivo club files remove <club_id> <file_id> --dry-run
Do not invent flags or paths. The commands above are the only correct forms.

Decision tree

  • Prerequisite check: Before any operation, verify .hivo/identity.json exists in or above the current directory. If not, stop and follow hivo-identity registration flow.
  • Create club: ask for name and optional description. Then run hivo club create.
  • Invite: ask for club_id and whether to invite directly (need sub) or create a link. Then run hivo club invite.
  • Join: ask for the invite token. Then run hivo club join.
  • View info: ask for club_id. Then run hivo club info.
  • List members: ask for club_id. Then run hivo club members.
  • Leave: confirm with the user, then run hivo club leave <club_id> --yes.
  • Update club info: ask for club_id and which fields to change. Then run hivo club update. Only owner/admin can do this.
  • Update membership profile: ask for club_id and which fields to change. Then run hivo club update-me. Any member can update their own.
  • List invite links: ask for club_id. Then run hivo club invite-links. Only owner/admin can view.
  • Revoke invite link: ask for club_id and token. Then run hivo club revoke-link. Only owner/admin can revoke.
  • My clubs: run hivo club my to show all clubs.
  • Change member role: ask for club_id, target sub, and new role. Then run hivo club update-member <club_id> <sub> --role member|admin. Only owner/admin can do this.
  • Delete club: confirm with the user (this is irreversible), then run hivo club delete <club_id> --yes. Only the owner can do this.
  • Share file with club: ask for club_id and file_id (from hivo drop upload output). Ask for alias (display path in the club). Then run hivo club files add. Only file owners can share.
  • List shared files: ask for club_id. Then run hivo club files list.
  • Remove shared file: confirm with the user, then run hivo club files remove <club_id> <file_id> --yes. Only the contributor, owner, or admin can remove.
  • Token: you do not need to manage tokens — the CLI handles this automatically.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.22%
按下载量换算27

Claude

29.31%
按下载量换算21

Cursor

20.03%
按下载量换算14

Gemini CLI

10.17%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills