Token导航 LogoToken导航TokenDH.com
运维和基础设施只读github未标认证来源可访问许可证需确认审计提醒

spec-kitty-sync-plugin规格 kitty 同步插件

Agent Skill

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

总安装

552

周安装

23

GitHub Stars

2

下载量

184
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/richfrem/agent-plugins-skills --skill spec-kitty-sync-plugin

简介

spec-kitty-sync-plugin 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中进行协作事项整理。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息组织和梳理的场景。
  • 支持对 GitHub 相关协作内容进行分类、标记和状态跟踪。
  • 安装命令:npx skills add https://github.com/richfrem/agent-plugins-skills --skill spec-kitty-sync-plugin
  • 建议确认权限范围和维护状态,注意可能触发联网或文件读写操作

SKILL.md

Dependencies

This skill requires Python 3.8+ and standard library only. No external dependencies.

[!TIP] See INSTALL.md for instructions on how to install missing dependencies.

To install this skill's dependencies:

pip-compile ./requirements.in
pip install -r ./requirements.txt

See ./requirements.txt for the dependency lockfile (currently empty — standard library only).


Spec Kitty Sync Plugin

You are an active administrator for the Spec-Driven Development framework. This skill handles both initial setup and ongoing updates, ensuring the CLI, templates, plugin, and agent environments are all in sync.

Key principle: This project maintains two layers of knowledge:

  1. Upstream content (auto-synced from spec-kitty CLI) — command templates, rules, mission configs
  2. Custom augmented knowledge (hand-maintained) — best practices, safety guidance, workflow notes, project-specific conventions

The sync must NEVER overwrite custom augmented knowledge. Instead, the agent reviews upstream changes and intelligently reconciles them with existing custom content.

Visual References

  • Update flow: See references/diagrams/sync-plugin-flow.mmd
  • Initial install flow: See references/diagrams/init-install-flow.mmd

Execution Protocol

CRITICAL RULE: Do not simulate these steps. You must invoke the bash commands and read their outputs.

Step 0: Detect Mode (Init vs Update)

Check if .kittify/ exists in the project root:

test -d .kittify && echo "UPDATE" || echo "INIT"
  • INIT mode: First-time setup. Use spec-kitty init. (no --force).
  • UPDATE mode: Refresh existing setup. Use spec-kitty init. --force.

Step 1: Install or Upgrade the CLI

Install or update the spec-kitty-cli package:

pip install --upgrade spec-kitty-cli

Confirm the installed version:

spec-kitty --version

Step 2: Initialize or Refresh Templates

Pull the latest command templates, mission configs, and scripts into .kittify/:

INIT mode (first time):

spec-kitty init . --ai windsurf

*This creates .kittify/, .windsurf/workflows/, mission configs, and git hooks.*

UPDATE mode (existing project):

spec-kitty init . --ai windsurf --force

*This refreshes existing templates without affecting project-specific configs.*

Step 3: Sync to Spec-Kitty Plugin (Automated)

Convert the refreshed .kittify/ templates into distributable plugin components inside the spec-kitty-plugin directory:

python ./scripts/sync_configuration.py

This generates skills, rules, and templates that agents can consume.

IMPORTANT: This step ONLY touches auto-generated files (14 command skill SKILL.md files, rules, templates). It does NOT touch custom skills listed below.

Step 3b: Review & Reconcile Custom Knowledge (Agent-Reviewed)

This is the intelligence step. After the automated sync, you MUST review what changed and reconcile with custom augmented skills.

3b.1: Identify What Changed

Compare the new .kittify/ content against what was there before:

git diff --stat -- .kittify/ .windsurf/ ../../

Summarize the key changes for the user (new commands, removed commands, changed templates, updated mission configs).

3b.2: Review Custom Skills

The following contain custom augmented knowledge that is NOT generated by sync_configuration.py. They MUST be reviewed for staleness after every upstream update:

Custom Skills (in skills/, never touched by sync):

Custom SkillContainsReview For
skills/spec-kitty-workflow/SKILL.mdEnd-to-end workflow guide, safety steps, best practicesNew commands/phases added upstream, safety guidance still accurate
skills/spec-kitty-sync-plugin/SKILL.mdThis skill (meta)Script paths still valid, new sync features
skills/spec-kitty-agent/SKILL.mdAgent config sync, combined lifecycleNew agent configs, changes to sync scripts

AUGMENTED.md Files (in skills/*/references/, adjacent to auto-synced SKILL.md — never overwritten):

Augmented FileContainsReview For
references/AUGMENTED.mdPre-merge safety protocol, branch protection awareness, kitty-specs conflict resolutionNew merge flags, changed CLI behavior
references/AUGMENTED.mdWorktree discipline, commit hygiene, dependency managementNew implement flags, changed validation rules
references/AUGMENTED.mdBatch review protocol, review standards, dependency verificationNew review commands, changed lane logic

For each custom skill:

  1. Read the current content
  2. Compare against the new upstream .kittify/ command templates
  3. Check if any new features, commands, or workflow changes require updates
  4. Check if any existing custom guidance references deprecated features

3b.3: Propose Updates (Never Overwrite)

If changes are needed in custom skills:

  • ADD new sections for new upstream features
  • UPDATE references to renamed or changed commands
  • PRESERVE all custom best practices, safety guidance, and project-specific notes
  • FLAG any conflicts between upstream changes and custom guidance for user review

Present proposed changes to the user in diff format before applying them.

3b.4: Protected Files Checklist & Escalation Taxonomy

Before completing the sync, verify these files were NOT deleted or corrupted:

  • ./rules/constitution.md
  • ./references/standard-workflow-rules.md
test -f ./rules/constitution.md && echo "constitution OK" || echo "MISSING!"

Escalation Taxonomy (Missing Data Response) If ANY protected file is missing or ls returns an error, trigger the Escalation Taxonomy:

  1. Stop: Do not proceed to Step 4 (Bridging).
  2. Alert: 🚨 PROTECTED FILE MISSING 🚨
  3. Explain: State which file is missing (e.g., "constitution.md was deleted during update").
  4. Recommend: "We must restore this file from git history before bridging plugins."
  5. Draft: Ask the user for permission to run git checkout -- <file>.

Step 4: Deploy to Agent Environments (Interactive)

ASK THE USER before deploying:

Which plugins should I install/update? 1. Only spec-kitty-plugin (just the updated spec-kitty commands) 2. All plugins (full ecosystem sync across all 80+ plugins)

Step 4: Deploy to Agent Environments (Universal)

After performing the sync, you must deploy the updated plugin to your agent environment.

[!IMPORTANT] Zero Inline Commands: See the central installation guide for the authoritative deployment logic: ### 👉 INSTALL.md

This handles both forced re-installation and full ecosystem synchronization across all 80+ plugins.

Step 5: Confirmation

Inform the user:

  • Whether this was an INIT or UPDATE
  • Which CLI version is now installed
  • How many skills/rules/templates were synced (auto-generated)
  • What changed in the upstream update (key diff summary)
  • Whether any custom skills needed reconciliation (and what was proposed)
  • Whether all protected files are intact
  • Which plugins were bridged to which agents
  • That they must Reload their Window (or restart the agent session) to see the new commands

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.95%
按下载量换算62

Claude

30.21%
按下载量换算56

Cursor

18.32%
按下载量换算34

Gemini CLI

9.88%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills