46 skills

Claude Code と Codex のための 46 skills と expert agents。

計画と仕様作成からコード生成、レビュー、リリースまで、開発 workflow 全体を terminal から離れずに自動化します。

使い方を見る

Why

反復作業を toolkit に任せると、workflow は軽くなります。

toolkit なし

  • タスクごとに planning prompt と acceptance criteria を書き直す必要があります。
  • 散らばったメモ、review checklist、release step を手作業で行き来します。
  • あなたの development workflow を知らない汎用 agent に頼ることになります。

toolkit あり

使い方

寄せ集めの skill ではなく、意見を持った pipeline。

46 skills の大部分は、自分で順序を組み立てる独立した prompt としてではなく、一つの sequence として連鎖します。

  1. 01

    計画

    ywc-plan が粗い goal を spec に変換し、適切な規模の flow に振り分けます。

  2. 02

    収束

    ywc-spec-ready は、small change を超える作業について、spec が完成するまで planning と validation を loop します。

  3. 03

    分解

    ywc-task-generator が spec を dependency-safe な tasks に分解し、parallel-execution graph を生成します。

  4. 04

    実行

    executor が各 task を実装します — --review により review、PR、merge まで組み込まれます。

  5. 05

    検証

    ywc-gen-testcase が PR ごとに QA test sheet を生成し、manual sign-off の準備を整えます。

あるいは、/ywc-agentic に直接進むこともできます。

goal を一つ入力するだけで、上限付きの review-gated loop が動きます — マージ前に ywc-impl-review を組み込んだ、最大 3 回の自動 Plan → Execute → Evaluate → Repeat iteration です。

autonomous loop guide を見る

Coverage

8 つの category、1 つの pipeline、2 つの tool。

46 skills を、数だけでなく、何をするかで整理しました。

Claude Code
10skills

Planning & Spec

code を書く前に、粗い goal を validated な spec または task list に変換します。

Claude Code
8skills

Task & Execution

Branch、implement、verify、merge を行います — sequential、parallel、または fully autonomous で。

Codex
12skills

Review & Verification

Architecture、security、design、QA review に加えて、self-improving な learnings loop も備えています。

Codex
7skills

Git & Release

Commit、PR、bot-review への対応、release notes までを end to end で扱います。

Claude Code
5skills

Toolkit & Setup

toolkit 自体の拡張、既定値の設定、project setup の一貫性維持を支えます。

Codex
4skills

Infrastructure & Cloud

terminal を離れずに、infrastructure を code として構築・review・最適化します。

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

次はこれを試してみましょう

インストールしたら、最初の idea を plan に変えましょう。

next step
ywc-plan <作りたいものを説明>
quickstart を確認する

Proof

オープンに開発しています

customer からの声はまだありません — インストール前に自分で確認できる情報はこちらです。

8

GitHub star 数

build のたびに取得する live count です。

MIT

ライセンス

Open source で、paid tier も account も不要です。

自動化

リリース

main への merge のたびに、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 が含まれます。
repository を clone する必要がありますか?
このページで扱う 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` は dependency PR を auto-merge でき、`ywc-finish-branch` は checks が通れば branch を merge して削除できます。`ywc-agentic` は、マージ前に `ywc-impl-review` を組み込んだ、最大 3 回の自動 iteration を実行します。これらはすべて、あなたが呼び出す skill です — 呼び出さない限り何も実行されません。
Claude Code や Codex 以外に何か必要ですか?
Plugin-marketplace installation 自体に前提条件はありません。ただし、その後 certain skills を使う場合は必要です: `ywc-parallel-executor` や `ywc-finish-branch` のような skill には `python3` ≥ 3.9(hooks には ≥ 3.11)、PR や release ベースの skill には `gh` CLI が必要です。
これは shell や tool の動作を変更しますか?
optional な Claude Code hooks をインストールした場合のみです。危険な shell command のブロックや `.env`/SSH-key file へのアクセスブロックといった guardrail を追加します — 完全にスキップして skills だけを使うこともできます。
generic な skill collection と何が違いますか?
46 skills の大部分は、自分で順序を組み立てる独立した prompt としてではなく、一つの opinionated な pipeline(plan → spec → tasks → execute → test)に組み込まれています。また、確認された defect は review-learnings loop に反映され、以降の review が自動的に強化されます。
skill を contribute できますか?
はい。`ywc-skill-author` が convention を文書化しており、CONTRIBUTING.md に bug report、new skill、translation について記載されています。