Skip to content

AugmentCode support#174

Merged
rhennigan merged 20 commits into
mainfrom
emmaAugmentCodeImplementationTest
May 5, 2026
Merged

AugmentCode support#174
rhennigan merged 20 commits into
mainfrom
emmaAugmentCodeImplementationTest

Conversation

@rhennigan
Copy link
Copy Markdown
Member

No description provided.

Copilot AI review requested due to automatic review settings May 4, 2026 15:36
@rhennigan rhennigan requested review from Copilot and removed request for Copilot May 4, 2026 16:56
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds new MCP client integration coverage to AgentTools, mainly by extending InstallMCPServer/UninstallMCPServer support for Augment Code and Amazon Q Developer and documenting those clients across the repo. This fits the existing supported-client registry and client-specific config handling in the MCP install pipeline.

Changes:

  • Adds supported-client metadata plus install/uninstall/path-detection logic for Augment Code, Augment Code VS Code, and Amazon Q Developer.
  • Expands InstallMCPServer tests to cover new client metadata, config formats, path detection, and Windows path handling.
  • Updates user docs, research notes, and skill reference docs for the new client support.

Reviewed changes

Copilot reviewed 20 out of 21 changed files in this pull request and generated 12 comments.

Show a summary per file
File Description
TODO/more-mcp-clients.md Marks Augment Code research/implementation tasks complete.
Tests/InstallMCPServer.wlt Adds broad test coverage for Augment Code and Amazon Q support.
temp_inspect.wl Adds a local CodeInspector helper script.
README.md Adds new supported clients to the main client table.
Kernel/SupportedClients.wl Registers Augment Code / Augment Code IDE / Amazon Q metadata and converters.
Kernel/InstallMCPServer.wl Adds Augment Code IDE array-root config handling and new client path detection.
docs/quickstart-coding.md Adds quickstart instructions for Augment Code CLI and VS Code extension.
docs/mcp-clients.md Documents Amazon Q and Augment Code config locations and formats.
client-research/augment-code.md Adds research notes for Augment Code CLI and VS Code integration.
client-research/amazon-q.md Adds research notes for Amazon Q Developer integration.
AgentSkills/Skills/wolfram-paclets/references/SetUpWolframMCPServer.md Updates skill-specific setup reference with Augment entries.
AgentSkills/Skills/wolfram-notebooks/references/SetUpWolframMCPServer.md Updates skill-specific setup reference with Augment entries.
AgentSkills/Skills/wolfram-language/references/SetUpWolframMCPServer.md Updates skill-specific setup reference with Augment entries.
AgentSkills/Skills/wolfram-alpha/references/SetUpWolframMCPServer.md Updates skill-specific setup reference with Augment entries.
AgentSkills/References/SetUpWolframMCPServer.md Updates shared setup reference with Amazon Q and Augment entries.
.gitignore Adds .claude local/worktree ignore patterns.
.cspell.json Modifies project spell-check word list.
.cspell_REMOTE_1274.json Adds merge-artifact cspell scratch file.
.cspell_LOCAL_1274.json Adds merge-artifact cspell scratch file.
.cspell_BASE_1274.json Adds merge-artifact cspell scratch file.
.cspell_BACKUP_1274.json Adds merge-artifact cspell backup file.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread Kernel/SupportedClients.wl Outdated
Comment thread .cspell.json Outdated
Comment thread temp_inspect.wl Outdated
Comment thread .cspell_BASE_1274.json Outdated
Comment thread .cspell_LOCAL_1274.json Outdated
Comment thread client-research/augment-code.md
Comment thread AgentSkills/Skills/wolfram-notebooks/references/SetUpWolframMCPServer.md Outdated
Emma added 3 commits May 5, 2026 00:03
Copilot AI review requested due to automatic review settings May 5, 2026 16:48
rhennigan and others added 5 commits May 5, 2026 13:02
Note in AGENTS.md that the references/ and scripts/ subdirectories of each
skill are produced by Scripts/BuildAgentSkills.wls and must not be edited
manually — modify the source files and rebuild instead.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Add amzq, Auggie, IDEURL, nenv, noexist, toolsets, and Unparseable to the
project word list so the spell checker stops flagging them in the
AugmentCode/Amazon Q implementation work.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Replace multiple fragmented BeginBlock/EndBlock pairs with a single
block spanning the file, simplifying the directive structure.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
…allMCPServer.wlt.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 15 out of 17 changed files in this pull request and generated 7 comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread Kernel/SupportedClients.wl
Comment thread client-research/augment-code.md
Comment thread Kernel/InstallMCPServer.wl
rhennigan and others added 3 commits May 5, 2026 13:45
… toWindowsShortPath, and resolve the powershell.exe path explicitly when falling back.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
…tart.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copilot AI review requested due to automatic review settings May 5, 2026 18:47
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 20 out of 22 changed files in this pull request and generated 4 comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +223 to +226
idx = FirstPosition[ existing, KeyValuePattern @ { "name" -> configName }, Missing[ "NotFound" ] ];
existing = If[ MatchQ[ idx, _Missing ],
Append[ existing, server ],
ReplacePart[ existing, First @ idx -> server ]
Comment thread Kernel/SupportedClients.wl
Comment thread client-research/augment-code.md
Comment thread Kernel/SupportedClients.wl
@rhennigan rhennigan merged commit 4db01f5 into main May 5, 2026
5 of 6 checks passed
@rhennigan rhennigan deleted the emmaAugmentCodeImplementationTest branch May 5, 2026 19:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants