Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

sync-from-vibe-workflow从 Vibe 工作流程同步

Agent Skill

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

总安装

294

周安装

12

GitHub Stars

2

下载量

94
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:sync-from-vibe-workflow(从 Vibe 工作流程同步)
来源仓库:https://github.com/doodledood/codex-workflow
仓库路径:skills/sync-from-vibe-workflow
安装命令:
npx skills add https://github.com/doodledood/codex-workflow --skill sync-from-vibe-workflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/doodledood/codex-workflow --skill sync-from-vibe-workflow

简介

用于在 Codex、Claude、Cursor、Gemini CLI 中查找和筛选相关信息。

  • 支持根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合原始 README 和仓库内容进一步核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发不必要操作。
  • 安装方式:通过 GitHub 仓库使用 npx 命令添加。

SKILL.md

User request: $ARGUMENTS

Sync skills from the source vibe-workflow (in claude-code-plugins) to this codex-workflow repository, adapting Claude Code features to Codex equivalents.

Phase 1: Setup & Discovery

1.1 Clone Source Repository

git clone https://github.com/doodledood/claude-code-plugins /tmp/claude-code-plugins

If already exists, pull latest:

cd /tmp/claude-code-plugins && git pull

1.2 List Skills and Agents

Source locations:

  • Skills: /tmp/claude-code-plugins/claude-plugins/vibe-workflow/skills/
  • Agents: /tmp/claude-code-plugins/claude-plugins/vibe-workflow/agents/

Destination location: ./skills/

List directory names and agent files (NOT file contents):

ls /tmp/claude-code-plugins/claude-plugins/vibe-workflow/skills/
ls /tmp/claude-code-plugins/claude-plugins/vibe-workflow/agents/
ls ./skills/

Agent-to-Skill Discovery: Source agents contain full implementations. Dynamically match agents to destination skills by:

  1. Read each agent file's frontmatter - extract the name field
  2. Search destination skills for matching purpose:

- Agent code-X-reviewer → look for review-X skill - Agent X-reviewer → look for review-X skill - Agent X-fixer → look for corresponding fix skill (e.g., bugfix) - Agent names may not match exactly - compare descriptions and purpose

  1. For unmatched agents - check if a new skill should be created

Note: Source skills often have brief delegations like "Use the X agent to...". The actual implementation is in the corresponding agent file. When syncing, compare the agent file (not the brief skill) against the destination skill.

1.3 Categorize Skills

Compare the two lists and categorize:

CategoryCriteriaExample
ADDExists in source, not in destinationNew skill from upstream
MODIFYExists in both locationsExisting skill to sync
REMOVEExists only in destinationOrphaned skill (ask user)

Special mappings (treat as MODIFY despite name difference):

  • Source implement-inplace → Destination implement
  • Source review-claude-md-adherence → Destination review-agents-md-adherence

1.4 Create Todo List

Create structured todos based on categorization:

[ ] Clone/update source repository
[ ] List and categorize skills

For each skill to ADD:

[ ] Add {skill-name}: copy from source and adapt

For each skill to MODIFY (TWO todos per skill):

[ ] Read {skill-name}: compare source and destination
[ ] Update {skill-name}: apply changes if needed

For skills to REMOVE (after user confirmation):

[ ] Remove {skill-name}: delete from destination

Finalization:

[ ] Update README if skills added/removed
[ ] Commit and push changes

Example todo list:

[x] Clone/update source repository
[x] List and categorize skills
[ ] Read bugfix: compare source and destination
[ ] Update bugfix: apply changes if needed
[ ] Read plan: compare source and destination
[ ] Update plan: apply changes if needed
[ ] Add new-skill: copy from source and adapt
[ ] Update README if skills added/removed
[ ] Commit and push changes

Phase 2: Adaptation Rules

When syncing skills, apply these transformations:

2.1 Tool Mappings

Claude CodeCodex Equivalent
TodoWriteupdate_plan
Task(subagent)N/A - inline execution only
Skill("vibe-workflow:skill-name")$skill-name
AskUserQuestionStandard user prompts

2.2 File Reference Changes

Claude CodeCodex
CLAUDE.mdAGENTS.md
/claude-code-plugins/...Local paths

2.3 Special Cases

implement: Since Codex has no subagents, implement here should match implement-inplace from source (not the orchestrator implement that uses subagents).

review-claude-md-adherence: Maps to review-agents-md-adherence - update all references from CLAUDE.md to AGENTS.md.

2.4 Skill Format

Source uses Claude Code skill format. Destination uses Codex format:

---
name: skill-name
description: "Description under 500 chars. Include triggers."
---

Skill instructions...

Limits:

  • name: max 100 characters
  • description: max 500 characters

Phase 3: Sync Process

3.1 For Skills to ADD

  1. Mark "Add {skill-name}" todo as in_progress
  2. Copy skill directory from source: cp -r /tmp/claude-code-plugins/claude-plugins/vibe-workflow/skills/<skill-name>./skills/
  3. Read the copied SKILL.md
  4. Apply adaptation rules from Phase 2
  5. Write adapted skill
  6. Mark todo completed

3.2 For Skills to MODIFY (Two-Step Process)

Step 1: Read and Compare

  1. Mark "Read {skill-name}" todo as in_progress
  2. Determine the source of truth:

- Check if source skill is a brief delegation (e.g., "Use the X agent to...") - If brief delegation → read the corresponding agent file as the source - If full implementation → read the skill file as source

  1. Read source (agent or skill based on above)
  2. Read destination: ./skills/{skill-name}/SKILL.md
  3. Identify differences:

- Content changes in source that should be synced - Codex-specific adaptations in destination to preserve - Already up-to-date sections (no change needed)

  1. Note findings (what needs updating, what's already correct)
  2. Mark todo completed

Step 2: Update

  1. Mark "Update {skill-name}" todo as in_progress
  2. If no changes needed → mark completed, move on
  3. If changes needed:

- Apply source changes while preserving Codex adaptations - Use Edit tool for targeted updates (not full rewrites) - Ensure the destination skill has the FULL implementation (not a brief delegation)

  1. Mark todo completed

3.2.1 Agent-to-Skill Sync Pattern

When syncing an agent to a skill:

  1. Read the source agent file (e.g., agents/code-bugs-reviewer.md)
  2. Read the destination skill file (e.g., skills/review-bugs/SKILL.md)
  3. Compare content - the destination should contain:

- Proper Codex frontmatter (name, description, metadata) - Full implementation from the agent, adapted for Codex

  1. Apply updates from agent to skill:

- New sections, categories, or guidelines from the agent - Updated review processes or criteria - New output formats or examples

  1. Preserve Codex adaptations:

- AGENTS.md instead of CLAUDE.md - $skill-name invocation format - No subagent references - Codex frontmatter format

3.3 For Skills to REMOVE

  1. Ask user for confirmation before removing
  2. If confirmed, delete skill directory
  3. Note removal for README update

3.4 Preserve Codex-Specific Content

When updating, preserve:

  • AGENTS.md references (don't revert to CLAUDE.md)
  • update_plan (don't revert to TodoWrite)
  • $skill-name invocation format
  • Inline execution patterns (don't add subagent references)
  • Expanded implementations (destination may have fuller versions than source's brief delegations)

Phase 4: Finalize

4.1 Update README

If skills were added or removed, update README.md:

  • Available Skills section
  • Repository Structure (if directories changed)

4.2 Commit Changes

For each logical group of changes:

git add <files>
git commit -m "Sync <skill-name> from vibe-workflow"

Or batch commit:

git add skills/
git commit -m "Sync skills from vibe-workflow"

4.3 Push

git push -u origin <branch>

Edge Cases

CaseAction
Skill exists only in destinationAsk user before removing
Skill renamed in sourceCreate new, ask about removing old
Major structural changesDocument changes, proceed with sync
Source skill uses subagentsAdapt to inline execution (run sequentially)
Source skill is brief delegationRead the corresponding agent file as the source of truth
Source agent updated but dest skill existsSync agent changes into the destination skill
Conflicting contentPrefer source logic, apply Codex adaptations

Verification Checklist

After sync, verify:

  • All Skill("vibe-workflow:...") calls converted to $skill-name
  • All TodoWrite references converted to update_plan
  • All CLAUDE.md references converted to AGENTS.md
  • No subagent Task() calls remain
  • No AskUserQuestion tool references remain
  • Description under 500 chars
  • Name under 100 chars

Source Reference

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

26.4%
按下载量换算25

OpenCode

23.14%
按下载量换算22

Antigravity

18.85%
按下载量换算18

Gemini CLI

11.05%
按下载量换算10

windsurf

8.42%
按下载量换算8

Codex

3.31%
按下载量换算3

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills