{"meta":{"title":"템플릿 만들기","intro":"Copilot Chat 는 워크플로를 간소화하고 프로젝트 전체에서 일관성을 보장하는 템플릿을 만드는 데 도움이 될 수 있습니다.","product":"GitHub Copilot","breadcrumbs":[{"href":"/ko/copilot","title":"GitHub Copilot"},{"href":"/ko/copilot/tutorials","title":"자습서"},{"href":"/ko/copilot/tutorials/copilot-cookbook","title":"GitHub Copilot 활용 안내서"},{"href":"/ko/copilot/tutorials/copilot-cookbook/communicate-effectively","title":"효과적인 커뮤니케이션"},{"href":"/ko/copilot/tutorials/copilot-cookbook/communicate-effectively/creating-templates","title":"템플릿 만들기"}],"documentType":"article"},"body":"# 템플릿 만들기\n\nCopilot Chat 는 워크플로를 간소화하고 프로젝트 전체에서 일관성을 보장하는 템플릿을 만드는 데 도움이 될 수 있습니다.\n\nGitHub Copilot Chat 는 프로젝트 설명서, 코드 조각 또는 문제 추적과 같은 다양한 용도로 템플릿을 만드는 데 도움이 될 수 있습니다. 템플릿을 활용하면 워크플로를 간소화하고 전체 프로젝트의 일관성을 유지할 수 있습니다.\n\n## 예제 시나리오\n\nproject 설명, 설치 지침, 사용 예제 및 기여 지침에 대한 섹션이 포함된 project 추가 정보 파일에 대한 템플릿을 만들려고 합니다. 모범 사례 및 특정 요구 사항에 따라 추가 정보 템플릿을 생성하도록 요청할 Copilot Chat 수 있습니다. 그런 다음 이 템플릿을 모든 project 설명서의 시작점으로 사용할 수 있습니다.\n\n## 예제 프롬프트\n\n```text copy\nCreate a README template for a new open-source project that includes sections for project description, installation instructions, usage examples, and contribution guidelines. Make it clear and easy to follow.\n```\n\n## 응답 예제\n\n> \\[!NOTE] 다음 응답이 예제입니다. Copilot Chat 응답은 비결정적이므로 여기에 표시된 응답과 다른 응답을 얻을 수 있습니다.\n\nCopilot 는 구조화된 추가 정보 템플릿을 제공합니다. 템플릿 Copilot Chat 제공을 복사하고 프로젝트의 요구에 맞게 추가로 사용자 지정할 수 있습니다.\n\n````markdown\n# Project Name\n\n> **Short description:**  \n> A brief summary of what your project does, its main features, and its purpose.\n\n---\n\n## Table of Contents\n\n- [Description](#description)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n---\n\n## Description\n\nProvide a detailed explanation of what your project does, why it exists, and any important background information.  \nYou may want to include:\n- Key features\n- Supported platforms or languages\n- Screenshots or diagrams\n\n---\n\n## Installation\n\n1. **Clone the repository**\n   ```sh\n   git clone https://github.com/your-username/your-repo-name.git\n   cd your-repo-name\n   ```\n\n2. **Install dependencies**\n   ```sh\n   # Example for Node.js projects\n   npm install\n\n   # Example for Python projects\n   pip install -r requirements.txt\n   ```\n\n3. **Additional setup**\n   - List any other required steps (e.g., environment variables, configuration files)\n\n---\n\n## Usage\n\nProvide clear usage instructions and code examples.\n\n```sh\n# Example command\nyour-command --option value\n```\n\n```python\n# Example in Python\nimport your_module\n\nresult = your_module.do_something()\nprint(result)\n```\n\n- Explain any CLI options, configuration, or parameters.\n- Link to more detailed documentation if available.\n\n---\n\n## Contributing\n\nContributions are welcome! Please follow these guidelines:\n\n1. **Fork the repository**\n2. **Create a new branch**\n   ```sh\n   git checkout -b feature/your-feature-name\n   ```\n3. **Make your changes**\n4. **Test your changes**\n5. **Commit and push**\n   ```sh\n   git commit -m \"Add feature: your-feature-name\"\n   git push origin feature/your-feature-name\n   ```\n6. **Open a pull request**\n\n**Code of Conduct:**  \nPlease be respectful and follow our [Code of Conduct](CODE_OF_CONDUCT.md).\n\n**Issues & Suggestions:**  \nOpen an issue for bugs, questions, or feature requests.\n\n---\n\n## License\n\nThis project is licensed under the [INSERT LICENSE](link to relevant license information).\n\n---\n\n## Contact\n\n- **Maintainer:** [Your Name](mailto:your@email.com)\n- **Project Link:** https://github.com/your-username/your-repo-name\n\n---\n````\n\n## 추가 읽기\n\n* [GitHub Copilot 채팅에 대한 프롬프트 엔지니어링](/ko/copilot/concepts/prompting/prompt-engineering)\n* [GitHub 부필로트 사용에 대한 모범 사례](/ko/copilot/get-started/best-practices)"}