Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

oclif-patterns奥克利夫模式

Agent Skill

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

总安装

371

周安装

15

GitHub Stars

公开资料未说明

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vanman2024/cli-builder --skill oclif-patterns

简介

oclif-patterns 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于 CLI 工具开发、命令行模式识别和最佳实践检索等场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和命令执行环境。
  • 安装前建议检查仓库维护状态,以及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

oclif Enterprise CLI Patterns

Provides comprehensive patterns for building production-grade CLIs with oclif framework.

Core Capabilities

1. Command Structure

  • Single and multi-command CLIs
  • Flag definitions (string, boolean, integer, custom)
  • Argument parsing with validation
  • Command inheritance and base classes
  • Async command execution

2. Plugin System

  • Installable plugins
  • Plugin discovery and loading
  • Hook system for extensibility
  • Plugin commands and lifecycle

3. Auto-Documentation

  • Auto-generated help text
  • README generation
  • Command reference docs
  • Flag and argument documentation

4. Testing Patterns

  • Command unit tests
  • Integration testing
  • Mock stdin/stdout
  • Fixture management
  • Test helpers

Implementation Guide

Command Creation

Use templates:

  • templates/command-basic.ts - Simple command with flags
  • templates/command-advanced.ts - Complex command with validation
  • templates/command-async.ts - Async operations
  • templates/base-command.ts - Custom base class

Key patterns:

  1. Import Command from '@oclif/core'
  2. Define flags using Flags object
  3. Define args using Args object
  4. Implement async run() method
  5. Use this.log() for output
  6. Use this.error() for errors

Flag Patterns

Common flags:

  • String: Flags.string({description, required, default})
  • Boolean: Flags.boolean({description, allowNo})
  • Integer: Flags.integer({description, min, max})
  • Custom: Flags.custom<T>({parse: async (input) => T})
  • Multiple: Flags.string({multiple: true})

Best practices:

  • Always provide clear descriptions
  • Use char for common short flags
  • Set required vs optional explicitly
  • Provide sensible defaults
  • Validate in parse function for custom flags

Argument Patterns

Definition:

static args = {
  name: Args.string({ description: 'Name', required: true }),
  file: Args.file({ description: 'File path', exists: true })
}

Access in run():

const { args } = await this.parse(MyCommand)

Plugin Development

Use templates:

  • templates/plugin-package.json - Plugin package.json
  • templates/plugin-command.ts - Plugin command structure
  • templates/plugin-hooks.ts - Hook implementations

Plugin structure:

my-plugin/
├── package.json (oclif configuration)
├── src/
│   ├── commands/ (plugin commands)
│   └── hooks/ (lifecycle hooks)
├── test/ (plugin tests)
└── README.md

Testing Setup

Use templates:

  • templates/test-command.ts - Command test template
  • templates/test-helpers.ts - Test utilities
  • templates/test-setup.ts - Test configuration

Testing approach:

  1. Use @oclif/test for test helpers
  2. Mock stdin/stdout with fancy-test
  3. Test flag parsing separately
  4. Test command execution
  5. Test error handling
  6. Use fixtures for file operations

Auto-Documentation

Generated automatically:

  • Command help via --help flag
  • README.md with command reference
  • Usage examples
  • Flag and argument tables

Use scripts:

  • scripts/generate-docs.sh - Generate all documentation
  • scripts/update-readme.sh - Update README with commands

Quick Start Examples

Create Basic Command

# Use template
./scripts/create-command.sh my-command basic

# Results in: src/commands/my-command.ts

Create Plugin

# Use template
./scripts/create-plugin.sh my-plugin

# Results in: plugin directory structure

Run Tests

# Use test helpers
npm test
# or with coverage
npm run test:coverage

Validation Scripts

Available validators:

  • scripts/validate-command.sh - Check command structure
  • scripts/validate-plugin.sh - Verify plugin structure
  • scripts/validate-tests.sh - Ensure test coverage

Templates Reference

TypeScript Commands

  1. command-basic.ts - Simple command pattern
  2. command-advanced.ts - Full-featured command
  3. command-async.ts - Async/await patterns
  4. base-command.ts - Custom base class
  5. command-with-config.ts - Configuration management

Plugin System

  1. plugin-package.json - Plugin package.json
  2. plugin-command.ts - Plugin command
  3. plugin-hooks.ts - Hook implementations
  4. plugin-manifest.json - Plugin manifest

Testing

  1. test-command.ts - Command unit test
  2. test-helpers.ts - Test utilities
  3. test-setup.ts - Test configuration
  4. test-integration.ts - Integration test

Configuration

  1. tsconfig.json - TypeScript config
  2. package.json - oclif package.json
  3. .eslintrc.json - ESLint config

Examples Directory

See examples/ for complete working examples:

  • examples/basic-cli/ - Simple CLI with commands
  • examples/plugin-cli/ - CLI with plugin support
  • examples/enterprise-cli/ - Full enterprise setup

Common Patterns

Error Handling

if (!valid) {
  this.error('Invalid input', { exit: 1 })
}

Spinner/Progress

const spinner = ux.action.start('Processing')
// ... work
ux.action.stop()

Prompts

const answer = await ux.prompt('Continue?')

Table Output

ux.table(data, { columns: [...] })

Requirements

  • Node.js 18+
  • TypeScript 5+
  • @oclif/core ^3.0.0
  • @oclif/test for testing
  • Knowledge of TypeScript decorators (optional but helpful)

Best Practices

  1. Command Design: Keep commands focused, single responsibility
  2. Flags: Use descriptive names, provide help text
  3. Testing: Test command parsing and execution separately
  4. Documentation: Let oclif generate docs, keep them updated
  5. Plugins: Design for extensibility from the start
  6. Error Messages: Provide actionable error messages
  7. TypeScript: Use strict mode, define proper types
  8. Async: Use async/await, handle promises properly

Advanced Features

Custom Flag Types

Create reusable custom flag parsers for complex validation.

Hook System

Implement hooks for: init, prerun, postrun, command_not_found.

Topic Commands

Organize commands into topics (e.g., mycli topic:command).

Auto-Update

Use @oclif/plugin-update for automatic CLI updates.

Analytics

Integrate analytics to track command usage.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.78%
按下载量换算39

Claude

32.29%
按下载量换算37

Cursor

17.7%
按下载量换算21

Gemini CLI

8.72%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills