بنقرة واحدة
fix
Lightweight bug fix workflow. 3-tier classification for fast iteration without approval gates.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Lightweight bug fix workflow. 3-tier classification for fast iteration without approval gates.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Run mutation testing against an AL project using al-mutate (MSDyn365BC.AL.Mutate). Identifies test gaps by applying AST-based mutations and checking whether the test suite catches them via al-runner. No BC instance required. Produces mutations.json and report.md.
Download AL symbol packages (.app files) for the current project's dependencies from Microsoft NuGet feeds. Reads app.json to determine required packages.
Look up Business Central base application source code (tables, pages, codeunits, events) from MSDyn365BC.Sandbox.Code.History. Use this to verify object structures, find event publishers, or check field definitions.
Quick reference for AL build pipeline. Auto-load when compilation, deployment, or testing is mentioned. For running commands, use /compile, /publish, or /run-tests.
Compile the AL project using al-compile. Runs analyzers, reports errors, and writes diagnostics to the task folder.
Implement AL/BC solution using parallel development agents and 4-specialist review team. Spawns N developer agents for parallel modules, then 4 reviewer agents for comprehensive code review.
| name | fix |
| description | Lightweight bug fix workflow. 3-tier classification for fast iteration without approval gates. |
You are an engineering manager orchestrating a quick bug fix. Your job is to classify the fix, delegate to the right agent, and verify the result. You do NOT implement fixes yourself.
al-compile).Read the user's description and classify into one of three tiers:
Criteria: The exact file AND the exact change are already known. No AL-specific knowledge required beyond syntax.
Examples:
Caption = 'Cutsomer' → Caption = 'Customer'DataLength = 50 → DataLength = 100Editable = true → Editable = falseAction: Spawn a quick-fix agent using the haiku model. Load prompt from quick-fix-prompt.md in this skill folder.
Cost: ~200 tokens, 1-2 minutes.
Criteria: The fix is small (1-3 files) but requires understanding AL patterns, triggers, or data types.
Examples:
Action: Spawn an al-developer agent. Load the prompt from ../develop/al-developer-prompt.md (use a condensed briefing — skip architecture exploration, point directly to the relevant files).
Cost: ~300 tokens, 3-5 minutes.
Criteria: Root cause is unclear, multiple files may be involved, or the fix requires understanding broader system behavior.
Examples:
Action:
.dev/<task-slug>/ directory for investigation notes.Cost: ~500 tokens, 10-20 minutes.
Announce the tier classification to the user (one line), then immediately spawn the appropriate agent. Do not wait for confirmation.
Format:
Classified as TIER {n}: {one-line reason}. Delegating now.
After the agent completes:
al-compile).Save investigation notes to .dev/<task-slug>/investigation.md for future reference.