Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问clear审计提醒

implementing-cli-patternsimplementing CLI 模式

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

380

周安装

16

GitHub Stars

28

下载量

133
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/saleor/configurator --skill implementing-cli-patterns

简介

implementing-cli-patterns 用于辅助前端页面、组件和样式开发,支持 React、Vue 等技术栈。

  • 适用于生成或审查组件结构、布局逻辑及性能问题定位等前端任务。
  • 可结合项目现有设计系统与路由结构,避免生成孤立代码片段。
  • 安装命令为 npx skills add https://github.com/saleor/configurator --skill implementing-cli-patterns。
  • 涉及页面改动时应配合本地预览与构建检查,确认视觉效果。

SKILL.md

CLI User Experience Patterns

Overview

Implement consistent, user-friendly CLI interactions using the project's console module, progress tracking, and reporter patterns. All CLI output should go through src/cli/console.ts rather than raw console.log.

When to Use

  • Implementing command output formatting
  • Adding progress indicators for operations
  • Creating interactive user prompts
  • Formatting error messages for the terminal
  • Designing reporter output for deploy/diff results
  • Not for: Business logic, GraphQL operations, or service layer code

CLI Stack

ToolPurposeLocation
chalkColored terminal outputVia src/cli/console.ts
oraSpinner/progress indicatorssrc/cli/progress.ts
@inquirer/promptsInteractive user promptsCommands layer
tslogStructured loggingInternal logging

Console Module

Located in src/cli/console.ts. Always use this instead of raw console.log:

MethodColorPrefixUse For
error()RedxError messages
success()GreencheckSuccess confirmations
warning()YellowwarnWarnings, degraded results
hint()CyanbulbActionable suggestions
important()Bold-Key information
info()BlueiInformational messages
code()Gray bg-Code/command snippets

Import: import {console} from '@/cli/console';

Progress Indicators

  • Single operations: Use ora spinner with .start(), .succeed(), .fail()
  • Bulk operations: Use BulkOperationProgress from src/cli/progress.ts for progress bars with success/failure tracking

Interactive Prompts

Available prompt types from @inquirer/prompts:

PromptImportUse For
confirm@inquirer/promptsYes/no decisions, destructive action guards
select@inquirer/promptsSingle choice from options
checkbox@inquirer/promptsMulti-select (e.g., entity selection)
input@inquirer/promptsText input with validation
password@inquirer/promptsMasked input for tokens/secrets

See references/prompt-patterns.md for full examples.

Reporter Patterns

Three main reporters in src/cli/reporters/:

ReporterPurposeKey Output
deployment-reporterDeploy resultsTable with created/updated/deleted/failed counts
diff reporterDiff results+ create (green), ~ update (blue), - delete (red)
duplicate reporterValidation issuesDuplicate identifiers with locations

See references/reporter-patterns.md for full implementations.

Error Message Formatting

Two error formatters in the project:

  • formatError(error: BaseError): General errors with code, context, and suggestions
  • formatGraphQLError(error: GraphQLError): GraphQL-specific with operation name and path

Pattern: Show error message, then optional code/context in gray, then actionable suggestions via console.hint().

Exit Codes

export const ExitCodes = {
  SUCCESS: 0,
  GENERAL_ERROR: 1,
  VALIDATION_ERROR: 2,
  NETWORK_ERROR: 3,
  AUTH_ERROR: 4,
  CONFLICT_ERROR: 5,
} as const;

Always use named exit codes, never raw numbers.

Best Practices

  • Use src/cli/console.ts for all output (never raw console.log)
  • Provide progress feedback for any operation over ~1 second
  • Include actionable suggestions with every error message
  • Confirm destructive operations with confirm prompt
  • Support non-interactive mode (skip prompts in CI/headless)
  • Use consistent color semantics (green=success, red=error, yellow=warning)

Common Mistakes

MistakeFix
Using raw console.logImport and use console from @/cli/console
Missing progress feedbackAdd ora spinner for any async operation
Raw exit codes (process.exit(1))Use ExitCodes.GENERAL_ERROR constants
Blocking prompts in CICheck for --yes flag or CI env var to skip prompts
No suggestions on errorsAlways add console.hint() with next steps
Debug output in productionUse tslog with appropriate log levels

References

Related Skills

  • Complete entity workflow: See adding-entity-types for CLI integration patterns
  • Error handling: See reviewing-typescript-code for error message standards

Quick Reference Rule

For a condensed quick reference, see .claude/rules/cli-development.md (automatically loaded when editing src/cli/**/*.ts and src/commands/**/*.ts files).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

30.34%
按下载量换算40

Antigravity

22.98%
按下载量换算31

windsurf

17.18%
按下载量换算23

trae

13.07%
按下载量换算17

OpenCode

8.07%
按下载量换算11

Codex

3.34%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills