›_ Windows PowerShell × blog.ps1 × +
fbakkensen@BCDEV: ~\ALProjects\BCBlog
×
BC Development .ps1
PS C:\Blog>

Write-Output "Deep Dive into Business Central Development"

AuthorFlemming Bakkensen · Posts34· Updated2026-07-31
PS C:\ALProjects\BCBlog> Get-ChildItem -Path .\posts\ -Filter *.md | Sort-Object LastWriteTime -Descending
01

Feedback Loops in Agentic Coding Tools: Why Self-Correction Beats One-Shot Perfection

When people first encounter AI coding tools like GitHub Copilot, Claude Code, or Cursor, they often focus on the wrong metric: “Can it write perfect code in one shot?” From my experience working with these tools in Business Central development, I’ve found that the real game-changer isn’t one-shot perfection -...

PS> Read-Post -FullContent
02

Claude Sonnet 4 in GitHub Copilot vs. Claude Code — What Developers Need to Know

If you pick the same model in two different tools, you won’t get the same experience. Claude Sonnet 4 is the one example: in Claude Code (Anthropic’s native experience) you get large context and explicit control over extended thinking; in GitHub Copilot you get a managed, IDE‑first product with smaller context,...

PS> Read-Post -FullContent
03

Setup Github Copilot Agent For AL

Introduction Imagine a world where you can hand off a GitHub issue to an AI agent, and it autonomously develops the code, fixes the bug, and creates a pull request for you to review. This is the power of the GitHub Copilot agent, which can be activated directly from a...

PS> Read-Post -FullContent
04

Cross-Platform AL Build Automation: Unified Makefile and Modular Scripts for Business Central Extensions

Problem When working with agentic code tools like GitHub Copilot, one crucial way to guide the tool is ensuring that the application actually compiles without errors from code analyzers. This validates the syntax and provides immediate feedback on code quality. This blog post focuses on implementing a make file and...

PS> Read-Post -FullContent