The Repo field in session detail shows vercel-labs/skills for a session whose cwd is C:\code\.worktrees\skills\feature-repo-ready. The actual git origin in that folder is https://github.com/jongio/skills.git (confirmed via git remote get-url origin). jongio/skills is not a fork of vercel-labs/skills; they are completely unrelated repos.
The Copilot CLI stored the wrong repository value in its session store. Dispatch reads this as-is.
Possible fix: When rendering session detail, cross-check the stored repository against the live origin remote in the session's cwd. If they differ, prefer the live git remote value (or show both with a warning).
The Repo field in session detail shows
vercel-labs/skillsfor a session whose cwd isC:\code\.worktrees\skills\feature-repo-ready. The actual git origin in that folder ishttps://github.com/jongio/skills.git(confirmed viagit remote get-url origin).jongio/skillsis not a fork ofvercel-labs/skills; they are completely unrelated repos.The Copilot CLI stored the wrong repository value in its session store. Dispatch reads this as-is.
Possible fix: When rendering session detail, cross-check the stored
repositoryagainst the liveoriginremote in the session'scwd. If they differ, prefer the live git remote value (or show both with a warning).