From cca1dd8be302123cd7ddeee9d7b674375c4e096a Mon Sep 17 00:00:00 2001 From: cm-dyoshikawa Date: Mon, 8 Sep 2025 17:18:12 +0900 Subject: [PATCH 1/2] docs(README): add information about using tsumiki with tools other than Claude Code and provide usage instructions for rulesync --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index ed45758..c5f62cd 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ TsumikiはAI駆動開発のためのフレームワークです。要件定義から実装まで、AIを活用した効率的な開発プロセスを提供します。 +基本的にClaude Codeをサポートしますが、それ以外のツールでも使用できます。[Claude Code以外のツールでtsumikiを使用する](#claude-code以外のツールでtsumikiを使用する) を参照してください。 + ## インストール Tsumikiを使用するには、次のnpxコマンドでインストールしてください: @@ -107,6 +109,34 @@ Kairoは要件定義から実装までの開発プロセスを自動化・支援 /clear ``` +## Claude Code以外のツールでtsumikiを使用する + +[rulesync](https://github.com/dyoshikawa/rulesync)を組み合わせて使用することで、Claude Code以外のツールでもtsumikiのコマンドを使用できます。 + +``` +npx -y rulesync init +npx -y rulesync config --init +npx -y rulesync import \ + --targets claudecode \ + --features commands,subagents + +# Gemini CLIのカスタムスラッシュコマンドを出力する場合は以下のようになります。 +# (`--targets` には `claudecode`, `geminicli`, `roo` の指定が可能です) +npx -y rulesync generate \ + --targets geminicli \ + --features commands + +# カスタムスラッシュコマンドの仕様が存在しない(または仕様的な制限のある)AIコーディングツールでも、 `--experimental-simulate-commands` フラグによりいくつかのツールではコマンドファイルを出力できます。 +# Cursorのカスタムスラッシュコマンドを出力する場合は以下のようになります。 +# (`--targets` には `cursor`, `copilot`, `codexcli` の指定が可能です) +npx -y rulesync generate \ + --targets cursor \ + --features commands + --experimental-simulate-commands +``` + +詳しくは[rulesync](https://github.com/dyoshikawa/rulesync)のREADMEを参照してください。 + ## 詳細なマニュアル 使用方法の詳細、ディレクトリ構造、ワークフロー例、トラブルシューティングについては [MANUAL.md](./MANUAL.md) を参照してください。 From d0dc581871d389305cc4b4ee063aeb1a09cc05d8 Mon Sep 17 00:00:00 2001 From: cm-dyoshikawa Date: Mon, 8 Sep 2025 17:23:37 +0900 Subject: [PATCH 2/2] docs(README.md): add instructions for running rulesync commands after tsumiki install to enhance user guidance --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c5f62cd..85fbc05 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,8 @@ Kairoは要件定義から実装までの開発プロセスを自動化・支援 [rulesync](https://github.com/dyoshikawa/rulesync)を組み合わせて使用することで、Claude Code以外のツールでもtsumikiのコマンドを使用できます。 +`tsumiki install` 後、プロジェクトルートで以下のコマンドを実行します。 + ``` npx -y rulesync init npx -y rulesync config --init