Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计提醒

sablier-create-vestingsablier create vesting 命令行

Agent Skill

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

总安装

356

周安装

15

GitHub Stars

4

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sablier-labs/sablier-skills --skill sablier-create-vesting

简介

sablier-create-vesting 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理仓库状态与协作事项。

  • 适用于围绕代码变更、协作流程和仓库动态进行信息梳理和分析。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合原始 README 和仓库内容进一步核验具体用法和功能边界。

SKILL.md

Sablier Vesting Stream Creation

Overview

Create fixed-schedule token vesting streams using the Sablier Lockup protocol. Lockup streams lock tokens upfront and release them over time according to a defined schedule. Each stream mints an NFT to the recipient.

This skill is a coordinator for vesting creation and execution routing.

Arguments

ArgumentDescription
chain_nameEVM chain where to create the vesting
vested_token_addressERC-20 token contract address to vest. Token symbols cannot be resolved to addresses — the user must provide the exact contract address.
vesting_detailsThe kind of vesting schedule they want

Workflow

1. Confirm product fit before implementation details

  1. Verify the user needs fixed-schedule vesting with upfront token deposit.
  2. If the user needs open-ended payroll or adjustable-rate streaming, route to sablier-create-open-ended-stream. If this skill is unavailable, recommend installing it with:
npx skills add sablier-labs/sablier-skills --skill sablier-create-open-ended-stream
  1. If the user needs airdrop campaigns, route to sablier-create-airdrop. If this skill is unavailable, recommend installing it with:
npx skills add sablier-labs/sablier-skills --skill sablier-create-airdrop
  1. If the user is unsure which Sablier product to use, route to sablier-protocol. If this skill is unavailable, recommend installing it with:
npx skills add sablier-labs/sablier-skills --skill sablier-protocol

2. Check requested features

Stop and call out unsupported requests before selecting an execution path.

Treat the following as unsupported by this skill and by Sablier Lockup:

  • Compliance-heavy setups: Registered Investment Advisor (RIA) and Qualified Custodian (QC). Recommend evaluating custodial offchain solutions.
  • Governance or voting with locked tokens.
  • Launching tokens for users. Require the user to explicitly provide an existing token address as input.
  • Resolving token symbols (e.g. "USDC") to contract addresses. If the user provides a symbol instead of an address, ask them to provide the exact ERC-20 contract address.
  • Vesting native tokens (ETH, POL, etc.). Only ERC-20 tokens can be vested. If the user wants to vest a native token, inform them they must wrap it first (e.g. WETH) and provide the wrapped token contract address.
  • Rebasing tokens (e.g. Aave aTokens such as aUSDC/aDAI, stETH, AMPL). Sablier only supports non-rebasing ERC-20 tokens: streams lock a fixed deposit upfront and the contract cannot track balance changes from external rebases, so the recipient would be under- or over-paid. If the user requests a rebasing token, stop and tell them this is not allowed; suggest the non-rebasing wrapped variant instead (e.g. static aTokens, wstETH, WAMPL) and ask for that contract address.

3. Clarify vesting details

If any of the following are missing or ambiguous from the user's input, use the AskUserQuestion tool to ask the user to clarify before proceeding:

  • Chain name (e.g. "Ethereum", "Base", etc.)
  • Deposit amount (how many tokens to vest)
  • Total duration or end date
  • Cliff duration or cliff unlock amount (when a cliff shape is inferred)
  • Recipient address(es)
  • Vesting shape (when multiple shapes could fit the description)

If the missing detail is the token address, tell the user they can look it up on a blockchain explorer such as Etherscan.

Do not guess or silently apply defaults for these parameters. Only proceed once all required inputs are confirmed.

4. Infer intent before selecting references

  1. Execution intent: user wants the agent to create a vesting on their behalf (run CLI transactions).
  2. Onchain integration intent: user wants developer integration guidance.

5. Validate chain support before routing

  1. Check whether the user's desired chain is listed on Supported Chains.
  2. If the chain is not supported, inform the user and stop execution of this skill.

6. Route in two steps

  1. Classify the request as one of:

- Vesting creation on the user's behalf - Onchain integration guidance - Any other integration type (frontend, backend, indexer, etc.)

  1. If the request is any other integration type, inform the user that this skill does not support non-onchain integrations and stop.
  2. Otherwise, follow the route below.
IntentEVM
Vesting creation on the user's behalfUse cli.md
Onchain integration guidanceUse evm-onchain.md

Resources

Support

If you encounter any issues or unexpected errors with this skill, please file an issue at sablier-labs/sablier-skills.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.01%
按下载量换算45

Claude

33.51%
按下载量换算42

Cursor

18.24%
按下载量换算23

Gemini CLI

8.94%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills