Skip to content

Commit 3dff300

Browse files
authored
chore: update repo references for rabbit-ci-repo rename
1 parent 586783d commit 3dff300

10 files changed

Lines changed: 26 additions & 22 deletions

File tree

.rabbit/context.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ kind: repoContext
44
version: udx.dev/dev.kit/v1
55
generator:
66
tool: dev.kit
7-
repo: https://github.com/udx/dev.kit
7+
repo: https://github.com/udx/rabbit-ci-repo
88
version: 0.20.1
99
generated_at: 2026-07-10T09:48:47Z
1010
sources:
1111
homepage: https://udx.dev/kit
12-
repository: https://github.com/udx/dev.kit
12+
repository: https://github.com/udx/rabbit-ci-repo
1313
package: https://www.npmjs.com/package/@udx/dev-kit
14-
installation: https://github.com/udx/dev.kit/blob/latest/docs/installation.md
14+
installation: https://github.com/udx/rabbit-ci-repo/blob/latest/docs/installation.md
1515

1616
repo:
1717
name: dev.kit

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ npm install -g @udx/dev-kit
2727
```
2828

2929
```bash
30-
curl -fsSL https://raw.githubusercontent.com/udx/dev.kit/latest/bin/scripts/install.sh | bash
30+
curl -fsSL https://raw.githubusercontent.com/udx/rabbit-ci-repo/latest/bin/scripts/install.sh | bash
3131
```
3232

3333
## Quick start

bin/scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -euo pipefail
33

44
DEV_KIT_BIN_DIR="${DEV_KIT_BIN_DIR:-$HOME/.local/bin}"
55
DEV_KIT_HOME="${DEV_KIT_HOME:-$HOME/.udx/dev.kit}"
6-
DEV_KIT_INSTALL_REPO="${DEV_KIT_INSTALL_REPO:-udx/dev.kit}"
6+
DEV_KIT_INSTALL_REPO="${DEV_KIT_INSTALL_REPO:-udx/rabbit-ci-repo}"
77
DEV_KIT_INSTALL_REF="${DEV_KIT_INSTALL_REF:-latest}"
88
DEV_KIT_INSTALL_ARCHIVE_URL="${DEV_KIT_INSTALL_ARCHIVE_URL:-https://codeload.github.com/${DEV_KIT_INSTALL_REPO}/tar.gz/refs/heads/${DEV_KIT_INSTALL_REF}}"
99

changes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
### 0.20.2
4+
5+
- Update public repository URLs and self-repo contract checks from `udx/dev.kit` to `udx/rabbit-ci-repo` while keeping the `dev.kit` CLI/package surfaces stable for existing users.
6+
37
### 0.20.1
48

59
- Keep declared root YAML contract discovery aligned with repo file filtering so gitignored local/private YAML is not promoted into generated context.

docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
`dev.kit` supports two install paths:
44

55
- `npm install -g @udx/dev-kit`
6-
- `curl -fsSL https://raw.githubusercontent.com/udx/dev.kit/latest/bin/scripts/install.sh | bash`
6+
- `curl -fsSL https://raw.githubusercontent.com/udx/rabbit-ci-repo/latest/bin/scripts/install.sh | bash`
77

88
Whichever path you use last becomes the active install. The installer cleans up the other path first so one install owns `dev.kit` at a time.
99

@@ -24,7 +24,7 @@ Refresh `dev.kit` with the same install path you use already:
2424
npm install -g @udx/dev-kit
2525

2626
# curl-managed install
27-
curl -fsSL https://raw.githubusercontent.com/udx/dev.kit/latest/bin/scripts/install.sh | bash
27+
curl -fsSL https://raw.githubusercontent.com/udx/rabbit-ci-repo/latest/bin/scripts/install.sh | bash
2828
```
2929

3030
The generated `.rabbit/context.yaml` contract assumes a current `dev.kit` install before you regenerate repo context.
@@ -44,7 +44,7 @@ This is the default path.
4444
Use curl when npm is not available or not desired:
4545

4646
```bash
47-
curl -fsSL https://raw.githubusercontent.com/udx/dev.kit/latest/bin/scripts/install.sh | bash
47+
curl -fsSL https://raw.githubusercontent.com/udx/rabbit-ci-repo/latest/bin/scripts/install.sh | bash
4848
```
4949

5050
The curl installer creates:

lib/modules/repo_factors.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ dev_kit_repo_prefers_internal_references() {
737737
repo_slug="$(dev_kit_repo_current_slug "$repo_dir" "$repo_name" 2>/dev/null || true)"
738738
real_repo_dir="$(cd "$repo_dir" 2>/dev/null && pwd || true)"
739739

740-
[ "$real_repo_dir" = "$REPO_DIR" ] || { [ "$repo_slug" = "udx/dev.kit" ] && [ "$repo_name" = "dev.kit" ]; }
740+
[ "$real_repo_dir" = "$REPO_DIR" ] || { [ "$repo_slug" = "udx/rabbit-ci-repo" ] && [ "$repo_name" = "dev.kit" ]; }
741741
}
742742

743743
dev_kit_repo_reference_doc_default() {

lib/modules/repo_scaffold.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -805,14 +805,14 @@ dev_kit_context_yaml_write() {
805805
printf 'version: %s\n' "$(dev_kit_version_uri)"
806806
printf 'generator:\n'
807807
printf ' tool: dev.kit\n'
808-
printf ' repo: https://github.com/udx/dev.kit\n'
808+
printf ' repo: https://github.com/udx/rabbit-ci-repo\n'
809809
printf ' version: %s\n' "$(dev_kit_tool_version)"
810810
printf ' generated_at: %s\n' "$(date -u +"%Y-%m-%dT%H:%M:%SZ")"
811811
printf ' sources:\n'
812812
printf ' homepage: https://udx.dev/kit\n'
813-
printf ' repository: https://github.com/udx/dev.kit\n'
813+
printf ' repository: https://github.com/udx/rabbit-ci-repo\n'
814814
printf ' package: https://www.npmjs.com/package/@udx/dev-kit\n'
815-
printf ' installation: https://github.com/udx/dev.kit/blob/latest/docs/installation.md\n\n'
815+
printf ' installation: https://github.com/udx/rabbit-ci-repo/blob/latest/docs/installation.md\n\n'
816816

817817
printf 'repo:\n'
818818
printf ' name: %s\n' "$_repo"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"license": "MIT",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/udx/dev.kit.git"
8+
"url": "https://github.com/udx/rabbit-ci-repo.git"
99
},
10-
"homepage": "https://github.com/udx/dev.kit",
11-
"bugs": "https://github.com/udx/dev.kit/issues",
10+
"homepage": "https://github.com/udx/rabbit-ci-repo",
11+
"bugs": "https://github.com/udx/rabbit-ci-repo/issues",
1212
"scripts": {
1313
"postinstall": "if [ \"$npm_config_global\" = \"true\" ]; then bash bin/scripts/npm-postinstall.sh || true; fi"
1414
},

src/configs/repo-validation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ config:
2525
repo: udx/github-rabbit-action
2626
purpose: action, docs, and workflow context mix
2727
dev_kit:
28-
repo: udx/dev.kit
28+
repo: udx/rabbit-ci-repo
2929
purpose: self-hosting sanity check

tests/suite.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ if should_run_explicit "repo-contract"; then
215215
' "$REPO_DIR/.rabbit/context.yaml"
216216
)"
217217

218-
assert_not_contains "$self_repo_json" "\"repo\": \"udx/dev.kit\"" "repo contract: omits self dependency contracts"
219-
assert_not_contains "$self_context_yaml" "source_repo: udx/dev.kit" "repo contract: omits self source repo provenance"
218+
assert_not_contains "$self_repo_json" "\"repo\": \"udx/rabbit-ci-repo\"" "repo contract: omits self dependency contracts"
219+
assert_not_contains "$self_context_yaml" "source_repo: udx/rabbit-ci-repo" "repo contract: omits self source repo provenance"
220220
assert_not_contains "$repo_validation_manifest" "source_repo: udx/worker" "repo contract: does not treat probe repo values as manifest source repo"
221221
assert_not_contains "$self_context_yaml" ".rabbit/dev.kit/" "repo contract: excludes generated rabbit evidence"
222222
assert_not_contains "$self_context_yaml" ".rabbit/context.yaml.tmp." "repo contract: excludes context temp files from evidence"
@@ -440,8 +440,8 @@ if should_run "core"; then
440440
flag { print }
441441
' "$REPO_DIR/.rabbit/context.yaml"
442442
)"
443-
assert_not_contains "$self_repo_json" "\"repo\": \"udx/dev.kit\"" "repo: omits self dependency contracts"
444-
assert_not_contains "$self_context_yaml" "source_repo: udx/dev.kit" "repo: omits self source repo provenance"
443+
assert_not_contains "$self_repo_json" "\"repo\": \"udx/rabbit-ci-repo\"" "repo: omits self dependency contracts"
444+
assert_not_contains "$self_context_yaml" "source_repo: udx/rabbit-ci-repo" "repo: omits self source repo provenance"
445445
assert_not_contains "$repo_validation_manifest" "source_repo: udx/worker" "repo: does not treat probe repo values as manifest source repo"
446446
assert_not_contains "$self_context_yaml" ".rabbit/dev.kit/" "repo: excludes generated rabbit evidence"
447447
assert_not_contains "$self_context_yaml" ".rabbit/context.yaml.tmp." "repo: excludes context temp files from evidence"
@@ -460,11 +460,11 @@ if should_run "core"; then
460460
assert_contains "$(cat "$context_yaml")" "kind: repoContext" "repo: context.yaml has kind header"
461461
assert_contains "$(cat "$context_yaml")" "generator:" "repo: context.yaml has generator metadata"
462462
assert_contains "$(cat "$context_yaml")" "tool: dev.kit" "repo: context.yaml records generator tool"
463-
assert_contains "$(cat "$context_yaml")" "repo: https://github.com/udx/dev.kit" "repo: context.yaml records generator repo"
463+
assert_contains "$(cat "$context_yaml")" "repo: https://github.com/udx/rabbit-ci-repo" "repo: context.yaml records generator repo"
464464
assert_contains "$(cat "$context_yaml")" "sources:" "repo: context.yaml records generator source refs"
465465
assert_contains "$(cat "$context_yaml")" "homepage: https://udx.dev/kit" "repo: context.yaml records dev.kit homepage"
466466
assert_contains "$(cat "$context_yaml")" "package: https://www.npmjs.com/package/@udx/dev-kit" "repo: context.yaml records package source"
467-
assert_contains "$(cat "$context_yaml")" "installation: https://github.com/udx/dev.kit/blob/latest/docs/installation.md" "repo: context.yaml records installation guide"
467+
assert_contains "$(cat "$context_yaml")" "installation: https://github.com/udx/rabbit-ci-repo/blob/latest/docs/installation.md" "repo: context.yaml records installation guide"
468468
assert_contains "$(cat "$context_yaml")" "generated_at:" "repo: context.yaml records generated timestamp"
469469
assert_not_contains "$(cat "$context_yaml")" "/Users/" "repo: context.yaml has no absolute paths"
470470
assert_not_contains "$(cat "$context_yaml")" "/private/" "repo: context.yaml has no private temp paths"

0 commit comments

Comments
 (0)