Document /deep-research mapping and /share alias ambiguity in compat layer#59
Merged
Merged
Conversation
Co-authored-by: abhi-singhs <16668163+abhi-singhs@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add new /deep-research workflow command and /feedback alias
Document /deep-research mapping and /share alias ambiguity in compat layer
Jun 5, 2026
abhi-singhs
approved these changes
Jun 5, 2026
There was a problem hiding this comment.
Pull request overview
Updates the compatibility-layer documentation to reflect new Claude Code workflow/alias behavior, especially the best-effort mapping of /deep-research and the naming collision between Claude Code’s /share (alias of /feedback) and Copilot CLI’s /share (session export).
Changes:
- Documented
/deep-research <question>→/researchas a best-effort translation (different research pipelines). - Documented the
/sharealias ambiguity (/feedbackalias in Claude Code vs session export in Copilot CLI) and clarified/clearoptional-arg semantic differences. - Extended
cpchelp output and refreshed mapping tables/limitations to surface these differences in the primary user-facing docs.
Show a summary per file
| File | Description |
|---|---|
skills/claude-compat/SKILL.md |
Adds /deep-research mapping row and notes covering /share alias collision and /clear optional-arg semantic mismatch. |
README.md |
Updates quick-reference and limitations to include /deep-research, /share ambiguity, and /clear semantics. |
cpc |
Extends CLI help “Slash command note” to mention /deep-research best-effort mapping and /share naming collision warning. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 3/3 changed files
- Comments generated: 1
Comment on lines
+596
to
+597
| Claude Code /feedback alias /share differs from Copilot CLI /share (which | ||
| exports the session: /share [file|html|gist] ...) — same name, different action |
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.
Claude Code added a new
/deep-research <question>workflow command and a/sharealias for/feedback, plus an optional[name]arg on/clear. These need to be reflected in the compatibility layer, with attention to the/sharenaming collision against Copilot CLI's session-export command.Changes
cpc— Extended the help text's "Slash command note" with/deep-research → /research(best-effort; differing research pipelines) and a warning that Claude Code's/feedbackalias/shareis not Copilot CLI's/share(session export).skills/claude-compat/SKILL.md— Added a/deep-research <question>→/research [TOPIC]row to the Renamed Commands table, plusNote:entries for the/sharealias collision, the/clear [name]vs/clear [PROMPT]semantic difference, and the best-effort/deep-researchmapping.README.md— Added a/deep-researchquick-reference row, annotated/clearwith its divergent optional-arg semantics, and expanded Limitations to cover the/sharealias ambiguity and/deep-research.Mapping rationale
/deep-researchand/researchdiffer in their source pipelines (Claude Code fans out web searches; Copilot uses GitHub + web), so it's documented as best-effort rather than an exact equivalent./shareis intentionally not remapped — the name collides but the semantics diverge (feedback submission vs. session export), so the ambiguity is documented instead.Since
cpctranslates CLI arguments (slash commands are in-session only), these are surfaced through help text and the mapping tables, consistent with the existing/btw → /askhandling.