Skip to main content

:::warning AUTO-GENERATED — do not edit This page is generated from the MCP server snapshot content/guide-angular-mcp.json. Edit the source MCP server (not this file), then run npm run generate. :::

Run the Angular verify gate before declaring done

When to use: You believe a task is finished and want to confirm it before reporting done.

Prerequisites

  • The feature code is written.

Steps

Step 1: Run the verify gate and fix every failure.

Full recipe definition

The complete machine-readable recipe as returned by the MCP server:

{
"id": "run-verify",
"title": "Run the Angular verify gate before declaring done",
"when": "You believe a task is finished and want to confirm it before reporting done.",
"prerequisites": [
"The feature code is written."
],
"steps": [
{
"action": "Run the verify gate and fix every failure.",
"note": "`ng lint && ng build && ng test`. Do not suppress errors with `any` or eslint-disable."
}
],
"filesToCreate": [],
"validation": [
"Lint, build, and tests are all green."
],
"doneCriteria": [
"The verify gate passes with zero errors.",
"No guardrail is violated."
],
"commonMistakes": [
"Declaring done without running the gate.",
"Silencing a real type error instead of fixing it."
],
"relatedRecipes": [
"add-data-table"
]
}