Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计异常

puffpuff 命令行

Agent Skill

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

总安装

612

周安装

26

GitHub Stars

53

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tkersey/dotfiles --skill puff

简介

提供轻量级命令行工具集,支持快速操作。

  • 适用于日常开发中的重复性任务自动化。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 从个人 dotfiles 仓库安装并集成到终端环境。
  • 部分命令可能修改系统配置,建议先在沙箱测试。
  • puff 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Puff

Overview

Use this skill to launch Codex Cloud tasks without blocking the local CLI session. Use run_puff_tool to run the Zig puff CLI, submit work, detach status watchers, and retain logs/results for later diff/apply actions.

Zig CLI Iteration Repos

When iterating on the Zig-backed puff helper CLI path, use these two repos:

  • skills-zig (/Users/tk/workspace/tk/skills-zig): source for the puff Zig binary, build/test wiring, and release tags.
  • homebrew-tap (/Users/tk/workspace/tk/homebrew-tap): Homebrew formula updates/checksum bumps for released puff binaries.

Quick Start

run_puff_tool() {
  install_puff_direct() {
    local repo="${SKILLS_ZIG_REPO:-$HOME/workspace/tk/skills-zig}"
    if ! command -v zig >/dev/null 2>&1; then
      echo "zig not found. Install Zig from https://ziglang.org/download/ and retry." >&2
      return 1
    fi
    if [ ! -d "$repo" ]; then
      echo "skills-zig repo not found at $repo." >&2
      echo "clone it with: git clone https://github.com/tkersey/skills-zig \"$repo\"" >&2
      return 1
    fi
    if ! (cd "$repo" && zig build -Doptimize=ReleaseSafe); then
      echo "direct Zig build failed in $repo." >&2
      return 1
    fi
    if [ ! -x "$repo/zig-out/bin/puff" ]; then
      echo "direct Zig build did not produce $repo/zig-out/bin/puff." >&2
      return 1
    fi
    mkdir -p "$HOME/.local/bin"
    install -m 0755 "$repo/zig-out/bin/puff" "$HOME/.local/bin/puff"
  }

  local os="$(uname -s)"
  if command -v puff >/dev/null 2>&1 && puff --help 2>&1 | grep -q "puff.zig"; then
    puff "$@"
    return
  fi

  if [ "$os" = "Darwin" ]; then
    if ! command -v brew >/dev/null 2>&1; then
      echo "homebrew is required on macOS: https://brew.sh/" >&2
      return 1
    fi
    if ! brew install tkersey/tap/puff; then
      echo "brew install tkersey/tap/puff failed." >&2
      return 1
    fi
  elif ! (command -v puff >/dev/null 2>&1 && puff --help 2>&1 | grep -q "puff.zig"); then
    if ! install_puff_direct; then
      return 1
    fi
  fi

  if command -v puff >/dev/null 2>&1 && puff --help 2>&1 | grep -q "puff.zig"; then
    puff "$@"
    return
  fi
  echo "puff binary missing or incompatible after install attempt." >&2
  if [ "$os" = "Darwin" ]; then
    echo "expected install path: brew install tkersey/tap/puff" >&2
  else
    echo "expected direct path: SKILLS_ZIG_REPO=<skills-zig-path> zig build -Doptimize=ReleaseSafe" >&2
  fi
  return 1
}

Workflow

  1. Ensure ChatGPT auth is present. codex login
  2. Run readiness checks. run_puff_tool doctor --env <env-id-or-label> Optional: print manual environment-creation instructions. run_puff_tool create
  3. Launch cloud work with a detached watcher. run_puff_tool launch --env <env-id-or-label> --prompt "Implement X" Optional: launch the cloud Join operator prompt (seq -> join) for PR patch routing. run_puff_tool join-operator --env <env-id-or-label> --repo <owner/repo> --patch-inbox <locator> Canary mode (single bounded cycle): run_puff_tool join-operator --env <env-id-or-label> --repo <owner/repo> --patch-inbox <locator> --canary
  4. Inspect running and completed watcher jobs. run_puff_tool jobs
  5. Tail watcher logs when needed. tail -f <watch_log_path>
  6. Inspect or apply result when ready. codex cloud diff <task-id> codex cloud apply <task-id>

Command Selection

Use launch for async/background execution. launch runs doctor by default; pass --skip-doctor to bypass pre-checks. Use create when you need formatted manual environment-creation instructions only. Use submit when only task id/url is needed (it executes a cloud task). Use doctor for explicit auth/environment readiness checks. Use watch for blocking foreground polling. Use jobs and stop to manage detached watchers. Use join-operator to generate and launch the cloud join loop prompt that enforces manifest-first routing and seq -> join execution. Use join-operator --max-cycles <n> for bounded runs; --canary is shorthand for one cycle.

Interop With $cas

Use $cas when orchestration requirements exceed simple cloud task lifecycle control. Use $puff for fast cloud kickoff and lifecycle polling. Use $cas directly for app-server smoke checks, thread/turn orchestration, multi-instance routing, or swarm conformance around $st claims and $mesh reconciliation.

Notes

Pass either environment id or unique environment label to --env. Treat READY and APPLIED as successful terminal states in watch loops. Treat ERROR as terminal failure and inspect with codex cloud status <task-id> and codex cloud diff <task-id>. Runtime bootstrap policy for puff mirrors seq/cas/lift: use the Zig puff binary only, default to Homebrew install on macOS, and fallback to direct Zig install from skills-zig on non-macOS.

Resources

  • puff binary: create/submit/watch/launch/jobs/stop wrapper around codex cloud.
  • references/commands.md: command map including optional $cas pairing.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.84%
按下载量换算77

Claude

31.48%
按下载量换算67

Cursor

17.02%
按下载量换算36

Gemini CLI

9.08%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/tkersey/dotfiles --skill puff 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills