Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

plugin-dev插件开发

Agent Skill

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

总安装

546

周安装

23

GitHub Stars

公开资料未说明

下载量

191
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add v1truv1us/ai-eng-system --skill "plugin-dev"

简介

plugin-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于信息发现、技能搜索和任务导向的检索场景,帮助用户在复杂环境中快速获取所需资源。
  • 通过关键词、任务描述或来源仓库进行查询,结合原始 README 文档进一步验证具体用法和功能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • plugin-dev 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
plugin-dev
description
This skill should be used when creating extensions for Claude Code or OpenCode, including plugins, commands, agents, skills, and custom tools. Covers both platforms with format specifications, best practices, and the ai-eng-system build system.
version
1.0.0

Plugin Development for Claude Code & OpenCode

Critical Importance

Creating high-quality plugins is critical to your development workflow's long-term success. Plugins are used repeatedly by yourself and others. Design flaws, poor documentation, or broken functionality compound over time and across users. A well-designed plugin becomes a trusted tool used daily; a poorly designed plugin becomes abandoned technical debt. Invest time in architecture, testing, and documentation—the returns multiply across all future uses.

Systematic Approach

approach plugin development systematically. Plugins require careful planning: understand the problem, design the API, implement incrementally, test thoroughly, and document comprehensively. Don't rush to code—clarify requirements, define interfaces, and consider edge cases first. Build iteratively, validate frequently, and refactor continuously. Every design decision impacts maintainability and extensibility.

The Challenge

The create a plugin that balances specificity with flexibility perfectly, but if you can:

  • Your plugin will be a joy to use and extend
  • Others will build on top of your work
  • The plugin will remain useful as needs evolve
  • You'll establish patterns for future plugin development

The challenge is designing plugins that solve specific problems while staying flexible enough for future use cases. Can you create focused, opinionated tools that don't paint yourself into corners?

Plugin Confidence Assessment

After completing or reviewing plugin development, rate your confidence from 0.0 to 1.0:

  • 0.8-1.0: Plugin well-architected, fully tested, thoroughly documented, follows platform conventions
  • 0.5-0.8: Plugin functional but missing some tests or documentation, some technical debt
  • 0.2-0.5: Plugin works but design unclear, minimal testing, poor documentation
  • 0.0-0.2: Plugin incomplete or broken, unclear purpose, significant rework needed

Identify uncertainty areas: Is the plugin's purpose clear? Are there edge cases unhandled? Will the plugin work as requirements change? What's the maintenance burden?

Overview

The ai-eng-system supports extension development for both Claude Code and OpenCode through a unified content system with automated transformation. Understanding this system enables creating well-organized, maintainable extensions that integrate seamlessly with both platforms.

Extension Types

TypeClaude CodeOpenCodeShared Format
Commands✅ YAML frontmatter✅ Table formatYAML frontmatter
Agents✅ YAML frontmatter✅ Table formatYAML frontmatter
Skills✅ Same format✅ Same formatSKILL.md
Hooks✅ hooks.json✅ Plugin eventsPlatform-specific
Custom Tools❌ (use MCP)✅ tool() helperOpenCode only
MCP Servers✅ .mcp.json✅ Same formatSame format

Development Approaches

1. Canonical Development (Recommended)

Create content in content/ directory, let build.ts transform to platform formats:

content/
├── commands/my-command.md  → dist/.claude-plugin/commands/
│                           → dist/.opencode/command/ai-eng/
└── agents/my-agent.md      → dist/.claude-plugin/agents/
                            → dist/.opencode/agent/ai-eng/

2. Platform-Specific Development

Create directly in platform directories:

  • Claude Code: .claude/commands/, .claude-plugin/
  • OpenCode: .opencode/command/, .opencode/agent/

3. Global vs Project-Local

LocationClaude CodeOpenCode
Project.claude/.opencode/
Global~/.claude/~/.config/opencode/

Quick Reference

Command Frontmatter

Canonical (content/):

---
name: my-command
description: What this command does
agent: build           # Optional: which agent handles this
subtask: true          # Optional: run as subtask
temperature: 0.3      # Optional: temperature
tools:                 # Optional: tool restrictions
  read: true
  write: true
---

Claude Code Output: Same format (YAML frontmatter)

OpenCode Output: Table format

| description | agent |
|---|---|
| Description here | build |

Agent Frontmatter

Canonical (content/):

---
name: my-agent
description: Use this agent when... <example>...</example>
mode: subagent
color: cyan
temperature: 0.3
tools:
  read: true
  write: true
---

Claude Code Output: Same format (YAML frontmatter)

OpenCode Output: Table format

| description | mode |
|---|---|
| Description here | subagent |

Skill Structure

Both platforms use identical format:

skill-name/
├── SKILL.md (required)
│   ├── YAML frontmatter (name, description)
│   └── Markdown body (1,000-3,000 words)
└── Bundled Resources (optional)
    ├── references/       # Detailed documentation
    ├── examples/         # Working code
    └── scripts/          # Utility scripts

OpenCode Custom Tools

Use TypeScript with tool() helper:

import { tool } from "@opencode-ai/plugin"

export default tool({
  description: "Tool description",
  args: {
    param: tool.schema.string().describe("Parameter description"),
  },
  async execute(args, context) {
    // Tool implementation
    return result
  },
})

Directory Locations

For Development in ai-eng-system

ai-eng-system/
├── content/
│   ├── commands/              # Add new commands here
│   └── agents/                # Add new agents here
├── skills/
│   └── plugin-dev/           # This skill
└── build.ts                   # Transforms to both platforms

For User Projects

Project-local:

  • Claude Code: .claude/commands/, .claude-plugin/
  • OpenCode: .opencode/command/, .opencode/agent/

Global:

  • Claude Code: ~/.claude/commands/, ~/.claude-plugin/
  • OpenCode: ~/.config/opencode/command/, ~/.config/opencode/agent/

Platform-Specific Features

Claude Code

Components:

  • Commands with YAML frontmatter
  • Agents with YAML frontmatter
  • Skills with SKILL.md format
  • Hooks via hooks/hooks.json
  • MCP servers via .mcp.json

Manifest: .claude-plugin/plugin.json

{
  "name": "plugin-name",
  "version": "1.0.0",
  "description": "Brief description",
  "commands": ["./commands/*"],
  "mcpServers": "./.mcp.json"
}

OpenCode

Components:

  • Commands with table format
  • Agents with table format
  • Skills via opencode-skills plugin
  • Custom tools with TypeScript
  • Plugin events via TypeScript

Plugin: .opencode/plugin/plugin.ts

import { Plugin } from "@opencode-ai/plugin"

export default (async ({ client, project, directory, worktree, $ }) => {
  return {
    // Plugin hooks here
  }
}) satisfies Plugin

Development Workflow

1. Create Component

Use plugin-dev commands:

  • /ai-eng/create-agent - Create new agent
  • /ai-eng/create-command - Create new command
  • /ai-eng/create-skill - Create new skill
  • /ai-eng/create-tool - Create new custom tool

2. Build

cd ai-eng-system
bun run build              # Build all platforms
bun run build --watch        # Watch mode
bun run build --validate      # Validate content

3. Test

Claude Code:

claude plugin add https://github.com/v1truv1us/ai-eng-system

OpenCode:

# Project-local
./setup.sh

# Global
./setup-global.sh

Best Practices

Content Quality

  • Use third-person in skill descriptions
  • Write commands/agents FOR Claude, not to user
  • Include specific trigger phrases
  • Follow progressive disclosure for skills

File Organization

  • One component per file
  • Clear naming conventions (kebab-case)
  • Proper frontmatter validation

Cross-Platform Compatibility

  • Use canonical format in content/
  • Test build output for both platforms
  • Document platform differences

Security

  • No hardcoded credentials
  • Use HTTPS/WSS for external connections
  • Validate user inputs
  • Follow principle of least privilege

Additional Resources

References

  • references/claude-code-plugins.md - Claude Code specifics
  • references/opencode-plugins.md - OpenCode specifics
  • references/command-format.md - Command syntax guide
  • references/agent-format.md - Agent configuration guide
  • references/skill-format.md - Skills specification
  • references/opencode-tools.md - Custom tool development

Examples

Study existing components in ai-eng-system:

  • content/commands/plan.md - Command structure
  • content/agents/architect-advisor.md - Agent structure
  • skills/prompting/incentive-prompting/SKILL.md - Skill structure

Troubleshooting

Build Issues

  • Run bun run build --validate to check content
  • Check file permissions in output directories
  • Verify YAML frontmatter syntax

Platform Testing

  • Test commands in both Claude Code and OpenCode
  • Verify agents trigger correctly
  • Check skills load via opencode-skills plugin

Common Errors

  • Missing required frontmatter fields
  • Incorrect directory structure
  • Invalid YAML syntax
  • Wrong file permissions

Integration with Ferg Engineering

The plugin-dev system integrates seamlessly with existing ai-eng-system components:

Existing Commands

  • /ai-eng/plan - Implementation planning
  • /ai-eng/review - Code review
  • /ai-eng/work - Task execution

Existing Agents

  • ai-eng/architect-advisor - Architecture guidance
  • ai-eng/frontend-reviewer - Frontend review
  • ai-eng/seo-specialist - SEO optimization

Plugin-Dev Commands

  • /ai-eng/create-plugin - Full plugin development workflow
  • /ai-eng/create-agent - Quick agent creation
  • /ai-eng/create-command - Quick command creation
  • /ai-eng/create-skill - Quick skill creation
  • /ai-eng/create-tool - Quick tool creation

All use the same quality standards and research-backed prompting techniques.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

26.06%
按下载量换算50

Claude Code

23.06%
按下载量换算44

windsurf

16.43%
按下载量换算31

Gemini CLI

13.53%
按下载量换算26

Codex

8.15%
按下载量换算16

Antigravity

3.56%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills