Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计通过

cli-buildingCLI building 命令行

Agent Skill

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

总安装

2,165

周安装

93

GitHub Stars

11

下载量

759
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/siviter-xyz/dot-agent --skill cli-building

简介

cli-building 定义现代 CLI 工具的构建准则,强调异步优先、模块化组合和清晰输出格式原则。

  • 适用于新建命令行应用或增强现有项目的交互体验,指导参数解析、进度反馈和错误处理设计。
  • 推荐采用策略模式实现分支工作流,确保各子命令职责单一且易于单元测试覆盖。
  • 输出支持多种格式(JSON、表格、颜色高亮),满足不同自动化场景的消费需求。
  • 实施时应考虑跨平台兼容性,特别是换行符和终端编码的处理差异。

SKILL.md

CLI Building

Guidelines for building command-line interfaces with modern patterns and best practices.

When to Use

  • Creating new CLI tools or commands
  • Building interactive terminal applications
  • Adding commands to existing projects
  • Implementing command-line interfaces
  • Working with CLI frameworks

Core Principles

  • Async-first: All I/O operations should be async/await, avoid blocking operations
  • Composable commands: Commands should be modular and reusable, use command composition
  • Strategy pattern: Use strategy pattern for branching workflows or task-based commands
  • Output formatting: Proper formatting with unicode symbols and color support

Framework Selection

TypeScript/JavaScript

stricli (@bloomberg/stricli, recommended for modern async-first CLIs):

  • Built for async/await from ground up
  • Type-safe command definitions with full type inference
  • Lazy loading for startup performance
  • Zero dependencies

oclif (alternative):

  • Mature framework with extensive features
  • Plugin system
  • Good for complex CLIs

Python

cyclopts (recommended for async-first):

  • Modern async-first CLI framework
  • Type-safe with excellent async support
  • Clean API design

typer (when fully async support available):

  • Based on Python type hints
  • Clean and intuitive
  • Good for simple to medium complexity CLIs

Command Architecture

Composable Commands

Design commands as reusable modules:

  • Shared command utilities
  • Command middleware
  • Reusable command modules
  • Command composition patterns

Strategy Pattern

Use strategy pattern for:

  • Workflow branching
  • Task-based commands
  • Dynamic command routing
  • Conditional command execution

Output Formatting

  • No emojis: Do not use emojis unless explicitly directed
  • Unicode symbols: Use unicode symbols (✓, ✗, →, ⚠) for status indicators
  • Color support: Use color libraries, never hardcoded ANSI codes
  • NO_COLOR: Always respect NO_COLOR environment variable
  • Formatting: Use formatting for better readability (bold, dim, etc.)

Async Patterns

Async-First Design

All I/O should be async:

  • File operations: use async file APIs
  • Network requests: use async HTTP clients
  • Process execution: use async process APIs
  • Database operations: use async database clients

Error Handling

Handle async errors properly:

  • Use try/catch with await
  • Handle promise rejections
  • Provide clear error messages
  • Exit with appropriate codes

Command Structure

Basic Command

// stricli example
import { createCli } from '@bloomberg/stricli';

async function myCommand() {
  // Async implementation
}

const cli = createCli({
  name: 'my-cli',
  commands: {
    'my-command': myCommand
  }
});

cli.run();
# cyclopts example
from cyclopts import App

app = App()

@app.default
async def my_command():
    # Async implementation
    pass

if __name__ == '__main__':
    app()

Best Practices

  1. Async by default: All operations should be async
  2. Composable design: Build reusable command modules
  3. Strategy pattern: Use for workflow branching
  4. Proper formatting: Unicode symbols and color with NO_COLOR support
  5. Error handling: Clear error messages and exit codes
  6. Type safety: Use TypeScript types or Python type hints
  7. Testing: Test commands in isolation

References

For detailed guidance, see:

  • references/async-patterns.md - Async/await best practices
  • references/composable-commands.md - Command composition patterns
  • references/strategy-pattern.md - Strategy pattern for workflows
  • references/output-formatting.md - Output formatting guidelines
  • references/frameworks.md - Framework comparisons and selection

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

26.89%
按下载量换算204

Codex

24.32%
按下载量换算185

Antigravity

16.48%
按下载量换算125

Gemini CLI

12.04%
按下载量换算91

OpenCode

7.23%
按下载量换算55

Cursor

3.21%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills