返回技能列表

build-cli-plugin

pjt222
更新于 2 days ago
7 次查看
17
2
17
在 GitHub 上查看
design

关于

This skill helps developers build CLI plugins or adapters using an abstract base class pattern. It covers defining contracts, implementing installation strategies (symlink, copy, append-to-file), and providing detection, idempotent install/uninstall, listing, and auditing capabilities. Use it when adding framework support to CLI installers, creating plugin systems for multi-target tools, or extending existing adapter architectures.

快速安装

Claude Code

推荐
主要方式
npx skills add pjt222/agent-almanac -a claude-code
插件命令备选方式
/plugin add https://github.com/pjt222/agent-almanac
Git 克隆备选方式
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/build-cli-plugin

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

构建 CLI 插件

使用抽象基类模式向 CLI 工具的可插拔架构添加新插件或适配器。

适用场景

  • 向 CLI 安装器添加对新目标框架的支持
  • 为多目标命令行工具构建插件系统
  • 用新策略变体扩展现有适配器架构
  • 将内容交付移植到使用不同文件布局的框架

输入

  • 必需:插件支持的框架或目标(名称、配置路径、约定)
  • 必需:基类或插件契约的路径
  • 必需:安装策略:symlinkcopyfile-per-itemappend-to-file
  • 可选:插件处理的内容类型(如仅技能、技能 + 代理、完整支持)
  • 可选:作用域支持(项目级、全局、两者)

步骤

第 1 步:定义契约

基类建立所有插件必须实现的接口:

export class FrameworkAdapter {
  static id = 'base';            // Unique identifier
  static displayName = 'Base';   // Human-readable name
  static strategy = 'symlink';   // Installation strategy
  static contentTypes = ['skill']; // What this adapter handles

  async detect(projectDir) { return false; }
  getTargetPath(projectDir, scope) { throw new Error('Not implemented'); }
  async install(item, projectDir, scope, options) { throw new Error('Not implemented'); }
  async uninstall(item, projectDir, scope, options) { throw new Error('Not implemented'); }
  async listInstalled(projectDir, scope) { return []; }
  async audit(projectDir, scope) { return { framework: this.constructor.displayName, ok: [], warnings: [], errors: [] }; }
  supports(contentType) { return this.constructor.contentTypes.includes(contentType); }
}

静态字段定义插件的身份和能力:

  • id:用于 --framework <id> 选项和结果报告
  • displayName:在人类可读输出中显示
  • strategy:决定内容如何到达目标
  • contentTypes:过滤此适配器接收哪些项

如果基类尚不存在,先创建它。该模式可扩展到任意数量的插件。

预期结果: 一个具有静态身份字段和抽象方法的基类。

失败处理: 若基类有不适用于所有插件的方法(如并非所有框架都支持 audit),提供返回合理空操作的默认实现。

第 2 步:选择安装策略

策略何时使用示例
symlink目标直接读取源文件。最便宜,保持同步。Claude Code 读取 .claude/skills/<name>/ 符号链接
copy目标需要文件在自己的目录中。修改不传播。某些 IDE 仅索引自己的目录
file-per-item目标期望每项一个特定格式的文件。Cursor .mdc 规则文件
append-to-file目标读取单一指令文件。Aider CONVENTIONS.md、Codex AGENTS.md

策略决定实现形式:

  • SymlinksymlinkSync(source, target) —— 处理相对 vs 绝对路径
  • CopycpSync(source, target, { recursive: true }) —— 处理覆盖
  • File-per-itemwriteFileSync(target, transform(content)) —— 可能需要格式转换
  • Append-to-file:将内容包裹在标记中以实现幂等的插入/替换/移除

预期结果: 选择策略并基于目标框架如何发现内容给出清晰的依据。

失败处理: 若不确定,查阅框架文档了解它如何发现配置或指令文件。如果框架读取任意目录,默认使用 symlink。

第 3 步:实现检测

检测告诉 CLI 项目中存在哪些框架:

// In detector.js — each rule checks for a filesystem marker
const RULES = [
  {
    id: 'my-framework',
    displayName: 'My Framework',
    check: (dir) => existsSync(resolve(dir, '.myframework/')),
    marker: '.myframework/',
    scope: 'project',
  },
];

检测策略:

  • 目录存在.claude/.cursor/.gemini/
  • 配置文件opencode.json.aider.conf.yml
  • 指令文件AGENTS.mdCONVENTIONS.md
  • 全局标记~/.openclaw/~/.hermes/

始终在检测结果中返回标记,以便用户理解为何检测到该框架。

预期结果: 一条可靠识别框架且无误报的检测规则。

失败处理: 若框架没有唯一标记(通用目录名),使用标记组合或要求显式 --framework 指定。

第 4 步:实现幂等的 Install

async install(item, projectDir, scope, options) {
  const targetDir = this.getTargetPath(projectDir, scope);
  const targetPath = resolve(targetDir, item.id);

  // Idempotency: skip if already installed (unless force)
  if (existsSync(targetPath) && !options.force) {
    return { action: 'skipped', path: targetPath };
  }

  if (options.dryRun) {
    return { action: 'created', path: targetPath, details: 'dry-run' };
  }

  // Ensure parent directory exists
  mkdirSync(targetDir, { recursive: true });

  // Strategy-specific installation
  if (this.constructor.strategy === 'symlink') {
    const relPath = relative(targetDir, item.sourceDir);
    symlinkSync(relPath, targetPath);
  } else if (this.constructor.strategy === 'copy') {
    cpSync(item.sourceDir, targetPath, { recursive: true });
  }

  return { action: 'created', path: targetPath };
}

幂等性规则:

  • 若目标存在且未设置 --force,则跳过
  • 若设置了 --force覆盖(先移除,再安装)
  • Dry-run 始终成功,action: 'created'
  • 返回值必须始终为 { action, path, details? }

预期结果: Install 在目标路径创建内容,若已存在则跳过,遵循 --force--dry-run

失败处理: 若 Windows/NTFS 上 symlink 创建失败,回退到目录联接或复制。记录回退。

第 5 步:实现 Uninstall 与清理

async uninstall(item, projectDir, scope, options) {
  const targetDir = this.getTargetPath(projectDir, scope);
  const targetPath = resolve(targetDir, item.id);

  if (!existsSync(targetPath)) {
    return { action: 'skipped', path: targetPath };
  }

  if (options.dryRun) {
    return { action: 'removed', path: targetPath };
  }

  // Remove the installed content
  rmSync(targetPath, { recursive: true });

  return { action: 'removed', path: targetPath };
}

清理注意事项:

  • 仅移除插件安装的内容 —— 切勿删除用户创建的文件
  • 对于 append-to-file:移除标记的部分,而非整个文件
  • 保留父目录完好(其他插件可能使用)

预期结果: Uninstall 仅移除插件的内容,不影响其他内容。

失败处理: 若移除失败(权限、文件锁定),返回错误结果而非抛出异常。

第 6 步:实现列出与审计

async listInstalled(projectDir, scope) {
  const targetDir = this.getTargetPath(projectDir, scope);
  if (!existsSync(targetDir)) return [];

  const entries = readdirSync(targetDir);
  return entries.map(name => {
    const fullPath = resolve(targetDir, name);
    const broken = lstatSync(fullPath).isSymbolicLink()
      && !existsSync(fullPath);
    return { id: name, type: 'skill', broken };
  });
}

async audit(projectDir, scope) {
  const items = await this.listInstalled(projectDir, scope);
  const ok = items.filter(i => !i.broken);
  const broken = items.filter(i => i.broken);
  return {
    framework: this.constructor.displayName,
    ok: [`${ok.length} skills installed`],
    warnings: [],
    errors: broken.map(i => `Broken: ${i.id}`),
  };
}

