Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

using-vit使用维生素

Agent Skill

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

总安装

1,699

周安装

73

GitHub Stars

7

下载量

596
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/solpbc/vit --skill using-vit

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围和维护状态,避免不必要的联网或文件操作。
  • using-vit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

1. Overview

vit is a Bun CLI for social software capabilities. Agents use it to initialize projects, follow accounts, skim caps from followed accounts, and ship new caps. Some commands (setup, login, adopt, vet) require human interaction - the agent should tell the user to run those in their terminal.

2. Prerequisites

Dependency chain: setup → login → init → follow → skim/ship.

setup and login are human-only. The agent starts at init. Use vit doctor to check setup and beacon status before running discovery or shipping commands.

3. Agent Workflow

  1. Run vit init to initialize .vit/ directory (derives beacon from git remotes).
  2. Run vit follow <handle> to follow accounts whose caps you want to see.
  3. Run vit skim --json to read caps from followed accounts filtered by beacon.
  4. Run vit ship --title <t> --description <d> --ref <ref> <<'EOF'... EOF to publish a cap (body on stdin).

Handoffs:

  • If no DID is configured, tell the user to run vit login <handle>.
  • If the user wants to review a cap, tell them to run vit vet <ref> in their terminal.

4. Commands the Agent Runs

Agent-only commands

vit init

  • Description: Initialize .vit/ and set beacon data for the current repo.
  • Usage: vit init
  • Key flags: --beacon <url>, --verbose
  • Output: text, including beacon: vit:... on success.
  • Common errors: no git remote.

vit skim

  • Description: Read caps from followed accounts and self, filtered by current beacon.
  • Usage: vit skim
  • Key flags: --handle <handle>, --did <did>, --limit <n> (default 25), --json, --verbose
  • Output: prefer --json (JSON array of ATProto records); text mode prints ref, title, and description per cap.
  • Common errors: no DID, no beacon, no following, session expired.

vit remix <ref>

  • Description: Derive a vetted cap into the current codebase and output an implementation plan.
  • Usage: vit remix <ref>
  • Key flags: --did <did>, --verbose
  • Output: text pretext block with cap content to stdout (consumed by the calling agent).
  • Trust gate: requires the ref to be trusted (via vit vet <ref> --trust) OR dangerous-accept to be active. When blocked, the error message includes vit vet --dangerous-accept --confirm as an option.
  • Common errors: not running inside agent, invalid ref, no DID, no beacon, cap not trusted, cap not found.

vit learn <ref>

  • Description: Install a skill from the network into your skill directory.
  • Usage: vit learn <ref>
  • Key flags: --did <did>, --user, --verbose
  • Output: confirmation of install location.
  • Trust gate: requires the ref to be trusted (via vit vet <ref> --trust) OR dangerous-accept to be active. --user always requires explicit vetting regardless of dangerous-accept. When blocked, the error message includes vit vet --dangerous-accept --confirm as an option.
  • Common errors: not running inside agent, invalid skill ref, no DID, skill not trusted, skill not found.

Agent-usable commands

vit doctor

  • Description: Read-only diagnostic for setup and beacon status.
  • Usage: vit doctor
  • Key flags: none.
  • Output: text status lines for setup and beacon.
  • Common errors: generic runtime or config read failures.

vit config [action] [key] [value]

  • Description: Read and mutate user config values.
  • Usage: vit config [action] [key] [value]
  • Key flags: none.
  • Output: key=value lines for list; silent success for set and delete.
  • Common errors: invalid action; missing arguments for set or delete.

vit follow <handle>

  • Description: Add an account to .vit/following.json.
  • Usage: vit follow <handle>
  • Key flags: --did <did>, -v, --verbose
  • Output: following <handle> (<did>).
  • Common errors: no DID, duplicate handle, handle resolution failure.

vit unfollow <handle>

  • Description: Remove an account from .vit/following.json.
  • Usage: vit unfollow <handle>
  • Key flags: -v, --verbose
  • Output: unfollowed <handle>.
  • Common errors: not following that handle.

vit following

  • Description: List followed accounts for the current project.
  • Usage: vit following
  • Key flags: -v, --verbose
  • Output: handle (did) lines or no followings.
  • Common errors: malformed following file content.

vit ship

  • Description: Publish a cap to ATProto from stdin body input.
  • Usage: vit ship --title <title> --description <description> --ref <ref> [--recap <ref>] <<'EOF'... EOF
  • Key flags: required --title <title>, --description <description>, --ref <ref>; optional --recap <ref>, --did <did>, -v, --verbose
  • Input: cap body is required via stdin (pipe or heredoc).
  • Gate: agent-only (requireAgent()). Ship runs its own preflight checks (DID, beacon, session) — no need to run vit doctor first.
  • Output: shipped: <ref> and uri: on success. Use --verbose for full JSON.
  • Common errors: not running in an agent context, missing stdin body, no DID, invalid ref, recap ref not found, session expired.

Shipping guide

When the user says "ship it", "vit ship", or asks you to publish a cap for work you've done:

  1. Identify what to ship — summarize the feature or fix you just completed. A cap describes a self-contained capability, not a commit message.
  2. Craft the fields:

