Add Claude Code agent page#287
Open
peturelvar wants to merge 1 commit into
Open
Conversation
Claude Code (Anthropic's agentic CLI tool) was missing from the agents directory. This adds a new page covering its unique capabilities for AL development: - Terminal-native agentic execution with file system access - MCP extensibility for BC-specific tooling - CLAUDE.md project context files - Build-verify-fix loops - VS Code extension integration Also updates the index page with Claude Code in the agent listing, comparison matrix (with new Agentic Execution, MCP, Shell/Build rows), and recommendation sections. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Author
@microsoft-github-policy-service agree |
TheDoubleH
approved these changes
Jun 17, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds first-class documentation for Anthropic’s Claude Code (agentic CLI) within the AI Coding Agents section, and updates the Agents index to include it in listings and the comparison matrix.
Changes:
- Added a new agent page:
claude-code-agent.mddescribing Claude Code’s workflow, capabilities (including MCP), setup, examples, and resources. - Updated the Agents landing page to list Claude Code, add it to the comparison matrix, and adjust “Choosing/Using Multiple Agents” guidance.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 7 comments.
| File | Description |
|---|---|
| content/docs/agentic-coding/CommunityResources/Agents/claude-code-agent.md | New Claude Code agent documentation page, including setup, MCP, examples, and references. |
| content/docs/agentic-coding/CommunityResources/Agents/_index.md | Adds Claude Code to the agent list and comparison matrix, and updates selection/workflow guidance. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "al-dependencies": { | ||
| "command": "node", | ||
| "args": ["path/to/al-dependencies-mcp/index.js"], | ||
| "env": { "AL_PACKAGES": ".//.alpackages" } |
| } | ||
| ``` | ||
|
|
||
| > **Note**: The MCP server names above are illustrative examples. See [MCP Tools](/docs/agentic-coding/communityresources/tools/) for available community MCP servers for AL development. |
| { | ||
| "hooks": { | ||
| "postEdit": [{ | ||
| "command": "powershell -File ./scripts/run-codecop.ps1 $FILE", |
| * Files Claude Code doesn't read are never sent | ||
| * CLAUDE.md lets you control what context is shared | ||
| * MCP servers run locally — their tool output is sent to the API for reasoning | ||
| * Git credentials are never transmitted |
Comment on lines
+749
to
+752
| * [Setup Guide](/docs/agentic-coding/gettingstarted/setup/) | ||
| * [Effective Prompting](/docs/agentic-coding/gettingstarted/effective-prompting/) | ||
| * [Best Practices](/docs/agentic-coding/gettingstarted/best-practices/) | ||
| * [MCP Tools](/docs/agentic-coding/communityresources/tools/) |
Comment on lines
+723
to
+726
| * [GitHub Copilot](/docs/agentic-coding/communityresources/agents/github-copilot-agent/) - For inline completions while typing | ||
| * [AL Language Extension](https://marketplace.visualstudio.com/items?itemName=ms-dynamics-smb.al) - For AL language support in VS Code | ||
| * AL Code Analyzers - CodeCop, AppSourceCop, etc. for quality checks | ||
| * MCP Servers - For BC-specific intelligence (see [Tools](/docs/agentic-coding/communityresources/tools/)) |
Comment on lines
+765
to
+766
| * Configure [MCP servers](/docs/agentic-coding/communityresources/tools/) for BC intelligence | ||
| * Compare with other [AI Agents](/docs/agentic-coding/communityresources/agents/) |
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.
Summary
The AI Coding Agents section currently covers GitHub Copilot, Copilot Chat, Claude (web/API), and Cursor — but is missing Claude Code, Anthropic's agentic CLI tool that works fundamentally differently from the Claude web interface.
This PR adds:
New page:
claude-code-agent.md— Covers Claude Code's unique capabilities for AL development:al.build, reads errors, fixes, retries)Updated
_index.md:The page follows the same structure and detail level as the existing agent pages.
Why this matters
Claude Code represents a different category of AI coding tool — it's not a chat interface or an inline completer, but an agentic tool that reads/writes files, runs commands, and iterates autonomously. AL developers using it today have no reference page on alguidelines.dev.