@codedrifters/configulator 0.0.419 → 0.0.420
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +9 -6
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +9 -6
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -21667,12 +21667,15 @@ function buildBabysitPrsSkill(policy) {
|
|
|
21667
21667
|
"",
|
|
21668
21668
|
"- **`gh` must be on `PATH`.** Some non-interactive sessions start",
|
|
21669
21669
|
" with a minimal `PATH` that omits the package-manager prefix.",
|
|
21670
|
-
" Resolve it **once** per session with `command -v gh
|
|
21671
|
-
" fails,
|
|
21672
|
-
|
|
21673
|
-
" `/usr/local/bin` or `/home/linuxbrew/.linuxbrew/bin`
|
|
21674
|
-
"
|
|
21675
|
-
"
|
|
21670
|
+
" Resolve it **once** per session with `command -v gh`. If that",
|
|
21671
|
+
" fails, invoke `gh` by its absolute path for the rest of the",
|
|
21672
|
+
" session (`/opt/homebrew/bin/gh` on Homebrew macOS,",
|
|
21673
|
+
" `/usr/local/bin/gh` or `/home/linuxbrew/.linuxbrew/bin/gh`",
|
|
21674
|
+
" elsewhere). **Never prefix commands with `export PATH=\u2026`** \u2014 a",
|
|
21675
|
+
" leading `export` stops the command string from matching the",
|
|
21676
|
+
" repo's `Bash(gh \u2026)` permission rules, so every call is denied.",
|
|
21677
|
+
" Abort the cycle with a clear diagnostic if `gh` is still",
|
|
21678
|
+
" unresolvable \u2014 never fall back to raw `curl`.",
|
|
21676
21679
|
"- **Resolve the default branch from the repo, never hard-code it:**",
|
|
21677
21680
|
"",
|
|
21678
21681
|
" ```bash",
|