Skip to content

Commit da80d27

Browse files
committed
fix(repository-template): update repository links to point to stefaniuk repository
1 parent 6446629 commit da80d27

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/skills/repository-template/SKILL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Toolkit for creating a code repository from template, or/and updati
55

66
# Repository Template Skill 🧩
77

8-
This skill enables adopting, configuring, or removing capabilities from the [NHS England Tools Repository Template](https://github.com/nhs-england-tools/repository-template). Each capability is modular and can be applied independently.
8+
This skill enables adopting, configuring, or removing capabilities from the [NHS England Tools Repository Template](https://github.com/stefaniuk/repository-template). Each capability is modular and can be applied independently.
99

1010
## Source Reference 📚
1111

@@ -23,11 +23,11 @@ For example, to adopt `scripts/init.mk`, copy from:
2323

2424
to your target repository's `scripts/init.mk`.
2525

26-
⚠️ Distribution note: this SKILL file is mirrored verbatim across three homes - the NHS England shared GitHub Copilot prompt catalogue (similar to the [Awesome GitHub Copilot Customizations](https://github.com/github/awesome-copilot)), the upstream [Repository Template](https://github.com/nhs-england-tools/repository-template), and every repository created from that template. Keep the wording identical in all locations, instead of editing per environment, detect where you are and resolve paths accordingly.
26+
⚠️ Distribution note: this SKILL file is mirrored verbatim across three homes - the NHS England shared GitHub Copilot prompt catalogue (similar to the [Awesome GitHub Copilot Customizations](https://github.com/github/awesome-copilot)), the upstream [Repository Template](https://github.com/stefaniuk/repository-template), and every repository created from that template. Keep the wording identical in all locations, instead of editing per environment, detect where you are and resolve paths accordingly.
2727

2828
🤖 Assistant behaviour: when a user asks broad questions such as _"repository template – describe how to use this skill"_, respond by summarising the capability list below, you must list all the capabilities in a tabular form as the next step and invite user to issue a follow-up prompt that names a specific capability plus an action (add, remove or improve) they want performed in their repository. This keeps replies actionable and focused on the modular building blocks.
2929

30-
AI assistants or automation should detect the active context before copying files. For a reliable conclusion, check the repository's git URL first (for example, `git remote get-url origin`). If it points to `nhs-england-tools/repository-template`, you are working inside the upstream template and can read directly from the project root.
30+
AI assistants or automation should detect the active context before copying files. For a reliable conclusion, check the repository's git URL first (for example, `git remote get-url origin`). If it points to `stefaniuk/repository-template`, you are working inside the upstream template and can read directly from the project root.
3131

3232
Use the following checks after confirming the git URL:
3333

@@ -1415,7 +1415,7 @@ SONAR_TOKEN=$SONAR_TOKEN \
14151415
To adopt the complete template directly from GitHub:
14161416

14171417
```bash
1418-
git clone https://github.com/nhs-england-tools/repository-template.git my-project
1418+
git clone https://github.com/stefaniuk/repository-template.git my-project
14191419
cd my-project
14201420
rm -rf .git
14211421
git init

.github/skills/repository-template/scripts/git-clone-repository-template.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
cd "$(git rev-parse --show-toplevel)" || exit 1
44
cd .github/skills/repository-template
55
if ! [ -d "assets" ]; then
6-
git clone https://github.com/nhs-england-tools/repository-template.git assets
6+
git clone https://github.com/stefaniuk/repository-template.git assets
77
else
88
cd assets
9-
git pull origin main
9+
git pull origin custom
1010
fi
11+
git checkout custom

0 commit comments

Comments
 (0)