fix: Point the Go AI SDK routing entries at go-server-sdk-ai - #170
Open
jsonbailey wants to merge 1 commit into
Open
jsonbailey wants to merge 1 commit into
jsonbailey wants to merge 1 commit into
Conversation
The ldai module moved from github.com/launchdarkly/go-server-sdk/ldai to its own repository, github.com/launchdarkly/go-server-sdk-ai. The old module's final release was ldai/v0.9.4, which carries a deprecation notice, so the migrate skill was telling agents to install a frozen module. Ref: AIC-3306
Skill eval results
Only suites whose source actually changed since their last recorded score were re-run. Soft-failing while we stabilise the baseline. |
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.
Summary
The
ldaimodule moved out ofgo-server-sdkinto its own repository, launchdarkly/go-server-sdk-ai. The old module's final release wasldai/v0.9.4, which carries a// Deprecated:notice ingo.modand will never get another release.The
agentcontrol/migrateskill listed the old path in two places, so an agent following it would install a deprecated module and silently miss0.10.0and everything after.Changes
skills/agentcontrol/migrate/SKILL.md— the Stage 2 "Install the AI SDK" listskills/agentcontrol/migrate/references/phase-1-analysis-checklist.md— the Go row of the SDK routing tableBoth are the install-path reference only, so no surrounding guidance needed to change. Verified no other
go-server-sdk/ldaireferences remain in the repo.Two follow-ups outside this repo
The routing table in
phase-1-analysis-checklist.mdis annotated as "Quoted from theai-configs-relaunch-guides/AGENT-SETUP-PROMPT.mdSDK routing table." That upstream file is not in this repo, so its Go row likely still carries the old path and needs the same fix at the source.launchdarkly/launchdarkly-github-agenthas what appears to be a sibling copy of this skill (skills/aiconfig-migrate/SKILL.mdand itsreferences/phase-1-analysis-checklist.md) with the same two references. Not changed here.I did not change the Go entries to carry a version constraint the way the Python and Node entries do (
>=0.20.0,^0.20.0), sincego get <module>resolves to latest and the existing Go entries never specified one.Related issues
Note
Overview
Updates the agentcontrol/migrate skill so Go migrations point at the standalone
github.com/launchdarkly/go-server-sdk-aimodule instead of the deprecatedgo-server-sdk/ldaisubpath.The Stage 2 install list in
SKILL.mdand the Go row of the SDK routing table inphase-1-analysis-checklist.mdare the only edits—agents following the skill willgo getthe current AI SDK rather than a frozen deprecated module.Reviewed by Cursor Bugbot for commit 72032c4. Bugbot is set up for automated code reviews on this repo. Configure here.