{"meta":{"title":"ユーザー フィードバックの分析と取り込み","intro":"Copilot Chat は、ユーザー フィードバックをプロジェクトに組み込むプロセスを強化できます。","product":"GitHub Copilot","breadcrumbs":[{"href":"/ja/copilot","title":"GitHub Copilot"},{"href":"/ja/copilot/tutorials","title":"チュートリアル"},{"href":"/ja/copilot/tutorials/copilot-cookbook","title":"GitHub Copilot クックブック"},{"href":"/ja/copilot/tutorials/copilot-cookbook/analyze-functionality","title":"機能を分析する"},{"href":"/ja/copilot/tutorials/copilot-cookbook/analyze-functionality/analyze-feedback","title":"フィードバックを分析する"}],"documentType":"article"},"body":"# ユーザー フィードバックの分析と取り込み\n\nCopilot Chat は、ユーザー フィードバックをプロジェクトに組み込むプロセスを強化できます。\n\nユーザーのフィードバックを収集して取り込むことは製品開発にとって不可欠ですが、難しいプロセスでもあります。 開発者や製品チームは、既存のワークフローを中断したり新しい issue を引き起こしたりすることなく、ユーザーのフィードバックを効果的に分析し、優先順位を付け、そのフィードバックに基づいて変更を実装するのに苦労することがよくあります。\n\n## ユーザー フィードバックの分析\n\nユーザーからのフィードバックは膨大な量になることがあり、対応すべきものを特定することが難しい場合があります。\n\n### サンプル シナリオ\n\nあなたは、人気のあるオープンソース リポジトリのメンテナであるとします。 コミュニティはあなたのプロジェクトに非常に関心を持っているため、しばしばフィードバックとして問題を報告します。 また、未解決の issue について対話することもよくあります。 あなたはこのフィードバックに返信したいと考えていますが、何から手をつけてよいのかわかりません。\n\n### プロンプトの例\n\nこの例では、リポジトリ内のユーザー フィードバックに関連する issue を追跡するためにラベルを使っていると想定しています。\n\nリポジトリの **\\[Issues]** タブに移動し、次のように入力します。\n\n```copilot copy\nFind the issues with the feedback label that have the most reactions, and categorize them based on sentiment.\n```\n\n> \\[!TIP] このプロンプトを試すには、ラベルを使用して機能要求を追跡する [`microsoft/vscode`](https://github.com/microsoft/vscode/issues) リポジトリに移動し、「`Find the issues with the feature-request label that have the most reactions, and categorize them based on sentiment.`」と入力します。\n\n### 応答の例\n\n> \\[!NOTE] 次の応答は例です。 Copilot Chat の応答は非決定的であるため、ここで示したものとは異なる応答が返される可能性があります。\n\nCopilot には、最も多くの反応に関する問題が一覧表示され、各問題のセンチメント分析が提供されます。 この一覧を使うと、作業に優先順位を付けるときに、より多くの情報に基づいた意思決定を行うことができます。\n\n例えば次が挙げられます。\n\n```text\n1. [Feedback] CLI error messages are difficult to understand\n  * Issue URL: #321\n  * Reactions: 543\n  * Sentiment: Negative\n\n1. [Feedback] Add API to enable third party integration\n  * Issue URL: #210\n  * Reactions: 482\n  * Sentiment: Positive\n\n1. [Feedback] Shortcut for --with-token CLI option\n  * Issue URL: #426\n  * Reactions: 187\n  * Sentiment: Neutral to slightly positive\n```\n\n## 機能仕様の生成\n\n機能仕様により、開発計画を立てることができます。また、新しい機能を実装する前のコミュニケーションと調整に役立ちます。\n\n### サンプル シナリオ\n\nこのシナリオで、あなたは対処すべきユーザー フィードバックの一部を選びました。 既存の CLI オプションへのショートカットをリクエストしたユーザーがいました。 この場合、これを実装する方法の計画を作成する必要があります。\n\n### プロンプトの例\n\nこの例では、 Copilot Chatを使用しているのと同じリポジトリ内の問題について質問していることを前提としています。\n\n```copilot copy\nWrite a feature specification for Issue #426.\n```\n\n### 応答の例\n\n> \\[!NOTE] 次の応答は例です。 Copilot Chat の応答は非決定的であるため、ここで示したものとは異なる応答が返される可能性があります。\n\nCopilot では、次のような機能仕様が生成されます。\n\n```text\n# Feature Specification for Issue #426: Shortcut for --with-token CLI option\n\n## Description:\nCurrently, the --with-token option is used to pass in a token to commands. Typing --with-token each time is cumbersome. This feature proposes a new flag -wt as a shortcut to quickly specify the --with-token option when running various commands.\n\n## Problem:\nTyping --with-token repeatedly is time-consuming and inconvenient for users who frequently use this option.\n\n## Solution:\nIntroduce a new flag -wt that serves as a shortcut for the --with-token option.\n\n## Feature Details:\n\n### 1. Flag Introduction:\n-wt will be introduced as a shorthand for --with-token.\nUsage: <command> -wt <token>\n\n### 2. Commands Affected:\nAll commands that currently support the --with-token option.\n\n### 3. Backward Compatibility:\n- The existing --with-token option will continue to work as before.\n- No existing functionality will be removed or altered.\n\n### 4. Documentation:\n- Update documentation to include the new -wt flag.\n- Provide examples and usage scenarios for the new flag.\n\n### 5. Testing:\n- Ensure thorough testing of the -wt flag across various commands.\n- Test cases should include:\n  - Valid and invalid tokens.\n  - Interaction with other options.\n  - Ensuring no regression in current --with-token functionality.\n\n## Benefits:\n- Improved user experience by reducing the amount of typing required.\n- Streamlined command execution for users who frequently use the --with-token option.\n\n## Potential Risks:\nMinimal risk as this feature is an addition and does not alter existing functionality.\n```\n\n## 詳細については、次を参照してください。\n\n* [GitHub Copilot Chat のプロンプト エンジニアリング](/ja/copilot/concepts/prompting/prompt-engineering)\n* [GitHub Copilot の使用に関するベスト プラクティス](/ja/copilot/get-started/best-practices)"}