docs: README.mdとCLAUDE.mdを大幅更新 - ワークフロー起動方法と使用例を詳細化#8
Conversation
- プロジェクト概要と特徴を詳細化 - Spec Kit + TDD統合開発フローの説明を追加 - 利用可能なスラッシュコマンドの一覧を追加 - 専門サブエージェントの説明を追加 - GitHub Actionsワークフローの一覧を追加 - 詳細ドキュメントへのリンクを整理 - 使用方法とテスト方法を明確化 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
README.md更新: - ワークフローの起動方法を6種類のトリガー別に詳細化 - スラッシュコマンドの具体的な使用例を追加 - サブエージェントの呼び出し方法を分類別に整理 - 実行確認方法とトラブルシューティングを追加 CLAUDE.md更新: - プロジェクト概要と特徴を現在の構成に合わせて刷新 - 6つのGitHub Actionsワークフローの詳細説明を追加 - 専門サブエージェントの専門分野を詳細化 - 実行方法と使用例を具体的なコマンド例で説明 - テスト・検証・運用方法を体系化 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Summary of ChangesHello @UtakataKyosui, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! このプルリクエストは、Claude Code Actionsを利用した自動開発テンプレートリポジトリのドキュメントを大幅に改善することを目的としています。特に、README.mdとCLAUDE.mdを更新し、ワークフローの起動方法、使用例、プロジェクト構成、開発ルール、トラブルシューティングに関する詳細な情報を提供することで、ユーザーがスマートフォンからでも効率的に開発を進められるよう、理解と利用の障壁を低減しています。 Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
| - `/development:debug-help` - デバッグ支援とエラー分析 | ||
| - `/development:refactor` - コードリファクタリングと改善 | ||
| - `/development:test-gen` - テストコード生成 | ||
| - `/testing:test-gen` - テストコード生成 |
There was a problem hiding this comment.
| ### 基本的なワークフロー起動 | ||
|
|
||
| #### 1. 通常の開発作業 (`@claude`) | ||
| **起動条件**: Issue または PR コメントで `@claude` を含める | ||
|
|
||
| ```markdown | ||
| @claude ログイン機能を実装してください | ||
| @claude /development:code-review src/auth.rs | ||
| @claude rust-expert: 所有権エラーを修正してください | ||
| ``` | ||
|
|
||
| **トリガーイベント**: | ||
| - Issue コメント作成時 | ||
| - PR レビューコメント作成時 | ||
| - Issue 作成・割り当て時 | ||
| - PR レビュー投稿時 | ||
|
|
||
| #### 2. プロジェクト初期セットアップ (`@claude setup`) | ||
| **起動条件**: Issue または PR コメントで `@claude setup` を含める | ||
|
|
||
| ```markdown | ||
| @claude setup 新しいRustプロジェクトをセットアップしてください | ||
| @claude setup Web開発環境を構築してください | ||
| ``` | ||
|
|
||
| **自動実行内容**: | ||
| - プロジェクト構造の分析・作成 | ||
| - 設定ファイルの確認・生成 | ||
| - 依存関係の解決 | ||
| - 開発環境の初期化 | ||
| - CI/CD設定の確認 | ||
|
|
||
| #### 3. 仕様策定・計画作業 (`@claude plan`) | ||
| **起動条件**: Issue または PR コメントで `@claude plan` を含める | ||
|
|
||
| ```markdown | ||
| @claude plan ユーザー管理システムの仕様を作成してください | ||
| @claude plan APIの設計を検討してください | ||
| ``` | ||
|
|
||
| **利用可能なコマンド**: | ||
| - `/spec-kit:specify` - 自然言語から正式仕様を作成 | ||
| - `/spec-kit:plan` - 仕様から実装計画を生成 | ||
| - `/spec-kit:clarify` - 仕様の対話的明確化 | ||
| - `/spec-kit:tasks` - TDD準拠のタスクリスト生成 | ||
| - `/spec-kit:implement` - TDDサイクルでの実装 | ||
|
|
There was a problem hiding this comment.
## 🚦 使用方法 の ### 基本的なワークフロー起動 セクションで、6つのワークフローのうち3つ(@claude, @claude setup, @claude plan)の起動方法が詳しく説明されています。とても分かりやすいです。
一方で、## ⚙️ GitHub Actions セクション(203行目以降)では6つのワークフローがリストアップされています。
ドキュメントの完全性を高めるために、基本的なワークフロー起動 のセクションにも、残りの3つのワークフロー(@claude review, @claude docs, @claude manage)の起動方法と使用例を追加してはいかがでしょうか。CLAUDE.md には記載があるので、そちらを参考に追記すると良さそうです。
📋 Pull Request Review: docs: README.mdとCLAUDE.mdを大幅更新✅ Overall Assessment: APPROVEDThis PR significantly improves the documentation quality and usability of the project. The changes are well-structured and provide comprehensive guidance. 🎯 StrengthsDocumentation Quality
Content Completeness
Practical Value
|
No description provided.