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

plugin-lifecycle插件生命周期

Agent Skill

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

总安装

339

周安装

14

GitHub Stars

182

下载量

111
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/glittercowboy/plugin-freedom-system --skill plugin-lifecycle

简介

plugin-lifecycle 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕仓库状态和协作事项进行整理。

  • 它适用于代码审查、变更追踪和团队协作场景,可帮助 Agent 梳理项目结构和提交历史。
  • 通过仓库路径、Issue 编号或 PR ID 触发,返回相关元数据和变更内容供进一步分析。
  • 安装命令为 npx skills add https://github.com/glittercowboy/plugin-freedom-system --skill plugin-lifecycle,需确认 GitHub API 访问权限。
  • 使用前应检查仓库可见性和维护状态,避免依赖私有或归档项目,防止触发不必要的网络请求。

SKILL.md

plugin-lifecycle Skill

Purpose: Manage the complete lifecycle of plugins from installation to removal with proper state tracking and safety features.

Overview

This skill handles all plugin lifecycle operations on macOS:

  • Installation (Mode 1): Copy Release binaries to system folders (~/Library/Audio/Plug-Ins/)
  • Uninstallation (Mode 2): Clean removal from system folders (preserves source code)
  • Reset to Ideation (Mode 3): Remove implementation, keep idea/mockups (surgical rollback)
  • Destroy (Mode 4): Complete removal with backup (nuclear option)

All operations include proper permissions, cache clearing, state tracking, and safety features (confirmations, backups).


Mode Dispatcher

This skill operates in different modes based on the invoking command:

ModeOperationCommandPurpose
1Installation/install-pluginDeploy to system folders
2Uninstallation/uninstallRemove binaries, keep source
3Reset to Ideation/reset-to-ideationRemove implementation, keep idea/mockups
4Destroy/destroyComplete removal with backup
MenuInteractive/cleanPresent menu, user chooses mode

Invocation Pattern: When user runs /install-plugin [Name], the command expands to a prompt that invokes THIS skill. Determine mode by examining command (see references/invocation-protocol.md), then load ONLY the relevant reference file:

  • Mode 1 → Load and execute references/installation-process.md ONLY
  • Mode 2 → Load and execute references/uninstallation-process.md ONLY
  • Mode 3 → Load and execute references/mode-3-reset.md ONLY
  • Mode 4 → Load and execute references/mode-4-destroy.md ONLY
  • Menu → Present menu, wait for selection, then load chosen mode reference file

IMPORTANT: Do NOT load other mode reference files. Load only the reference file for the active mode to optimize context window usage.

Installation targets (macOS):

  • VST3, AU: ~/Library/Audio/Plug-Ins/VST3/, ~/Library/Audio/Plug-Ins/Components/
  • AAX: ~/Library/Application Support/Avid/Audio/Plug-Ins/ (future)

Installation Workflow (Mode 1 - Critical - Do Not Skip Steps)

Copy this checklist to track installation progress:

Installation Progress:
- [ ] Step 1: Build verification (BLOCKING)
- [ ] Step 2: Product name extraction
- [ ] Step 3: Old version removal
- [ ] Step 4: Copy to system folders (BLOCKING)
- [ ] Step 5: Permissions verification (BLOCKING)
- [ ] Step 6: Cache clearing
- [ ] Step 7: Verification (BLOCKING)
- [ ] Step 8: PLUGINS.md update (BLOCKING)

Execute these steps in order:

  1. Build Verification (BLOCKING) - Check Release binaries exist, offer to build if missing

- See: references/installation-process.md Step 1 - Cannot proceed without binaries

  1. Product Name Extraction - Extract PRODUCT_NAME from CMakeLists.txt

- See: references/installation-process.md Step 2 - Required for all subsequent steps

  1. Old Version Removal - Remove existing installations to prevent conflicts

- See: references/installation-process.md Step 3 - Can proceed if no old version exists

  1. Copy to System Folders (BLOCKING) - Install VST3 and AU to macOS plugin directories

- See: references/installation-process.md Step 4 - Core installation step

  1. Permissions Verification (BLOCKING) - Set 755 permissions for DAW access

- See: references/installation-process.md Step 5 - DAWs cannot load plugins without correct permissions

  1. Cache Clearing - Clear Ableton Live and Logic Pro caches

- See: references/cache-management.md - Display warning if fails, then proceed

  1. Verification (BLOCKING) - Confirm installation with file checks and size validation

- See: references/installation-process.md Step 7 - Must confirm success before declaring completion

  1. PLUGINS.md Update (BLOCKING) - Record installation status and locations

- See: references/installation-process.md Step 8 - State tracking is part of success criteria

Note: Steps marked BLOCKING must succeed before proceeding.

Feedback Loop: If Step 7 (Verification) fails:

  1. Review error details
  2. Check reference file: references/error-handling.md
  3. Apply fix
  4. Retry from Step 4 (Copy to System Folders)

If verification succeeds, proceed to decision menu.

See references/installation-process.md for complete implementation.


Cache Management

See references/cache-management.md for cache clearing procedures (invoked during installation and uninstallation).


Uninstallation Workflow (Mode 2)

See references/uninstallation-process.md for complete uninstallation process (locate, confirm, remove, clear caches, update PLUGINS.md).


Reset to Ideation Workflow (Mode 3)

Surgical rollback - removes implementation, preserves idea/mockups. Use case: Implementation failed but concept is solid. See references/mode-3-reset.md for complete process.


Destroy Workflow (Mode 4)

Complete removal with backup. Use case: Abandoned experiment, never using again. Requires exact plugin name confirmation (safety gate). See references/mode-4-destroy.md for complete process.


Interactive Menu (Mode: Menu)

When invoked via /clean [PluginName], present interactive menu:

Plugin cleanup options for [PluginName]:

1. Uninstall - Remove binaries from system folders (keep source code)
2. Reset to ideation - Remove implementation, keep idea/mockups
3. Destroy - Complete removal with backup (IRREVERSIBLE except via backup)
4. Cancel

Choose (1-4): _

Menu logic:

  1. Read current status from PLUGINS.md
  2. Filter options based on status:

- IF status = "💡 Ideated" → Show options 2, 3, 4 (cannot uninstall what isn't built) - IF status = "✅ Working" → Show options 1, 2, 3, 4 (not installed yet) - IF status = "📦 Installed" → Show ALL options (full lifecycle available) - IF status = "🚧 In Progress" → Show only option 4 (Cancel) - ELSE (unknown status) → Show ALL options with warning: "Unknown status '[status]' - showing all options"

  1. Present filtered menu, wait for user choice
  2. Route to selected mode (1-4) or exit on Cancel

Checkpoint Protocol

After successful operations, check workflow mode before presenting decision menu:

  1. Check workflow mode:

- Read .claude/preferences.json for workflow.mode setting - Modes: "manual" (present menu) or "express" (skip menu)

  1. Manual mode (default):

- Present decision menu to user - See references/decision-menu-protocol.md for menu format

  1. Express mode:

- Skip decision menu - Return control to caller immediately

Note: plugin-lifecycle operations are terminal (don't chain to next stage), so express mode behavior is: complete operation → skip menu → end workflow.


Integration Points

Invoked by:

  • /install-plugin [PluginName] → Mode 1 (Installation)
  • /uninstall [PluginName] → Mode 2 (Uninstallation)
  • /reset-to-ideation [PluginName] → Mode 3 (Reset)
  • /destroy [PluginName] → Mode 4 (Destroy)
  • /clean [PluginName] → Interactive menu
  • plugin-workflow skill → After Stage 3 (auto-installs)
  • plugin-improve skill → After successful changes (offers reinstallation)
  • Natural language: "Install [PluginName]", "Remove [PluginName]", "Clean up [PluginName]"

Invokes:

  • None (terminal skill, doesn't invoke others)

Invocation patterns: See references/invocation-protocol.md for mode detection and routing.

Updates:

  • PLUGINS.md → Table row: status, version, last updated
  • plugins/[Name]/NOTES.md → Status metadata, timeline entries, installation details

Creates:

  • System folder installations (non-git-tracked):

- ~/Library/Audio/Plug-Ins/VST3/[Product].vst3 - ~/Library/Audio/Plug-Ins/Components/[Product].component

Blocks:

  • None (installation is optional, plugins can be tested without installing)

Success Criteria

Installation is successful when: VST3/AU installed with 755 permissions, caches cleared, PLUGINS.md updated, user informed of next steps.


适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

31.11%
按下载量换算35

windsurf

20.64%
按下载量换算23

OpenCode

18.2%
按下载量换算20

Codex

11.69%
按下载量换算13

Antigravity

7.07%
按下载量换算8

Gemini CLI

3.72%
按下载量换算4

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills