feat(meridian): GitHub Copilot support for subagent tools (0.10.6)#4
Merged
Conversation
….10.6 Copilot CLI loads the same agents/*.md the plugin ships, but received the `tools: Read, Grep, Glob, Bash` comma-string as one unsplit token, matched nothing, and dropped the subagent to the bare "session store" baseline with no file/terminal tools. Copilot's config only documents the YAML array form, and resolves Claude tool names case-insensitively via aliases (Read->read, Grep/Glob->search, Bash->execute, WebFetch/WebSearch->web). Convert the three agents from comma-string to YAML array, keeping the Claude names -- the single form both hosts accept (a per-host mirror is impossible since both read agents/*.md).
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
Adds GitHub Copilot CLI support for the plugin's subagents and bumps the version to
0.10.6.Why
When the plugin is installed under Copilot CLI, subagents loaded fine but were granted no file/terminal tools — only the bare "session store" baseline. Copilot received the
tools: Read, Grep, Glob, Bashcomma-string as a single unsplit token, matched no tool, and fell back to the minimum.Copilot's custom-agents config only documents the YAML array form, and resolves Claude tool names case-insensitively via aliases:
ReadreadGrep,GlobsearchBashexecuteWebFetch,WebSearchwebChange
Convert
research,reviewer, andtriangulatefrom comma-string to YAML array, keeping the Claude tool names — the single form both hosts accept. A per-host mirror isn't viable: both Claude and Copilot load the sameagents/*.mdthe plugin ships.agents/{research,reviewer,triangulate}.md—tools:→ array form.claude-plugin/plugin.json,.cursor-plugin/plugin.json—0.10.5→0.10.6README.md— Copilot CLI install/behavior noteVerification
pnpm run check(format + lint + typecheck + 21 hook/lib tests) passes.