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

taubyte-cli-prereqstaubyte CLI prereqs 搜索

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/taubyte/skills --skill taubyte-cli-prereqs

简介

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

  • 适合根据关键词快速定位候选结果。
  • 可结合来源仓库和原始 README 继续核验用法。
  • 安装命令:npx skills add https://github.com/taubyte/skills --skill taubyte-cli-prereqs。
  • 使用前应确认权限范围和维护状态,避免触发联网或文件读写。

SKILL.md

Taubyte CLI prerequisites (hard gate)

Purpose

Run this skill before any other Taubyte skill. It ensures Node.js, Docker (engine running — needed for Dream, inject, and local container workflows), tau / dream, and (when GitHub work is in scope) authenticated tau profile are in place.


Stop conditions (read first)

SituationAction
Node missing and cannot be installed from this environmentStop; give OS-specific install instructions; do not run npm i -g without node.
Docker missing, daemon not running, and cannot be fixed from this environmentStop; give install/start instructions (see Docker section).
GitHub-backed work needed but no tau profile / login incompleteStop; follow taubyte-auth-and-profile (browser login hard stop applies there).
tau or dream still broken after install attemptsStop; log attempts in .taubyte_ai/logs.txt (or project context log per taubyte-context-log).

Workflow order

  1. Node.js — detect; install automatically when possible (see §1).
  2. Docker — detect CLI + daemon; install or start when possible (see §2).
  3. tau / dream — detect; install from @taubyte npm packages when missing (see §3).
  4. tau login / profiletaubyte-auth-and-profile for all login policy; quick tau --json current gate here (see §4).
  5. Verify after any install (see §5).

1. Node.js

Detect

command -v node >/dev/null 2>&1 && node --version
command -v npm >/dev/null 2>&1 && npm --version

If node is missing or node --version fails

Prefer installing Node for the user when the environment supports it (network, permissions, non-interactive package managers):

  • Windows (e.g. winget available): winget install -e --id OpenJS.NodeJS.LTS --accept-package-agreements --accept-source-agreements
  • macOS (brew on PATH): brew install node
  • Linux (Debian/Ubuntu family, when apt-get is usable): sudo apt-get update && sudo apt-get install -y nodejs npm

If automated install fails, is blocked (no sudo, no winget/brew, CI sandbox), or the OS is unclear, stop and ask the user to install Node.js LTS from https://nodejs.org/ (or their distro’s Node LTS packages), then open a new terminal and rerun this skill.

Do not run npm i -g @taubyte/cli or npm i -g @taubyte/dream until node and npm work.


2. Docker

Docker is required for Dream, dream inject, and other local container-backed Taubyte flows (see taubyte-dream-local-operations, taubyte-cloud-selection). You need both the docker CLI and a running daemon (docker info succeeds).

Detect

command -v docker >/dev/null 2>&1 && docker version
docker info
  • If docker is not in PATH → treat as not installed; try install workflow below.
  • If docker info fails with connection / daemon errors but docker version shows a client → the engine is stopped or the user lacks permission. Prefer starting Docker Desktop (Windows/macOS) or sudo systemctl start docker (Linux), or sudo usermod -aG docker $USER + re-login when the error is permission-related. Do not assume a fresh install fixes a stopped daemon.

Install when the CLI is missing (automate when possible)

  • Windows (winget): winget install -e --id Docker.DockerDesktop --accept-package-agreements --accept-source-agreements After install, the user may need to start Docker Desktop once (or reboot). Re-run docker info after they confirm it is running.
  • macOS (brew): brew install --cask docker Then start Docker Desktop from Applications and re-check docker info.
  • Linux (Debian/Ubuntu, when apt-get + sudo work): sudo apt-get update && sudo apt-get install -y docker.io sudo systemctl enable --now docker If builds still fail with permission errors, document sudo usermod -aG docker <user> and logging out/in, or use sudo docker info only to confirm the daemon — long-term, the user should be in the docker group.

If install is not possible (no admin, winget/brew/apt unavailable, headless policy), stop and point the user to https://docs.docker.com/get-docker/ for Docker Engine or Docker Desktop, then rerun this skill once docker info works.


3. Taubyte CLIs on npm (@taubyte scope)

Official tau and Dream packages are published on npm under the @taubyte organization, for example:

  • @taubyte/cli — provides the tau command (wrapper downloads the platform tau binary as needed).
  • @taubyte/dream — local cloud / Dream CLI.

Browse or confirm versions: https://www.npmjs.com/search?q=scope%3A%40taubyte.

Detect

command -v tau >/dev/null 2>&1 && tau version
command -v dream >/dev/null 2>&1 && (dream --version || dream --help) || true

If dream fails but Node works, a broken shell alias may point to a missing binary. Try:

node "$(npm root -g)/@taubyte/dream/index.js" --help

Install when missing (Node + npm must work)

Default: global npm:

npm i -g @taubyte/cli
npm i -g @taubyte/dream

Alternative (e.g. npm global path blocked):

curl https://get.tau.link/cli | sh
curl https://get.tau.link/dream | sh

If install fails, stop immediately (see stop conditions).


4. Auth and tau login (defer to taubyte-auth-and-profile)

Any flow that touches GitHub (clone, tau new project, tau push, generated repos) needs a valid Taubyte profile and GitHub auth.

Do not improvise login policy here. Load and follow taubyte-auth-and-profile for:

  • tau login, tau login --new, --name, --token, --provider github
  • Browser-based login (tell user, stop until done — see that skill)
  • Non-interactive patterns with taubyte-execution-modes

Minimal gate check in this skill only:

tau --json current

Inspect Profile (and cloud if needed). If there is no profile and the upcoming work requires GitHub, apply taubyte-auth-and-profile and do not continue to project create, push, import, or website repo operations until auth is resolved.

If the user refuses or cannot complete required login, stop the Taubyte workflow.


5. Verify after installs

node --version
npm --version
docker version
docker info
tau version
dream --version || dream --help || node "$(npm root -g)/@taubyte/dream/index.js" --help

Hard stops (summary)

  • No Node (and install not possible or failed): stop; no global @taubyte npm installs.
  • No working Docker (CLI missing and install failed, or daemon not running / no permission after user guidance): stop before Dream / inject / local container work.
  • GitHub work without completed auth per taubyte-auth-and-profile: stop.
  • tau / dream still failing after install: stop; log diagnostics to .taubyte_ai/logs.txt.
  • Do not proceed to cloud / project / resource operations until this gate passes.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.21%
按下载量换算24

Claude

31.3%
按下载量换算22

Cursor

17.47%
按下载量换算12

Gemini CLI

8.32%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills