Token导航 LogoToken导航TokenDH.com
待分类执行命令github未标认证来源可访问许可证需确认审计通过

clackclack 命令行

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ahmadawais/skills --skill clack

简介

用于构建交互式命令行界面,基于 @clack/core 和 @clack/prompts 提供可靠 CLI 开发能力。

  • 支持提示、进度、日志、任务流等 UX 增强功能,适用于需要用户交互的工具开发。
  • 推荐优先使用 @clack/prompts 层,配合取消处理和示例代码实现完整流程。
  • 需验证导入路径与导出映射一致,确保在不同宿主环境中稳定运行。
  • clack 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Clack CLI Skill

Use this skill to implement reliable interactive CLIs with @clack/core and @clack/prompts.

Workflow

  1. Decide whether to use @clack/prompts or @clack/core.
  2. Read only the minimum reference files needed for the task.
  3. Start from the closest example in references/examples/.
  4. Implement cancellation handling after every prompt.
  5. Add UX polish (intro, outro, spinner, progress, tasks, log, taskLog, stream) when useful.
  6. Verify imports against export maps in references/docs/prompts-exports.ts and references/docs/core-exports.ts.

Pick the Right Layer

Use @clack/prompts by default.

  • Choose it for production-ready styling and quick delivery.
  • Use it when the request maps to standard prompt types: text, confirm, select, multiselect, grouped prompts, logs, spinners, progress, tasks, or streaming logs.

Use @clack/core when lower-level control is required.

  • Choose it for custom rendering, custom prompt behavior, or unstyled primitives.
  • Use it when the request needs direct prompt classes (TextPrompt, SelectPrompt, ConfirmPrompt, Prompt) or deep customization.

Mandatory Safety Patterns

Handle cancellation on every prompt result.

import * as p from '@clack/prompts';

const value = await p.text({ message: 'Your name?' });
if (p.isCancel(value)) {
  p.cancel('Operation cancelled.');
  process.exit(0);
}

Start and close sessions cleanly for user-facing CLIs.

p.intro('create-app');
// prompts
p.outro('Done');

Prompt Design Guidance

Use these defaults unless the user asks otherwise.

  • text: provide validate for required or constrained input.
  • confirm: use for binary decisions; avoid coercing free-form text.
  • select: use for mutually exclusive choices.
  • multiselect or groupMultiselect: use for multi-choice and hierarchical multi-choice flows.
  • group: gather structured answers while preserving dependencies between steps.
  • spinner and progress: wrap long-running tasks and update status clearly.
  • tasks: execute sequential task blocks with spinner status.
  • taskLog: stream subprocess output and finish with success/failure.
  • stream: render async or tokenized output (for LLM-style streaming).

Implementation Sequence

  1. Inspect user requirements and identify required prompt primitives.
  2. Read the nearest example under references/examples/.
  3. Confirm function/class availability from:

- references/docs/prompts-exports.ts - references/docs/core-exports.ts

  1. If behavior is unclear, inspect source under:

- references/source/prompts/ - references/source/core/

  1. Implement with cancellation guards and clear terminal messaging.
  2. Keep fallback behavior for non-interactive contexts when requested (see spinner and CI-oriented examples).

Reference Loading Strategy

Start with these files.

  • references/docs/prompts-readme.md
  • references/docs/core-readme.md
  • references/INDEX.md

Load specific source files only as needed.

  • Prompts wrapper internals: references/source/prompts/*.ts
  • Core prompt primitives: references/source/core/prompts/*.ts
  • Core utility behavior: references/source/core/utils/*.ts

Example-First Mapping

Use this quick mapping to avoid re-inventing flows.

  • General prompt suite: references/examples/basic/index.ts
  • Validation: references/examples/basic/text-validation.ts
  • Autocomplete: references/examples/basic/autocomplete.ts
  • Autocomplete multi-select: references/examples/basic/autocomplete-multiselect.ts
  • Defaults: references/examples/basic/default-value.ts
  • Filesystem path prompt: references/examples/basic/path.ts
  • Spinner basics: references/examples/basic/spinner.ts
  • Spinner cancellation: references/examples/basic/spinner-cancel.ts
  • Advanced spinner cancellation: references/examples/basic/spinner-cancel-advanced.ts
  • CI-oriented spinner behavior: references/examples/basic/spinner-ci.ts
  • Timer-style spinner updates: references/examples/basic/spinner-timer.ts
  • Progress bar: references/examples/basic/progress.ts
  • Task log streaming: references/examples/basic/task-log.ts
  • Stream utility: references/examples/basic/stream.ts
  • Changesets integration flow: references/examples/changesets/index.ts

Quality Bar

Before finalizing any clack implementation:

  • Confirm every import exists in the current exports file.
  • Ensure cancellation flow always exits safely.
  • Ensure prompt wording is short and unambiguous.
  • Ensure long-running operations provide visible status.
  • Ensure selected layer (core vs prompts) matches customization needs.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.27%
按下载量换算25

Claude

26.06%
按下载量换算19

Cursor

20.05%
按下载量换算14

Gemini CLI

9.35%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills