Table of contents
  1. @abgov/nx-agent
    1. Installation
    2. Quick start
    3. init
      1. init options
    4. feature
      1. feature options
    5. bug
      1. bug options
    6. domain-term
      1. domain-term options
    7. bounded-context
      1. bounded-context options
    8. domain-model
      1. domain-model options
    9. open-question
      1. open-question options
    10. blocker
      1. blocker options
    11. iteration-retrospective
      1. iteration-retrospective options
    12. project-docs-lineage
      1. project-docs/artifact-schema.json
      2. orphans
      3. resolutionStatus
      4. Programmatic access
    13. project-docs-report
      1. --project scoping
      2. Synthesis
    14. agent-delivery
      1. agent-delivery options
      2. --githubActions setup

@abgov/nx-agent

Nx plugin for AI-agent development tooling — capabilities that steer a coding agent’s day-to-day work, as opposed to @abgov/nx-adsp/@abgov/nx-oc’s scaffolding and deployment concerns.

Installation

npm i -D @abgov/nx-agent

Quick start

npx nx g @abgov/nx-agent:init

init

A single, prescriptive entry point — run once per workspace. It’s expected to grow as more capabilities are added; running it again after an upgrade re-applies whatever’s new without disturbing anything it already set up.

Currently sets up:

  1. A Husky pre-commit hook (.husky/pre-commit) that runs nx affected lint/test/build against your staged changes before every commit:

    git diff --cached --name-only --diff-filter=ACMR | npx nx affected -t lint,test,build --stdin
    

    Adds husky as a devDependency and a "prepare": "husky" script if not already present.

  2. A secret-scanning hook block, appended to the same .husky/pre-commit, scanning staged files for committed credentials with secretlint:

    secretlint_files=$(git diff --cached --name-only --diff-filter=ACMR)
    if [ -n "$secretlint_files" ]; then
      echo "$secretlint_files" | xargs npx secretlint || exit 1
    fi
    

    Adds secretlint and @secretlint/secretlint-rule-preset-recommend as devDependencies, and a .secretlintrc.json if one doesn’t already exist (never overwritten once created — rules are the kind of thing a team tunes, unlike the AGENTS.md guidance below).

  3. Baseline .gitignore entries for common local-credential filenames — .env.local, .env.*.local, *.pem, *.key, id_rsa, id_ed25519, credentials.json — added only if missing, appended alongside whatever’s already there. Deliberately excludes bare .env: it’s dual-purpose (plain workspace config as well as secrets), so a blanket rule would be a false positive on legitimate use. This is preventive rather than detective — once a pattern is in .gitignore, git itself refuses to stage a matching file via git add ./git add -A, so no separate pre-commit check is needed on top of it. It does nothing for a file that was already tracked before init ran; gitignore never retroactively untracks anything.

  4. One consolidated AGENTS.md section, ## Working with a coding agent, organized into six ### groups — ordered roughly by stakes, highest first — each holding several related ** items rather than one flat, ever-growing list of top-level headings:
    • Security and safety — secrets, PII/sensitive data, destructive operations, untrusted content and instructions, trust boundaries.
    • Dependency hygiene — choosing a dependency (existence/currency/license, checking whether an existing dependency already covers the need, and not scrolling past what npm install itself reports about known vulnerabilities).
    • Verifying your work — the pre-commit-check habit above, plus respecting whatever style/format/complexity tooling a project already has configured.
    • Version control practices — atomic Conventional Commits, GitHub Flow, linear history.
    • Conventions and consistency — ubiquitous language (domain vocabulary, and the domain-term generator below), matching this project’s own established patterns (including project-docs/, if present), following framework/library idioms, and checking a connected MCP server before recalling a platform/design-system API from memory.
    • Code quality — scope discipline, comments (why, not what), reuse before reinventing (existing generators and workspace ESLint rules over bespoke code), error handling, TODO transparency (including deliberately-accepted findings), test quality.

    The whole section is centrally maintained: re-running init refreshes it in place rather than leaving it frozen at first-generation wording, assembled from guidance/<group>/<item>.md files (one file per item, grouped into folders matching the six groups above) so the content previews as plain markdown rather than escaped TypeScript string literals. init is also self-migrating — if it finds section markers from an older, pre-consolidation version, it removes them and writes the current structure in their place, so simply re-running init is enough to pick up changes; no separate migration step.

    Also ensures CLAUDE.md imports it (@AGENTS.md, appended if missing) — Claude Code reads CLAUDE.md natively, not AGENTS.md directly, so without this the guidance above never reaches a Claude Code session. Same one-line convention nx-adsp’s own generators already use.

  5. A Claude Code deny-list (.claude/settings.json), hard-blocking shell patterns with no legitimate agent-initiated use case — rm -rf rooted at //~/$HOME, sudo, mkfs, chmod -R 777 /, system shutdown/reboot, history-rewriting/reflog-destroying git commands, and whole-namespace OpenShift/Kubernetes deletion — absolute per Claude Code’s own permission model, holding even under --dangerously-skip-permissions. Merges into an existing file rather than overwriting it. No equivalent exists yet for other tools (checked GitHub Copilot CLI specifically — its absolute deny mechanism is CLI-flag-only, with no repo-committed file to seed).

init options

Option Default Description
targets lint,test,build Targets run by both the pre-commit hook and the AGENTS.md guidance’s self-check command
base main Base branch used only in the AGENTS.md guidance’s self-check command (not the pre-commit hook, which always diffs against staged changes)
npx nx g @abgov/nx-agent:init --targets=lint,test --base=develop

feature

How new work enters the DDDD workflow — a raw capability request, written the way it was actually asked for. This is the root artifact Discover decomposes into a service-description/requirement; it replaces committing an ad hoc file by hand with no defined shape:

npx nx g @abgov/nx-agent:feature "Submit Minor Collision Report"

Creates project-docs/features/submit-minor-collision-report.md:

---
title: Submit Minor Collision Report
project-docs-ancestors: []
resolves: []
---

<!-- What capability is wanted, and why. This is the raw request Discover decomposes into a
     service-description/requirement -- write it the way it was actually asked for. -->

feature options

Option Default Description
title — (required, positional) The canonical name of the feature
project workspace root Scope the feature to a specific project’s project-docs/features/ instead — prefer this whenever it already has a natural code home
projectDocsAncestors none Paths to existing project-docs/ artifacts this feature relates to — repeatable; typically an existing service-description if this extends an initiative that already exists
resolves none Paths to existing open-question/blocker artifacts this feature resolves — repeatable; also added to project-docs-ancestors, but recorded distinctly so project-docs-lineage can report the resolution as such

Re-adding a feature that already exists throws rather than silently overwriting or duplicating it. A --project-docs-ancestors path that doesn’t resolve to an existing artifact throws the same way, before anything is written.


bug

Something already built not behaving as designed, reported from outside the workflow. Unlike blocker, a bug doesn’t assume the design is wrong — most bugs are pure implementation defects — and it doesn’t always know which artifact (if any) is at fault yet, so projectDocsAncestors is genuinely optional:

npx nx g @abgov/nx-agent:bug "Submit Button Does Nothing On Slow Connections"

Creates project-docs/bugs/submit-button-does-nothing-on-slow-connections.md:

---
project-docs-ancestors: []
resolves: []
---

<!-- Observed vs. expected behavior. -->

bug options

Option Default Description
description — (required, positional) A short slug for what’s wrong
project workspace root Scope the bug to a specific project’s project-docs/bugs/ instead — prefer this whenever it already has a natural code home
projectDocsAncestors none Paths to existing project-docs/ artifacts this bug relates to, if already known — often genuinely empty until triaged

A bug tracks open/resolved status the same generic way as open-question/blocker (resolutionStatus.open/.resolved), but resolves differently — see develop/SKILL.md’s bug-fixing section in the agent-delivery output below. Investigating a bug and finding the spec itself was wrong escalates to a real blocker against the implicated artifact; filing that blocker does not itself resolve the bug — only an iteration-retrospective --resolves naming the bug’s own path does.


domain-term

Adds one domain term — the ubiquitous language init’s guidance asks the agent to use, but gives it nowhere to check or record. Unlike init, this is repeatable — run it once per term, whenever one needs adding, not once per workspace:

npx nx g @abgov/nx-agent:domain-term Case

Creates project-docs/domain-terms/case.md:

---
term: Case
aliases: []
not_confused_with: []
project-docs-ancestors: []
resolves: []
---

<!-- Definition: describe this term in the domain's own language. -->
  • term — the canonical name, matching the filename.
  • aliases — other words that mean the same thing.
  • not_confused_with — similar-sounding terms this one is deliberately distinct from, and why.
  • project-docs-ancestors — other project-docs/ artifacts this term derives from (see project-docs-lineage below) — set via --project-docs-ancestors, never by hand.
  • resolves — which of those ancestors (typically an open-question/blocker) this term specifically resolves, not just builds on — set via --resolves, a distinct flag from --project-docs-ancestors even though the same ref also lands there.

One file per term rather than a single flat glossary, so frontmatter (a per-file construct in every tool that uses the term) is meaningful, and so listing the folder — cheap, just filenames — is enough to check the existing vocabulary before coining a new name.

Also bootstraps project-docs/domain-terms/README.md on first use, explaining the convention to whoever (human or agent) opens the folder next. That file has no value on its own — it exists only to explain the convention for the term about to be added — so there’s no separate “set up the glossary” generator; domain-term composes it as an internal step.

domain-term options

Option Default Description
term — (required, positional) The canonical domain term, as domain experts use it
project workspace root Scope the term to a specific project’s project-docs/domain-terms/ instead — prefer this whenever the term already has a natural code home (usually a domain library), not just workspace root by default
projectDocsAncestors none Paths to existing project-docs/ artifacts this term derives from — repeatable; resolved into project-docs-ancestors (see below)
resolves none Paths to existing open-question/blocker artifacts this term resolves — repeatable; also added to project-docs-ancestors, but recorded distinctly so project-docs-lineage can report the resolution as such
npx nx g @abgov/nx-agent:domain-term Case --project=domain-lib
npx nx g @abgov/nx-agent:domain-term "Collision Report" --project-docs-ancestors=project-docs/bounded-contexts/collision-reporting.md

Re-adding a term that already exists throws rather than silently overwriting or duplicating it — edit the file directly instead. A --project-docs-ancestors path that doesn’t resolve to an existing artifact throws the same way, before anything is written.


bounded-context

A domain term’s meaning only holds within a bounded context — the boundary past which the same word can mean something else entirely. Adds one:

npx nx g @abgov/nx-agent:bounded-context "Collision Reporting"

Creates project-docs/bounded-contexts/collision-reporting.md:

---
name: Collision Reporting
aliases: []
not_confused_with: []
project-docs-ancestors: []
resolves: []
---

<!-- Definition: describe what's inside this boundary, and what's explicitly outside it. -->

bounded-context options

Option Default Description
name — (required, positional) The canonical name of the bounded context
project workspace root Scope the context to a specific project’s project-docs/bounded-contexts/ instead — prefer this whenever the context already has a natural code home (usually a domain library), not just workspace root by default
projectDocsAncestors none Paths to existing project-docs/ artifacts this context derives from — repeatable; resolved into project-docs-ancestors
resolves none Paths to existing open-question/blocker artifacts this context resolves — repeatable; also added to project-docs-ancestors, but recorded distinctly so project-docs-lineage can report the resolution as such
npx nx g @abgov/nx-agent:bounded-context "Collision Reporting" --project=domain-lib

Re-adding a context that already exists throws rather than silently overwriting or duplicating it.


domain-model

The actual design — aggregates, entities, invariants — built from a bounded context and the domain terms it’s composed from:

npx nx g @abgov/nx-agent:domain-model "Collision Report Lifecycle" \
  --project-docs-ancestors=project-docs/bounded-contexts/collision-reporting.md \
  --project-docs-ancestors=project-docs/domain-terms/collision-report.md

Creates project-docs/domain-models/collision-report-lifecycle.md:

---
name: Collision Report Lifecycle
project-docs-ancestors: [bounded-contexts:collision-reporting, domain-terms:collision-report]
resolves: []
---

<!-- Design: describe the aggregates, entities, value objects, and invariants here. -->

domain-model options

Option Default Description
name — (required, positional) The canonical name of the domain model
project workspace root Scope the model to a specific project’s project-docs/domain-models/ instead — prefer this whenever the model already has a natural code home (usually a domain library), not just workspace root by default
projectDocsAncestors none Paths to existing project-docs/ artifacts this model derives from — repeatable; normally the bounded context it belongs to plus the domain terms it’s composed from
resolves none Paths to existing open-question/blocker artifacts this model resolves — repeatable; also added to project-docs-ancestors, but recorded distinctly so project-docs-lineage can report the resolution as such

Re-adding a model that already exists throws rather than silently overwriting or duplicating it. A --project-docs-ancestors path that doesn’t resolve to an existing artifact throws the same way, before anything is written.


open-question

Something undecided that can’t be guessed at — needs input, a decision, or more information before work depending on it can proceed:

npx nx g @abgov/nx-agent:open-question "Reviewer Authorization" \
  --project-docs-ancestors=project-docs/requirements/reviewer-role.md

Creates project-docs/open-questions/reviewer-authorization.md:

---
project-docs-ancestors: [requirements:reviewer-role]
resolves: []
---

<!-- What's undecided, and why it can't be guessed at. -->

open-question options

Option Default Description
question — (required, positional) A short slug for what’s undecided
project workspace root Scope the question to a specific project’s project-docs/open-questions/ instead — prefer this whenever it already has a natural code home
projectDocsAncestors none Paths to existing project-docs/ artifacts this question grounds on — repeatable; an open question can ground on any artifact kind

A question is never marked resolved by editing its own file — some other artifact resolves it via its own --resolves flag (see domain-term/bounded-context/domain-model above). Re-adding a question that already exists throws rather than silently overwriting or duplicating it.


blocker

An existing artifact that needs revision — something already established but wrong, incomplete, or in conflict with something discovered later:

npx nx g @abgov/nx-agent:blocker "Cant Ship Payment Flow" \
  --project-docs-ancestors=project-docs/domain-models/collision-report-lifecycle.md

Creates project-docs/blockers/cant-ship-payment-flow.md:

---
project-docs-ancestors: [domain-models:collision-report-lifecycle]
resolves: []
---

<!-- What needs fixing, and why it is blocking. -->

blocker options

Option Default Description
description — (required, positional) A short slug for what needs fixing
project workspace root Scope the blocker to a specific project’s project-docs/blockers/ instead — prefer this whenever it already has a natural code home
projectDocsAncestors none Paths to existing project-docs/ artifacts this blocker relates to — repeatable; typically the artifact that needs revision

Same resolution model as open-question: never mark it resolved by editing its own file — the artifact that actually revises the thing it’s blocking resolves it via --resolves.


iteration-retrospective

A close-out record for a single iteration’s pass — what it did, what was found and fixed along the way, and an explicit status when “deployment succeeded” and “verified working end-to-end” diverge:

npx nx g @abgov/nx-agent:iteration-retrospective "Submit Minor Collision Report" \
  --project-docs-ancestors=project-docs/requirements/submit-minor-collision-report.md \
  --resolves=project-docs/blockers/no-write-packages-credential-for-ghcr-sandbox-push.md

Creates project-docs/iteration-retrospectives/submit-minor-collision-report.md:

---
title: Submit Minor Collision Report
project-docs-ancestors: [requirements:submit-minor-collision-report, blockers:no-write-packages-credential-for-ghcr-sandbox-push]
resolves: [blockers:no-write-packages-credential-for-ghcr-sandbox-push]
---

<!-- Free-text body: what this pass did, what was found and fixed along the way, and an
     explicit status when "deployment succeeded" and "verified working end-to-end" diverge. -->

iteration-retrospective options

Option Default Description
title — (required, positional) A short title for this iteration’s pass
project workspace root Scope the retrospective to a specific project’s project-docs/iteration-retrospectives/ instead — prefer this whenever the iteration already has a natural code home
projectDocsAncestors none Paths to existing project-docs/ artifacts this pass covered — repeatable; every requirement, domain model, or design substantively created, revised, or touched this iteration, not just the requirement it nominally closes out
resolves none Paths to existing open-question/blocker artifacts this iteration resolved — repeatable; also added to project-docs-ancestors, but recorded distinctly so project-docs-lineage can report the resolution as such

Self-registers its own project-docs/artifact-schema.json entry as terminal: true — a correctly-closed-out retrospective has zero descendants by design, so it’s excluded from project-docs-lineage’s orphan report rather than flagged alongside a genuine dead-end. Re-adding a retrospective that already exists throws rather than silently overwriting or duplicating it.


project-docs-lineage

Scans the whole workspace for project-docs/ artifacts and project-docs-ancestors references — across both doc frontmatter and code comments — and writes the resulting graph to .nx-agent/lineage.json (gitignored automatically; it’s fully derived from other files, so committing it would just create a second, driftable source of truth). Throws if it finds a reference that doesn’t resolve to anything; reports an artifact nothing references yet (an orphan) without failing, since that’s a normal, temporary state, not a mistake.

npx nx g @abgov/nx-agent:project-docs-lineage
npx nx g @abgov/nx-agent:project-docs-lineage --dry-run   # compute and report, write nothing

The project-docs-ancestors convention itself: a directive used identically in frontmatter (a YAML list) and code comments (comma-separated on one line), shaped <type>[:<id>][#fragment]. type is the literal project-docs/ subfolder name — no singular/plural guessing, so a new artifact kind works immediately with no schema to update. id is the filename minus extension, present only for a collection artifact (many instances, one file each, inside a type-named folder); a singular artifact (exactly one file directly under project-docs/, no subfolder) is referenced by its bare type, no id — e.g. domain-terms:case for a term, architecture-overview alone for a one-off doc. An optional project qualifier (<project>/type:id) scopes the reference to that project’s own project-docs/ instead of the workspace root’s — never implicit, even from within that same project, so a reference’s meaning never depends on where it’s found.

Not yet wired into the pre-commit hook or an Nx inferred plugin — run it yourself (or --dry-run it in your own CI) after adding or changing a reference.

Also reports which open-question/blocker artifacts are still open versus resolved — see resolutionStatus below.

project-docs/artifact-schema.json

An artifact-producing generator (domain-term, bounded-context, domain-model, open-question, blocker) self-registers its own entry here on first use, declaring what ancestor type its kind normally expects — e.g. domain-terms expects a bounded-contexts ancestor — and, separately, whether its kind has a resolution lifecycle at all:

{
  "bounded-contexts": { "expectedAncestorTypes": [] },
  "domain-terms": { "expectedAncestorTypes": ["bounded-contexts"] },
  "domain-models": { "expectedAncestorTypes": ["bounded-contexts", "domain-terms"] },
  "open-questions": { "expectedAncestorTypes": [], "tracksResolution": true },
  "blockers": { "expectedAncestorTypes": [], "tracksResolution": true },
  "iteration-retrospectives": { "expectedAncestorTypes": [], "terminal": true }
}

project-docs-lineage reads this generically — it has no knowledge of any specific type baked in, so a hand-added entry for a custom artifact kind gets the same checks for free. expectedAncestorTypes is an all-of list, not any-of: domain-models above requires an ancestor of both bounded-contexts and domain-terms, not either — a model with only one is still missing part of the vocabulary it should be built from. An artifact whose type has an entry here but is missing an ancestor of one of the expected types is reported (not thrown, since this is a convention nudge rather than a hard rule) as unscoped in .nx-agent/lineage.json’s violations.

tracksResolution: true is what makes open-questions/blockers show up in resolutionStatus (below) — a custom artifact kind with the same lifecycle (something that starts undecided/blocking and gets settled by another artifact) gets the same open/resolved report for free by declaring it.

terminal: true marks a type where zero descendants is what correct looks like, not a sign of neglect — a close-out/retrospective artifact, working exactly as intended, still has nothing ever built on top of it. See orphans below.

orphans

violations.orphans lists every registered artifact nothing in the workspace references — the “nothing derives from it yet” case, distinct from unscoped (missing an expected ancestor, the opposite direction). Two things feed correctly into what counts as “referenced”:

  • A reference counts whether it’s a plain project-docs-ancestors citation or a resolves one — a resolution is a real reference too, even when it’s the only field naming the target (the normal shape for a hand-authored artifact, before its type earns a generator with a --resolves flag that would otherwise duplicate the ref into project-docs-ancestors for you).
  • A type with terminal: true is excluded from orphans entirely, regardless of descendant count.

resolutionStatus

violations.resolutionStatus in .nx-agent/lineage.json splits every artifact whose type has tracksResolution: true into open and resolved:

{ "open": ["open-questions:reviewer-authorization"], "resolved": ["blockers:cant-ship-payment-flow"] }

“Resolved” means some artifact’s own resolves field names this key — not merely that something references it via project-docs-ancestors. That distinction matters: a blocker or another open-question citing an existing one because it’s still unresolved would, under a looser “anything references it” test, get misread as having resolved it. A deferral (explicitly punted, not decided) isn’t a third computed bucket — it stays open, with the why left to the artifact’s own prose, same as an orphan doesn’t try to distinguish “temporary” from “abandoned.”

Programmatic access

@abgov/nx-agent also exports two read functions — its first public, importable API; everything else in the package is consumed only via nx g @abgov/nx-agent:x. Meant for a caller that needs a stable contract (an ESLint rule, an agent resolving context for a file it’s about to touch), not one that wants to parse .nx-agent/lineage.json directly — that file’s exact shape stays an internal implementation detail, free to change as long as these signatures don’t.

import { getAncestors, getDescendants } from '@abgov/nx-agent';

getAncestors(tree, 'apps/my-service/src/routes/collision-reports.ts');
// => [{ type: 'domain-terms', id: 'collision-report' }]

getDescendants(tree, 'domain-terms:collision-report');
// => [{ file: 'apps/my-service/src/routes/collision-reports.ts' }]

The two directions have genuinely different costs, which the API makes explicit rather than hiding: getAncestors reads just the one file you ask about (the reference is embedded in it), so it’s always cheap. getDescendants has no such shortcut — nothing an artifact stores on itself says who points at it, since references are backward-only by design — so answering it means checking every file in the workspace. It rebuilds fresh on every call rather than trusting a persisted cache that could go stale the moment something changes without project-docs-lineage re-running (measured on this ~14k-file workspace: about 50ms end to end, which is why that’s an acceptable default rather than something worth caching).

Both take an optional depth (default 1, direct parents/children only — pass Infinity for the full ancestry/descendancy). depth doesn’t change the cost model above, it just decides whether to pay it: at depth 1, getAncestors still touches only the one file and getDescendants still does its one full-workspace scan. Beyond that, each function builds the graph once — not once per hop — and walks it in memory, so asking for depth: 5 costs the same one-time build as depth: 2. A cycle in the references (two artifacts deriving from each other) terminates correctly rather than looping forever.

getAncestors(tree, 'apps/my-service/src/routes/collision-reports.ts', Infinity);
// everything this file derives from, transitively

project-docs-report

Builds a single, self-contained HTML status report from the same data project-docs-lineage computes — a lineage graph (rendered with Mermaid, inlined so the report needs nothing from node_modules to open), a status summary (counts per type, open vs. resolved, orphans, broken references), and a per-artifact table. Not committed — like lineage.json, it’s 100% derived from other files, so it’s gitignored automatically at wherever it’s actually written.

npx nx g @abgov/nx-agent:project-docs-report
npx nx g @abgov/nx-agent:project-docs-report --project my-service   # scope to one project
npx nx g @abgov/nx-agent:project-docs-report --noSynthesis          # skip the LLM synthesis cascade

Written to project-docs/report.html — under the workspace root by default, or under the scoped project’s own root when --project is given, so the report always lands next to the artifacts it’s actually reporting on rather than in a new top-level directory. --outputPath overrides this.

Unlike project-docs-lineage, this never throws on a broken reference — surfacing exactly that kind of bad news is the point of a status report, not something to gate on.

--project scoping

registry/index/violations are always computed over the full workspace first, unconditionally — an artifact’s orphan/resolved status is a workspace-wide fact, and building the index from only one project’s files would misclassify anything referenced across a project boundary (a cross-project reference is real, not a mistake). --project filters what’s rendered, not what’s computed: the summary/counts/table include only that project’s own artifacts; the graph additionally shows each in-scope artifact’s direct ancestors even when they’re workspace-level or in another project — as dimmed context nodes, so edges never dangle, but excluded from the table and counts. Descendants outside the project aren’t pulled in.

Synthesis

A prose summary of project status, generated by shelling out to whichever already-authenticated coding-agent CLI is available — no new dependency, no separate API key to provision. Cascades through claude -p (Claude Code, if on PATH), then gh copilot -p (checked via the copilot binary directly, not gh, so an absent Copilot CLI is never silently auto-downloaded just to check), falling back to a deterministic summary computed straight from the same counts shown elsewhere in the report when neither is available or --noSynthesis is passed. The report always states plainly which path produced its summary, rather than varying silently between environments.


agent-delivery

Sets up the Discover/Design/Develop/Deploy (DDDD) workflow: copies the four skill files into .claude/skills/, plus the check-example-mapping.mjs gate script Discover’s own skill relies on, and appends a short guidance section to AGENTS.md pointing at them.

npx nx g @abgov/nx-agent:agent-delivery
npx nx g @abgov/nx-agent:agent-delivery --githubActions   # + a self-dispatching iteration loop

Every copied file is write-if-missing — a team’s own edits to a skill file, or to the workflow, survive a re-run. Re-running after an upgrade only adds files that weren’t there before; it never overwrites what’s already present.

agent-delivery options

Option Default Description
githubActions false Additionally scaffold a self-dispatching GitHub Actions iteration loop — .github/workflows/agent-delivery-iteration.yml, its harness/task-identification scripts, and a learnings.md header — for driving the same skills autonomously across many iterations, instead of a human or an orchestrating tool driving them one at a time.
provisionSecrets false Best-effort, non-interactive provisioning of the scaffolded workflow’s own GitHub repo secrets/variables — see below. No effect unless githubActions is also true. Requires @abgov/nx-oc.
project Scope provisionSecrets’s project-derived values to one project’s own sandbox target/tags. Auto-detected across the workspace when omitted.
openshiftServer, openshiftToken, openshiftNamespace, adspEnv, adspTenantName, adspTenantRealm, adspClientSecret Explicit value for the correspondingly-named secret/variable — used verbatim by provisionSecrets, skipping derivation entirely for that one. No adspClientId option: it’s always the fixed adsp-cli-ci client ID.
maxIterations Explicit MAX_ITERATIONS value for provisionSecrets to write. Optional either way — the workflow already defaults to 6 when unset.
accessToken Pre-obtained ADSP admin-scoped access token for provisionSecrets’s ADSP lookups — skips any adsp-cli login attempt, matching every nx-adsp app/service generator’s own --accessToken.
overwriteExisting false Let provisionSecrets overwrite a secret/variable that already exists on the repo. Default is to always leave an existing one unchanged.

--githubActions setup

The scaffolded workflow needs repo secrets and variables it doesn’t set itself: secrets OPENSHIFT_SERVER, OPENSHIFT_TOKEN, ADSP_CLIENT_ID, ADSP_CLIENT_SECRET; variables ADSP_ENV, ADSP_TENANT_NAME, ADSP_TENANT_REALM, OPENSHIFT_NAMESPACE, and optionally MAX_ITERATIONS (defaults to 6).

--provisionSecrets automates most of this on a best-effort basis, once at least one app/service has been scaffolded (and, for OPENSHIFT_*, sandboxed):

npx nx g @abgov/nx-agent:agent-delivery --githubActions --provisionSecrets

It derives OPENSHIFT_NAMESPACE from a project’s own sandbox target, ADSP_ENV/ ADSP_TENANT_NAME from the tags every app/service generator already writes, ADSP_TENANT_REALM from a live (re-)resolution of the tenant name, ADSP_CLIENT_ID as the fixed adsp-cli-ci constant, and ADSP_CLIENT_SECRET via a Keycloak admin lookup — using an oc/gh login already active on this machine, or an explicit option/--accessToken in place of any of them. It never overwrites a secret/variable that already exists on the repo unless --overwriteExisting is also passed, and reports anything it couldn’t determine as a warning with the exact next step. There’s no requirement to run this before or after any other generator — see the generator’s own provision-github-secrets.ts header for exactly how each value degrades when the state it’d otherwise read doesn’t exist yet.

Two things it deliberately never automates, reported as warnings with exact manual steps instead:

  • The tenant’s adsp-cli-ci Keycloak client being disabled. It’s bootstrapped disabled at tenant creation — a tenant admin has to enable it and generate its secret via the Keycloak admin console (Clients → adsp-cli-ci → Settings → enable → Credentials tab → regenerate). This is a real tenant-level decision, not something a generator should do on anyone’s behalf.
  • The org-level Copilot CLI billing policy — a GitHub org admin console setting, not a repo secret or variable, needed for the workflow’s own copilot-requests: write permission to actually authenticate.

This site uses Just the Docs, a documentation theme for Jekyll.