Merged
Conversation
- git-worktree skillを新規作成 - CLAUDE.mdにworktree運用ルールを追加 - ブランチ命名規則をConventional Commit形式に統一
There was a problem hiding this comment.
Pull request overview
このPRは、Claude Code用の包括的なツールセットを追加し、仕様策定、GitHub CLI操作、Cloudflare管理、並列開発をサポートします。
- speckit(仕様策定・タスク生成)のClaude Codeコマンドとスクリプトを追加
- GitHub CLI用のSkills(PR、Issue、Workflow管理)を追加
- Wrangler CLI用のSkillを追加
- Git worktree用のSkillを追加(並列開発支援)
- CLAUDE.mdにプロジェクトガイドラインとワークフロールールを追加
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| CLAUDE.md | 作業開始前のルールとブランチ命名規則を追加。プロジェクトガイドラインを文書化 |
| .claude/skills/git-worktree/SKILL.md | Git worktreeによる並列開発をサポートするスキルを追加。ブランチ命名規則とworktree管理コマンドを含む |
| .claude/skills/gh-pr/SKILL.md | GitHub PR管理スキルを追加。PR作成、マージ、レビュー操作をサポート |
| .claude/skills/gh-issue/SKILL.md | GitHub Issue管理スキルを追加。Issue作成、一覧表示、コメント操作をサポート |
| .claude/skills/gh-workflow/SKILL.md | GitHub Actions workflow管理スキルを追加。ワークフロー実行、監視、再実行をサポート |
| .claude/skills/wrangler/SKILL.md | Cloudflare Wrangler CLI管理スキルを追加。D1、R2、Workers開発・デプロイをサポート |
| .claude/commands/commit.md | Git commitコマンドを追加。変更内容分析と日本語コミットメッセージ生成 |
| .claude/commands/diff-summary.md | Git diff要約コマンドを追加。変更内容を日本語で分析・要約 |
| .claude/commands/speckit.specify.md | 仕様策定コマンドを追加。自然言語から機能仕様を生成 |
| .claude/commands/speckit.clarify.md | 仕様明確化コマンドを追加。曖昧な箇所を質問で明確化 |
| .claude/commands/speckit.plan.md | 実装計画コマンドを追加。技術設計とアーキテクチャ決定を文書化 |
| .claude/commands/speckit.tasks.md | タスク生成コマンドを追加。ユーザーストーリー別にタスクを生成 |
| .claude/commands/speckit.implement.md | 実装実行コマンドを追加。tasks.mdに基づいた段階的実装 |
| .claude/commands/speckit.analyze.md | 一貫性分析コマンドを追加。仕様・計画・タスク間の整合性を検証 |
| .claude/commands/speckit.constitution.md | プロジェクト憲章管理コマンドを追加。プロジェクト原則の更新と伝播 |
| .claude/commands/speckit.checklist.md | チェックリスト生成コマンドを追加。要件品質検証用チェックリストを生成 |
| .claude/commands/speckit.taskstoissues.md | タスクをGitHub Issueに変換するコマンドを追加 |
| | `fix` | バグ修正 | | ||
| | `refactor` | リファクタリング | | ||
| | `docs` | ドキュメント変更 | | ||
| | `chore` | ビルド・設定・依存関係の変更 | |
There was a problem hiding this comment.
ブランチ命名規則のtypeリストが不完全です。git-worktree/SKILL.mdには style, test, perf も含まれていますが、このファイルには含まれていません。両ファイルで一貫性を保つために、同じtypeのリストを使用してください。
Suggested change
| | `chore` | ビルド・設定・依存関係の変更 | | |
| | `chore` | ビルド・設定・依存関係の変更 | | |
| | `style` | フォーマットやスタイルのみの変更(機能変更なし) | | |
| | `test` | テストの追加・修正 | | |
| | `perf` | パフォーマンス改善 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan
/git-worktreeでworktreeが作成できることを確認/gh-pr,/gh-issue,/gh-workflowが動作することを確認/wranglerでCloudflare操作ができることを確認/speckit.specify,/speckit.planなど)が動作することを確認🤖 Generated with Claude Code