预期结果: 列出返回所有已安装项及损坏链接检测。审计汇总健康状况。

失败处理: 若目标目录不存在,返回空结果(不是错误 —— 框架只是没有安装任何内容)。

第 7 步:注册插件

// In adapters/index.js
import { MyFrameworkAdapter } from './my-framework.js';
register(MyFrameworkAdapter);

注册使适配器可用于:

  • 自动检测(detectFrameworks()getAdaptersForDetections()
  • 显式选择(--framework my-framework
  • 列出(listAdapters()

预期结果: 适配器出现在 tool detect 输出中,可通过 --framework 定位。

失败处理: 若适配器未出现,验证 static id 与检测规则的 id 匹配,且已调用 register()

第 8 步:编写测试

describe('adapter: my-framework (dry-run)', () => {
  it('targets the correct path', () => {
    const out = run('install create-skill --framework my-framework --dry-run');
    assert.match(out, /\.myframework/i);
  });
});

至少测试:dry-run 路径、检测存在和内容类型支持。

预期结果: 适配器特定测试确认安装路径与行为。

失败处理: 若 CI 中未检测到框架(无标记目录),在测试中显式使用 --framework

验证清单

  • 插件正确扩展基类
  • 设置静态字段(iddisplayNamestrategycontentTypes
  • 检测规则识别框架且无误报
  • install() 是幂等的(若存在则跳过,遵循 --force
  • uninstall() 仅移除插件创建的内容
  • listInstalled() 检测损坏的符号链接
  • audit() 准确报告健康状况
  • 插件已注册并出现在 tool detect
  • Dry-run 测试通过

常见问题

  • 遗忘相对 vs 绝对符号链接:项目作用域符号链接应为相对(可移植)。全局作用域符号链接应为绝对(不依赖 cwd)。
  • 未处理缺失的父目录:在创建内容前始终 mkdirSync(dir, { recursive: true })
  • 无标记的 append-to-file:没有幂等标记(<!-- start:id --> / <!-- end:id -->),重复安装会复制内容。始终包裹追加内容。
  • 检测误报:通用目录名(如 .config/)可能匹配多个框架。在目录内使用特定文件标记。
  • 遗忘 supports() 检查:安装器在分发前调用 supports(item.type)。若 contentTypes 错误,适配器会静默跳过项。

相关技能

  • scaffold-cli-command —— 构建使用此插件的 CLI 命令
  • test-cli-application —— CLI 工具的测试模式,包括适配器测试
  • design-cli-output —— 安装/卸载结果的终端输出

GitHub 仓库

pjt222/agent-almanac
路径: i18n/zh-CN/skills/build-cli-plugin
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

相关推荐技能

content-collections

Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。

查看技能

polymarket

这个Claude Skill为开发者提供完整的Polymarket预测市场开发支持,涵盖API调用、交易执行和市场数据分析。关键特性包括实时WebSocket数据流,可监控实时交易、订单和市场动态。开发者可用它构建预测市场应用、实施交易策略并集成实时市场预测功能。

查看技能

creating-opencode-plugins

该Skill帮助开发者创建OpenCode插件,用于接入命令、文件、LSP等25+种事件。它提供了插件结构、事件API规范和JavaScript/TypeScript实现模式,适合需要拦截操作、扩展功能或自定义事件处理的场景。开发者可通过它快速构建响应式模块来增强OpenCode AI助手的能力。

查看技能

sglang

SGLang是一个专为LLM设计的高性能推理框架,特别适用于需要结构化输出的场景。它通过RadixAttention前缀缓存技术,在处理JSON、正则表达式、工具调用等具有重复前缀的复杂工作流时,能实现极速生成。如果你正在构建智能体或多轮对话系统,并追求远超vLLM的推理性能,SGLang是理想选择。

查看技能