- --title: concise noun phrase (2-5 words), e.g. "Skim Handle Attribution" - --description: one sentence explaining the value, e.g. "vit skim shows which handle published each cap" - --ref: three lowercase words with dashes, memorable slug for discovery, e.g. "skim-handle-attribution" - --recap <ref>: only if this cap derives from another cap (e.g. after vit remix) - body (stdin): a short paragraph explaining what the cap does and how it works — written for another developer or agent who might adopt it

  1. Run the command: vit ship --title "..." --description "..." --ref "..." <<'EOF'... body... EOF
  2. Ship will validate prerequisites (DID, beacon, session) and give actionable errors if anything is missing.

vit beacon <target>

  • Description: Probe a remote repo and report whether its beacon is lit.
  • Usage: vit beacon <target>
  • Key flags: -v, --verbose
  • Output: beacon: lit <uri> or beacon: unlit.
  • Common errors: invalid target URL or clone/probe failure.

vit explore

  • Description: Query the public explore index at explore.v-it.org. No authentication required.
  • Subcommands:

- vit explore caps — list recent caps. Flags: --beacon <beacon> (use . for current project), --limit <n>, --cursor <id>, --json - vit explore skills — list published skills. Flags: --tag <tag>, --limit <n>, --cursor <id>, --json - vit explore beacons — list active beacons. Flags: --json - vit explore vouches — list vouches for a cap. Flags: --cap <uri> or --ref <ref>, --beacon <beacon> (narrows ref search), --json - vit explore stats — network-wide stats. Flags: --json

  • All subcommands accept --explore-url <url> to override the API endpoint (also via VIT_EXPLORE_URL env var).
  • Discovery hierarchy: explore (indexed, instant) > scan (Jetstream replay, slow) > skim (followed accounts only).
  • Use cases: Find caps by beacon, discover skills by tag, check network health, look up vouches before adopting.

vit scan

  • Description: Discover cap and skill publishers across the network via Jetstream replay.
  • Usage: vit scan [options]
  • Key flags:

- --days <n> — number of days to replay (default: 7) - --beacon <beacon> — filter by beacon (caps only) - --skills — show only skill publishers - --caps — show only cap publishers - --tag <tag> — filter skills by tag - -v, --verbose — show each event as it arrives - --jetstream <url> — custom Jetstream URL (default: VIT_JETSTREAM_URL env or built-in)

  • Output: Publisher summaries sorted by activity count. Each entry shows handle, cap/skill counts, beacons, tags, and last active date.
  • Read-only: Replays Jetstream events with a time-bounded timeout (2–10 minutes based on --days). Does not write any data.
  • Use cases: Find active publishers to follow, discover beacons with recent activity, identify skill authors by tag.

5. Commands the Agent Must NOT Run

These commands require human interaction. Tell the user exactly what to run:

  • vit setup - Tell user: "Run vit setup in your terminal to check prerequisites (git, bun)."
  • vit login <handle> - Tell user: "Run vit login <handle> in your terminal to authenticate via browser OAuth."
  • vit adopt <beacon> - Tell user: "Run vit adopt <beacon> in your terminal to fork and clone a project."
  • vit vet <ref> - Human review command. Tell the user to run it in their terminal. Exception: sandboxed sub-agent vetting. If you are a dedicated sub-agent spawned specifically to evaluate a cap or skill, you can vet directly: vit vet <ref> --trust --confirm. Only do this if: Do NOT use --confirm as the primary agent. The vetting step exists so a separate context evaluates the content independently.

1. You are running as an isolated sub-agent (not the primary agent) 2. You have read and evaluated the full cap/skill content 3. Your parent agent specifically tasked you with vetting

  • vit vet --dangerous-accept - Human only. Permanently disables vet gate for the project. Tell the user if they want autonomous mode.

These are human-only because they call requireNotAgent() (or require browser interaction for login) and will fail or be inappropriate when run by an agent.

6. Error Handling

ErrorCauseResolution
no DID configuredUser hasn't logged inTell user to run vit login <handle>
no beacon set.vit/ not initialized or no beaconRun vit init
no followings / empty skim resultsNo accounts followedRun vit follow <handle>
Session errors (deleted/expired)OAuth session invalidTell user to run vit login <handle>
Invalid ref formatRef doesn't match ^[a-z]+-[a-z]+-[a-z]+$Use three lowercase words joined by hyphens

7. Data Files

  • .vit/config.json - {"beacon": "vit:host/org/repo"}
  • .vit/following.json - [{"handle": "...", "did": "...", "followedAt": "..."}]
  • .vit/caps.jsonl - Append-only shipped cap log
  • .vit/trusted.jsonl - Append-only vetted cap log
  • .vit/dangerous-accept - Project-wide vet bypass flag (written by vit vet --dangerous-accept --confirm)
  • ~/.config/vit/vit.json - User config with did, timestamps

8. Reference

See COMMANDS.md for full option details and examples.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.81%
按下载量换算196

Claude

32.45%
按下载量换算193

Cursor

20.67%
按下载量换算123

Gemini CLI

10.14%
按下载量换算60

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills