AugmentCode support#174
Conversation
# Conflicts: # .cspell.json
…worktree. and removed settings.local.json
There was a problem hiding this comment.
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
InstallMCPServertests 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.
…tignore to avoid more of these comiting mistakes
…me in $SupportedMCPClients. Removed temp file "temp_inspect.wl"
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>
There was a problem hiding this comment.
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.
… 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>
There was a problem hiding this comment.
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.
| idx = FirstPosition[ existing, KeyValuePattern @ { "name" -> configName }, Missing[ "NotFound" ] ]; | ||
| existing = If[ MatchQ[ idx, _Missing ], | ||
| Append[ existing, server ], | ||
| ReplacePart[ existing, First @ idx -> server ] |
No description provided.