Point the skill fetch at the renamed adapty-integration directory - #17
Merged
eandreeva-twr merged 2 commits intoAug 20, 2026
Merged
Conversation
The skills repo renamed its SDK skill directory from `skills/adapty-sdk-integration` to `skills/adapty-integration`, so RAW_BASE has to follow or every integrate/migrate run 404s. The repo name itself is unchanged, so the rest of the URL stays as-is. The other five edits are comments naming the skill. MERGE ORDER: RAW_BASE points at `main` of the skills repo, so this must land after adaptyteam/adapty-skills#35 merges, not before.
The skills repo is being renamed. RAW_BASE matters most here: raw.githubusercontent does NOT follow GitHub repo renames, so this is a hard break rather than a redirect — integrate/migrate 404 on every run until this lands. SKILL_SOURCE and the manual-install hint go through the skills CLI and git, which do follow the redirect, but are updated for consistency.
This was referenced Aug 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
One functional line. The skills repo renamed its SDK skill directory, so
RAW_BASEinsrc/lib/agent/skill-source.tsfollows:The repo name is unchanged — only the skill directory inside it moved — so the rest of the URL stays as-is. The other five edits are comments naming the skill.
RAW_BASEpoints atmainof the skills repo. This PR must land after adaptyteam/adapty-skills#35 merges, orintegrate/migratewill 404 on every run. Nothing else gates it.Base branch
Targets
integrate-command-prototype, notmain— that is wheresrc/lib/agent/lives. Nothing here is onmainor in any published version, which is why this rename costs one line instead of a deprecation.Not verified
I did not typecheck: all seven changes are inside comments or one string literal, and the worktree has no
node_modules. Worth a CI run rather than my word.Worth considering separately
Fetching skill content from a hardcoded
raw.githubusercontent.comURL at runtime means a future rename or move of that repo breaks every already-published CLI version —rawdoes not follow repo renames, and published tarballs can't be patched. There is already anADAPTY_SKILL_DIRescape hatch for local dev; promoting the base to an env-overridable constant before this feature ships would remove that class of breakage. Out of scope here.⛔ BLOCKED until the repo is renamed
These commits assume the GitHub repo has been renamed
adaptyteam/adapty-sdk-integration-skill→adaptyteam/adapty-skills. That rename has not happened yet. Every updated URL here 404s until it does, so do not merge before the rename.Rename steps (repo Settings → General → Repository name), then in whatever order:
adaptyteam/adapty-sdk-integration-skillagain — reusing the name permanently kills the redirect.owner/repo, and the old slugs remain as stale duplicates that cannot be redirected.RAW_BASEis araw.githubusercontent.comURL and raw does not follow repo renames.What survives the rename with no action: existing
claude plugininstalls (git remotes follow the redirect), existing clones, and every published docs page slug —adapty-sdk-integration-skill*page ids are unrelated to the repo name and deliberately unchanged.