46 skills

为 Claude Code 和 Codex 提供 46 skills 与 expert agents。

从规划和规格编写,到代码生成、review 和 release,在不离开 terminal 的情况下自动化完整 development workflow。

查看工作原理

Why

当 toolkit 承担重复工作时,workflow 会变得更轻。

没有 toolkit

  • 你需要为每个任务重写 planning prompt 和 acceptance criteria。
  • 你要手动在分散的 notes、review checklist 和 release step 之间切换。
  • 你依赖不了解你的 development workflow 的通用 agent。

工作原理

一个有明确主张的 pipeline,而不是一堆 skill 的大杂烩。

46 个 skills 中的大部分会串联成一个 sequence,而不是作为需要你自己排序的独立 prompt 各自独立存在。

  1. 01

    规划

    ywc-plan 将粗略的 goal 转换为 spec,并将其路由到合适规模的 flow。

  2. 02

    收敛

    对于超出小改动范围的任务,ywc-spec-ready 会循环执行 planning 和 validation,直到 spec 完成为止。

  3. 03

    分解

    ywc-task-generator 将 spec 分解为具有 dependency-safe 特性的 task,并生成 parallel-execution graph。

  4. 04

    执行

    executor 实现每个 task — 通过 --review 内置 review、PR 和 merge。

  5. 05

    验证

    ywc-gen-testcase 为每个 PR 生成 QA test sheet,可供手动 sign-off。

或者直接跳到 /ywc-agentic

输入一个 goal,输出一个设有上限、review-gated 的 loop — 最多三次自动化的 Plan → Execute → Evaluate → Repeat iteration,并在任何内容合并前内置 ywc-impl-review

查看 autonomous loop 指南

Coverage

八个类别,一个 pipeline,两种 tool。

46 个 skills 按照它们的功能分类,而不仅仅按数量划分。

Claude Code
10skills

Planning & Spec

在编写任何代码之前,将粗略的 goal 转换为经过验证的 spec 或 task list。

Claude Code
8skills

Task & Execution

创建 branch、实现、验证并 merge — 可以是 sequential、parallel,或完全自主。

Codex
12skills

Review & Verification

Architecture、security、design 与 QA review,外加一个自我改进的 learnings loop。

Codex
7skills

Git & Release

Commit、PR、bot-review 回复与 release notes,端到端全部处理。

Claude Code
5skills

Toolkit & Setup

支持扩展 toolkit 本身、配置默认值,并让 project setup 在两种 tool 中保持一致。

Codex
4skills

Infrastructure & Cloud

无需离开 terminal,即可以代码形式构建、评审并优化 infrastructure。

Claude Code
13agents

Claude Code agents

面向 architecture、security、performance 和 language-specific review 的 specialist read-only agents。

Codex
8agents

Codex agents

相同的 specialist coverage,打包为 read-only 的 Codex agents。

Install

从 plugin path 安装。

Claude Code 使用 marketplace path,Codex 使用 Codex plugin marketplace path。这些 path 没有前提条件。

Claude Code

  1. 1

    将此 repository 添加为 Claude Code plugin marketplace source。

    Claude Code
    plugin marketplace add yongwoon/ywc-agent-toolkit
  2. 2

    从已配置的 marketplace 安装 `ywc-agent-toolkit`。

    Claude Code
    plugin install ywc-agent-toolkit@ywc-agent-toolkit

Codex

  1. 1

    将此 repository 添加为 Codex plugin marketplace source。

    Codex
    codex plugin marketplace add yongwoon/ywc-agent-toolkit
  2. 2

    从已配置的 marketplace 安装 `ywc-agent-toolkit`。

    Codex
    codex plugin add ywc-agent-toolkit@ywc-agent-toolkit

现在试试这个

安装完成后,将你的第一个想法转换为 plan。

next step
ywc-plan <描述你想构建的内容>
查看 quickstart 演练

Proof

公开构建

目前还没有 customer quote — 以下是你在安装前可以自行验证的内容。

8

GitHub stars

实时计数,每次 build 时获取。

MIT

许可证

开源,无 paid tier,无需 account。

Automated

发布

每次合并到 main 时,通过 Release Please 生成 version 和 changelog。

FAQ

FAQ

这是什么?
`ywc-agent-toolkit` 是面向 Claude Code 和 Codex 的 public toolkit,提供 skills 与 custom agents。它帮助你运行从 planning 到 release 的可重复 development workflow。
安装要求是什么?
Plugin-marketplace 和 Codex-plugin installation 没有前提条件。使用上面的 command,然后从对应的 plugin UI 或 marketplace 安装。
费用或 token 影响如何?
toolkit 本身是 open source,不增加 paid service。Token usage 取决于你在 Claude Code 或 Codex 中调用 skills 和 agents 的频率。
它同时支持 Claude Code 和 Codex 吗?
是的。两种 tool 都获得 46 skills。Claude Code 包含 13 custom agents,Codex 包含 8 custom agents。
我需要 clone repository 吗?
对于本页覆盖的 path,不需要。Claude Code marketplace installation 和 Codex plugin marketplace installation 设计为无需 manual clone 即可安装。
我可以继续使用现有 workflow 吗?
可以。toolkit 会添加 `ywc-plan`、`ywc-code-gen`、`ywc-impl-review` 等 reusable skills;不需要 backend、account 或 project migration。
toolkit 会在不询问我的情况下更改什么?
`ywc-merge-dependabot` 可以自动 merge dependency PR,`ywc-finish-branch` 在其 check 通过后可以 merge 并删除 branch。`ywc-agentic` 最多运行三次自动化 iteration,并在任何内容合并前内置 `ywc-impl-review`。这些都是你主动调用的 skill — 除非你调用它们,否则都不会运行。
除了 Claude Code 或 Codex,我还需要别的东西吗?
Plugin-marketplace installation 本身没有前提条件。之后使用某些 skill 则需要:像 `ywc-parallel-executor` 和 `ywc-finish-branch` 这样的 skill 需要 `python3` ≥ 3.9(hooks 需要 ≥ 3.11),基于 PR 和 release 的 skill 需要 `gh` CLI。
这会修改我的 shell 或 tool 行为吗?
只有在你安装了可选的 Claude Code hooks 时才会。它们会添加诸如阻止危险 shell command、阻止访问 `.env`/SSH-key 文件之类的 guardrail — 你可以完全跳过它们,只使用 skill。
这和一个通用的 skill collection 有什么不同?
46 个 skills 中的大部分被串联进一个有明确主张的 pipeline(plan → spec → tasks → execute → test),而不是作为你需要自己排序的独立 prompt 各自存在,并且确认的 defect 会反馈到 review-learnings loop 中,自动收紧未来的 review。
我可以贡献一个 skill 吗?
可以。`ywc-skill-author` 记录了相关约定,CONTRIBUTING.md 涵盖了 bug report、新 skill 和翻译。