## Summary
Drafts [ADR-0028](docs/decisions/0028-migrate-cicd-and-git-hosting-to-gitlab.md) as `proposed`: migrate CI/CD + git hosting from Gitea (`git.unespace.com`) to GitLab CE self-hosted on `vm-gitlab` (`10.100.201.10`). The migration was anticipated by [ADR-0015](docs/decisions/0015-cicd-gitea-actions.md) ("level-2 implementation; will be superseded by a GitLab migration ADR within 6-18 months") — that window opens now. **Decision-only PR** — the actual 4-phase migration ships across follow-up PRs after acceptance.
ADR-0028's number was previously a placeholder reference in ADR-0026 and ADR-0027 for the Pléiades + Acteurs+ sync ADR. **Renumbering**: that future sync ADR shifts to `ADR-0029`, and the placeholder links in ADR-0026, ADR-0027 and `CLAUDE.md` update to match — included in the same PR so the chain stays consistent.
## What lands
| File | Change |
| --- | --- |
| `docs/decisions/0028-migrate-cicd-and-git-hosting-to-gitlab.md` | **New.** MADR 4.0.0 ADR, `proposed`. Decision = Option B (GitLab CE on `vm-gitlab`). Considered options A (status quo Gitea), C (Forgejo), D (cloud SaaS). Documents what carries over from ADR-0015 (architectural principles unchanged — thin YAML, trunk-based, all-gates-blocking, on-prem runners), what changes (host, pipeline file, runner type, scan tooling), the 4-phase migration sequence, and the signed-commits revisit. |
| `docs/decisions/0026-person-user-portal-data-model.md` | All 11 `ADR-0028` references → `ADR-0029` (sync + facets shifts to 0029). |
| `docs/decisions/0027-portal-side-organisational-hierarchy.md` | All 14 `ADR-0028` references → `ADR-0029`. |
| `docs/decisions/README.md` | New row for ADR-0028 (`proposed`, tags `infrastructure`, `process`, 2026-05-26). |
| `CLAUDE.md` | Roll-up updated: `ADRs 0001 → 0027 accepted; ADR-0028 + ADR-0029 proposed`. ADR-0028's relationship to ADR-0015 spelled out inline ("supersedes ADR-0015's Gitea Actions platform choice — the rest of ADR-0015's architectural principles carry over unchanged"). ADR-0026 + ADR-0027 architecture bullets renumbered 0028 → 0029 to track. |
## Key choices in the ADR
- **What carries over from ADR-0015 vs what changes** — explicit table so future readers see immediately that the migration is **platform-only**, not a re-litigation of CI principles. Trunk-based + squash, all-gates-blocking, thin YAML over portable scripts (`pnpm ci:check` etc. — unchanged), on-prem runners, Conventional Commits in CI + hook (defense in depth) — all carried over. Host, pipeline-file grammar, runner type, and scan tooling are the only things that move.
- **Native security scanning replaces the manual Trivy + gitleaks setup.** GitLab CE's built-in `Dependency-Scanning.gitlab-ci.yml` + `Secret-Detection.gitlab-ci.yml` includes consolidate the ~30 lines of inline `curl + tar` install dance currently in `.gitea/workflows/ci.yml`. Same blocking thresholds (CRITICAL+HIGH dependency vulns, any secret).
- **`vm-gitlab` is already provisioned.** No infra wait — the only sequencing constraint is operator-driven, not infrastructure-driven.
- **4-phase migration, parallel pipelines for ~1 week before cutover.** Phase 1 mirrors repos and bootstraps GitLab side (no `.gitlab-ci.yml` yet — Gitea still gates). Phase 2 lands `.gitlab-ci.yml` alongside `.gitea/workflows/ci.yml` so both pipelines run per PR until parity is confirmed. Phase 3 flips the remote URLs and deletes `.gitea/workflows/` + `infra/ci-runners.compose.yml`. Phase 4 sweeps stale references.
- **Gitea moves to read-only / archive, not decommissioned** at cutover. Existing references to Gitea PRs (`#213`, `#217`, `#219`, …) in commit messages and ADR bodies stay resolvable as historical artefacts. One VM at idle is a low long-term cost.
- **Signed commits revisit.** ADR-0015 noted "signed commits recommended, revisited at GitLab migration". ADR-0028 makes the recommendation: enable required signed commits on `main` once GitLab is live, paired with GnuPG agent forwarding (already documented in `docs/setup/01-dev-debian-vm-setup.md` §8.5). `apf-portal-bot` (Renovate) gets a dedicated signing key at PR 1.
## Renumbering — what moved and why
Before this PR, ADR-0026 and ADR-0027 used `ADR-0028` as a placeholder link for the Pléiades + Acteurs+ sync ADR. That sync ADR hasn't been drafted yet — the number was reserved.
This PR claims `ADR-0028` for the GitLab migration (the immediately-actionable decision), and shifts the sync placeholder to **ADR-0029**. All 25 link references across ADR-0026 (11) and ADR-0027 (14) update in lockstep — replace_all is safe here because in those files `ADR-0028` consistently meant "the sync ADR".
Content of the sync ADR is unchanged — only the number. When that ADR is eventually drafted as `0029-…md`, it gets the existing content reserved for it in the placeholder text.
## Test plan
- [x] `pnpm exec prettier --check` clean on the touched files.
- [x] All `ADR-0028` references in `0026-…md` / `0027-…md` / `CLAUDE.md` now read `ADR-0029` (grep confirms zero remaining references to the old number in those files).
- [x] The new `0028-…md` self-references (status frontmatter, title, internal anchors) are consistent — no leftover `0029`.
- [ ] **Review focus** — drivers / consequences / migration sequence in the ADR; the "what carries over from ADR-0015" table; the renumbering rationale.
## What's next
Per ADR-0028 §"Migration sequence", post-acceptance:
1. **ADR-0028 acceptance PR** — small status-flip, same pattern as #219 (ADR-0026 + ADR-0027 acceptance).
2. **`mirror-and-bootstrap` PR** — `git push --mirror` Gitea → GitLab; GitLab side groups / projects / branch protection / MR templates / deploy keys / Renovate reconfig. No `.gitlab-ci.yml` yet, Gitea pipelines still gate.
3. **`gitlab-ci-pipeline` PR** — `.gitlab-ci.yml` alongside the existing `.gitea/workflows/ci.yml`. Parallel runs ~1 week for parity. GitLab Runner registered on `vm-gitlab`.
4. **`cutover` PR** — remotes flip across docs, `.gitea/workflows/` + `infra/ci-runners.compose.yml` deleted, Gitea read-only.
5. **`cleanup` PR** — stale references sweep, signed-commit policy finalised on `main`.
In parallel — once the dev VM (#220 / #221 / #222 / #223 / #224) is fully bootstrapped — the paused **ADR-0027 PR 1** (Region / Delegation / Structure Prisma schema + inline seed) and **ADR-0026 PR 1** (Person / User / UserScope schema + provisioner) can ship on Gitea; they have no dependency on the GitLab migration and don't need to wait.
---------
Co-authored-by: Julien Gautier <julien.gautier@apf.asso.fr>
Reviewed-on: #226
25 KiB
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project rules (durable)
These constraints were set by the project lead at kickoff. They apply to every change.
- Scale & quality bar. Treat this as a large-scale portal for a sizable organization, not a prototype. No bricolage, no exotic stacks. Default to stable, recognized, battle-tested choices. Cutting-edge / "à la pointe" alternatives must always be evaluated alongside the stable option, but are only adopted when the trade-off is captured in an ADR (drivers, risk, exit strategy). Pre-1.0 dependencies and one-maintainer projects are rejected unless an ADR justifies the exception.
- Security, performance, accessibility. All three are first-class concerns from day one — never bolted on. Architecture, dependency, and feature decisions must explicitly consider their impact on these axes and document the trade-offs.
- Project name. Currently
apf_portal, provisional. Do not hardcode it outside repo/workspace-level metadata so a rename stays a one-line change. - Language. All code, identifiers, comments, documentation, commit messages, and PR descriptions are written in English. (Conversation with the project lead happens in French — but artifacts shipped in the repo are English-only.)
- Commits / PRs. Never add a
Co-Authored-By: Claudetrailer or a🤖 Generated with Claude Codefooter to commits or PR bodies. - Be a peer, not a typist. Challenge requests when a better approach exists; surface trade-offs frankly. Don't silently execute a suboptimal directive — propose, then execute the agreed plan.
Documentation
- All documentation lives in
.mdfiles under docs/, indexed by docs/README.md. The index is maintained automatically whenever a doc is added, renamed, or removed — no need to be asked. - Documentation is written proactively whenever it is genuinely useful (architecture, runbooks, onboarding, security/perf/a11y rationales). It is not created for trivial things just to tick a box.
- The folder notes/ is the project lead's personal scratchpad — git-ignored and not part of project artifacts. Never write project documentation there.
Architectural Decision Records (ADRs)
- Format: MADR 4.0.0 (https://adr.github.io/, https://github.com/adr/madr). Template at docs/decisions/template.md.
- Location: flat folder docs/decisions/, indexed by docs/decisions/README.md.
- Filename convention:
NNNN-kebab-title.mdwith globally sequential 4-digit numbers. Numbers are never reset and never reused — even when an ADR is superseded or deprecated. - Categorization: via the
tags:array in the MADR frontmatter (e.g.[frontend, security]). The canonical tag vocabulary lives indocs/decisions/README.md; never invent ad-hoc tags inline. - Proactivity. Any non-trivial development decision (tool/library choice, framework pattern, security control, perf budget, a11y target, naming convention, deprecation, breaking change) warrants proposing an ADR before implementation. Don't wait to be asked. Update the index in the same change.
Architecture (recorded in ADRs)
The structural, security, observability, and quality choices are recorded as ADRs and summarized below. Any change to these requires updating the corresponding ADR.
- Workspace: Nx monorepo with the
appspreset, managed by pnpm — see ADR-0002. - Naming: workspace
apf-portal; appsportal-shell(end-user SPA),portal-admin(admin SPA, skeleton in place — see ADR-0020), andportal-bff(backend); libsfeature-<name>andshared-<scope>— see ADR-0003. - Frontend (
portal-shell): Angular at the latest LTS major — standalone APIs, zoneless change detection, Signals, CSR only (no SSR), Vitest, SCSS — see ADR-0004. - Backend (
portal-bff): NestJS at the latest stable major, mounted on the Express adapter (Fastify adapter swappable later) — see ADR-0005. - Persistence: PostgreSQL (latest stable major) via Prisma — see ADR-0006.
- Sessions: opaque session id in
__Host-portal_session, payload in self-hosted Redis (Sentinel HA in prod, single node in dev), tokens encrypted at rest with AES-256-GCM, idle 30 min sliding + absolute 12 h — see ADR-0010. - MFA: enforced by Entra ID Conditional Access (org-side policy, P1 licensing required); BFF sanity-checks the
amrclaim at session creation;@RequireMfa()decorator and freshness-based step-up are designed-in for future sensitive routes (no v1 consumer) — see ADR-0011. - Identity: multi-tenant Microsoft Entra ID with B2B invitation for workforce in v1, dual-audience design ready for future External ID activation — see ADR-0008.
- Authentication flow: OIDC Authorization Code + PKCE via
@azure/msal-node, executed entirely on the BFF; SPA never holds tokens;__Host-prefixed cookies, double-submit CSRF, RP-initiated logout — see ADR-0009. - Observability: Pino +
nestjs-pinofor structured JSON logs, OpenTelemetry SDK + auto-instrumentations for traces, W3C Trace Context propagation across SPA → BFF → DB → Redis,nestjs-clsfor request-scoped context (trace_id,session_id,user_id_hash,audience), 100 % sampling at the app with tail sampling deferred to the OTel Collector, stdout + OTLP shipping — see ADR-0012. - Audit trail: dedicated
audit.eventsschema in the same Postgres instance, append-only by Postgres role grants (audit_writerINSERT,audit_readerSELECT,audit_archiverDELETE older than retention; noUPDATE/TRUNCATEto anyone); 365-day retention default; cross-referenced with app logs viatrace_idandactor_id_hash(same salt); blocking writes (no audit ⇒ no action) — see ADR-0013. - Downstream API access: unified
DownstreamApiClient(@nestjs/axios+cockatiel), per-serviceDownstreamApiConfig; default auth strategy is OBO via MSAL Node for Entra-protected APIs (downstream-scoped tokens cached in Redis with AES-256-GCM under a dedicated key); fallback strategy is service credential + signedX-User-AssertionJWT (BFF JWKS at/.well-known/jwks.json); per-call audience pre-check; noaxios/fetchoutsidesrc/downstream/— see ADR-0014. - CI/CD: Gitea Actions (level-2 implementation; will be superseded by a GitLab migration ADR within 6-18 months). Trunk-based with squash-merge, branch protection on
main, all CI gates blocking. Thin YAML — orchestration logic lives inpackage.jsonscripts (ci:check,ci:scan,ci:commits) and Nx targets, runnable locally. Gates: format / lint / type-check / test / build / audit / secret-scan / commit-lint, plusa11y(per ADR-0016) and futureperf. Self-hostedact_runneron-prem. Conventional Commits validated locally (hook) and in CI (defense in depth). Required reviewer count = 0 in v1, raised to ≥1 once a second contributor joins. Signed commits recommended, revisited at GitLab migration — see ADR-0015. - Accessibility: WCAG 2.2 AA baseline + targeted AAA on criteria with high impact for APF's user base (1.4.6 Contrast Enhanced, 2.2.3 No Timing, 2.3.3 Animation, 3.1.5 Reading Level, 1.4.8 Visual Presentation, 2.4.9 Link Purpose, 3.3.5 Help). RGAA 4.1 alignment for French audit. UI stack: Angular CDK + TailwindCSS (spartan-ng library deferred until it reaches 1.0.0; v1 components are written in-house in
libs/shared/ui/on Angular CDK, applying the spartan-ng philosophy of headless primitives + utility CSS + copy-paste). User-preferences panel (contrast / text size / motion / spacing / cognitive simplification / reading focus) persisted in session. Tooling:@angular-eslint/template/*lint,@axe-core/playwrighte2e (blocking on critical/serious), token-contrast CI check, touch-target check (44×44 min). Manual testing cadence with APF's internal user panel before each major release. Public accessibility statement page at/accessibilityand/accessibilite— see ADR-0016. - Performance budgets: Core Web Vitals at Google "Good" thresholds (LCP ≤ 2.5 s, INP ≤ 200 ms, CLS ≤ 0.1, TBT ≤ 200 ms, TTFB ≤ 800 ms), Lighthouse Performance ≥ 90 on critical routes. Lighthouse CI (
@lhci/cli) runs in CI with median-of-3 mitigation, blocking on threshold breach. Angular bundlebudgets(type: "error"): initial ≤ 300 KB gzip, lazy chunks ≤ 100 KB gzip. BFF p95/p99 SLOs per endpoint family observed via OTel (advisory in CI, alerting in prod). Weekly scheduled Lighthouse run on prod env. a11y wins over perf when they conflict — see ADR-0017. - Environment configuration: SPA per-environment values via Angular
environment.ts+fileReplacementsat build time (no runtime config-fetch). BFF readsprocess.envdirectly with small per-key boot-time validators (no@nestjs/configoverhead at this scale). The audit log uses a separateAUDIT_DATABASE_URLconnection pool in production (audit_writer-only login, defense in depth) and falls back to the shared pool +SET LOCAL ROLEin dev — see ADR-0018. - Internationalisation:
@angular/localizein build-time mode, two locales (frdefault served at/,en), source locale = English (project English-only rule). Path-based URLs always prefixed (/fr/...,/en/...);/smart-redirects via cookie →Accept-Language→fr. UI strings live in XLIFF (messages.fr.xlf); editorial / CMS content is BFF-served already localised (see admin app). Footer hosts the locale switcher; switching writes a__Host-portal_localecookie and hard-refreshes — see ADR-0019. - Admin application (
portal-admin): dedicated Angular SPA alongsideportal-shell, sharing the sameportal-bffvia/api/admin/*routes guarded by an EntraPortal.Adminrole +@RequireMfa({ freshness: 600 })at entry. Distinct origin / cookie / session fromportal-shell(__Host-portal_admin_session). v1 modules: CMS for static pages (multilingual), menu management, user list (read-only), audit log viewer. Bundle budget relaxed to ≤ 500 KB gzip (vs 300 KB forportal-shell); same a11y + dark-mode baseline. Shared UI primitives (Icon,LayoutStateService, brand tokens) graduate tolibs/shared/*as both apps need them — see ADR-0020. - Local quality gates: Husky + lint-staged + commitlint with Conventional Commits — see ADR-0007.
- Documentation site:
docs/**/*.mdrendered as a separate static site via VitePress (Vite-based, Node-only toolchain, Markdown-first). Mermaid diagrams viavitepress-plugin-mermaid. Deployed on its own hostname behind the shared reverse-proxy; CI hook ondocs/changes rebuilds + publishes. Decoupled from the apps — content lives indocs/, no in-app Markdown viewer — see ADR-0022. - Charts + dashboards:
D3 + Observable Plotwrapped inlibs/shared/charts/, one Angular component per chart type (bar, donut, line, stacked-bar, …). A11y baked in by the lib (SVG<title>/<desc>,<details>tabular fallback, colour-blind-safe palettes, AA-contrast text,prefers-reduced-motiongate). Bundle stays under ADR-0017's lazy-chunk cap via per-d3-*module tree-shaking. Future bespoke visualisations land in raw D3 inside the same lib — see ADR-0023. - AI service relay: dedicated
apf-ai-servicerepo (ASP.NET Core, Microsoft Agent Framework) consumed via native gRPC HTTP/2 only — proto contract vendored underapps/portal-bff/src/grpc/proto/apf-ai/withts-protocodegen committed alongside. BFF dials with@grpc/grpc-js(h2c in dev, h2 + TLS in prod), bridgesChatService.Chattotext/event-streamfor the SPA, exposesRagService.SearchandModelsService.ListModelsas plain JSON endpoints. Identity travels as an unsignedPrincipal(subject, roles, attributes) in the proto body for the POC, hashed via the audit module'sHashUserIdServiceso portal and AI service audit trails join on the sameactor_id_hash. Production hardening (signed envelope vs mTLS) deferred — see ADR-0024. - Authorization model: three orthogonal axes — privileges (Entra app roles,
Portal.*), functional roles (Entra security groups → curatedapf-role-*slug catalogue, 24 entries v1), scopes (portal-sideuser_scopestable, future Pléiades feed; kinds =self / etablissement:<structure-code> / delegation:<dept> / region:<insee> / siege / unrestricted, see ADR-0027 for theStructure.codesemantics). Composed at sign-in into a session-residentPrincipal; portal guards consume the structured shape, a deterministicPrincipalProjectorflattens it to the AI-serviceroles[]contract. Replaces stargate's linear hierarchy. Catalogues are closed-set, drift gated by CI — see ADR-0025. - Portal-side identity model:
Persongolden record (stable identity, can exist without a portal account — workforce pre-provisioning, dossier bénéficiaires, alumni) +Useroverlay (one-to-zero-or-one with Person, lazy-created on first OIDC callback in v1; carries portal-only state likelastSignInAt).UserScopebacks the ADR-0025 scope axis with opaquevaluestrings referencing ADR-0027'sStructure.code/Delegation.code/Region.code— no FK at the DB level so historical rows survive structure decommissioning; admin-UI write path validates. v1 dedup usesentraOidonly;Person.emailis an indexed attribute, not a unique key, because two distinct humans genuinely share emails (shared aliases, genericinfo@, upstream-feed errors). Facets (Salarié / Élu / Adhérent / Bénéficiaire) + Pléiades / Acteurs+ sync + operator-confirmed Person-merge flow deferred to ADR-0029 — see ADR-0026. - Portal-side organisational hierarchy:
Region(INSEE 2-digit) →Delegation(department 2–3-char) →Structurewithkinddiscriminator (medico_social/antenne/dispositif/entreprise_adaptee/mouvement/administratif/siege, aligned with cascade'sStructure.type).Structure.codeis the portal-internal string PK, externally meaningful: for medico-social rows it equals the FINESS (9 digits) and round-trips cleanly through scope literals (etablissement:0330800013) and URLs; for non-FINESS rows it is an APF-internal slug (siege,apf-bdx-merignac,ea-toulouse, …).finess/siret/codePaieare nullable, unique-when-present attributes — populated where the upstream registry has the structure on file. v1 ships a small inline-migration seed (test-tenant scope: Région Nouvelle-Aquitaine, Délégation 33, a handful of médico-social + siège); the full cascade-driven inventory sync, plusPole/Service/ arbitrary nesting / per-source enrichment, land additively with ADR-0029 — see ADR-0027. - Runtime: Node.js latest LTS major.
Repository status
The Nx workspace is scaffolded and operational. The three apps (portal-shell, portal-admin, portal-bff) and the seven lib roots (libs/feature/auth, libs/shared/auth, libs/shared/charts, libs/shared/state, libs/shared/tokens, libs/shared/ui, libs/shared/util) are in place; CI runs format:check / lint / test / build plus the ADR-0025 catalogue-drift gate on every PR.
ADRs 0001 → 0027 are accepted and cover the structural, security, observability, quality, i18n, admin-app, docs-site, charts, AI-relay, authorization, and portal-side identity + organisational hierarchy choices. ADR-0028 (migrate CI/CD + git hosting Gitea → GitLab self-hosted, supersedes ADR-0015's "Gitea Actions" platform choice — the rest of ADR-0015's architectural principles carry over unchanged) and ADR-0029 (cascade / Pléiades / Acteurs+ syncs + facet schemas) are the next proposed additions. Until ADR-0026 + ADR-0027 implementation PRs ship, ADR-0025's stubs (Principal.user.{id, personId} placeholders, StubScopeResolver's unrestricted blanket return) remain in place. Shipped on main:
- Phase-1 foundation — Nx workspace, Angular
portal-shell, NestJSportal-bff, Prisma + Postgres, Pino + OpenTelemetry, Husky/lint-staged/commitlint, Gitea Actions CI. - Phase-2 auth + audit + security — OIDC Auth Code + PKCE via MSAL Node, Redis sessions with AES-256-GCM at rest, idle 30 min sliding + absolute 12 h hard ceiling, RP-initiated logout, double-submit CSRF,
audit.eventsappend-only schema with role-based grants, helmet + env-driven CORS allowlist + rate limiting + structured error envelope (see ADR-0021). - Phase-3a admin app —
portal-adminSPA with brand tokens, routing, user-list reader (/admin/users), and audit-log viewer with statistics and integrated charts (/admin/audit). CMS for static pages and menu management not yet implemented. - AI relay surface + live consumer — vendored protos +
AiClientModule(gRPC clients, Principal mapper, metadata builder) +AiBridgeControllerexposingPOST /api/ai/chat(SSE),GET /api/ai/rag/search,GET /api/ai/models(see ADR-0024). Chatbot widget live inportal-shellatapps/portal-shell/src/app/features/chatbot/. - Docs static site (ADR-0022) — VitePress + Mermaid renderer at
docs/.vitepress/, dedicateddocs-site.ymlworkflow that rebuilds + publishes on everydocs/**change. - Charts lib + audit-page dashboards (ADR-0023) —
libs/shared/charts/withBarChart,DonutChart,StackedBarChart(D3 + Observable Plot, headless / a11y-baked-in), integrated into the/admin/auditpage for daily-volume + outcome-breakdown + event-type-over-time views. - Authorization model + guards (ADR-0025) —
libs/shared/auth/exporting the closed catalogues (4 privileges, 24 functional roles, 6 scope kinds),Principalshape, pure matchers, andEntraGroupToRoleResolver. BFF-sidePrincipalBuildercomposing the three axes at sign-in from Entraroles+groupsclaims + a stubScopeResolver.@RequirePrivilege/@RequireRole/@RequireScoperoute decorators + guards with the ADR-0021 structured-error envelope on denial;AdminRoleGuardmigrated to readprincipal.privileges. CI drift gate (scripts/check-catalogue-drift.mjs) asserting every decorator literal is in the catalogue.
Still on the roadmap:
DownstreamApiClient+ OBO (ADR-0014) — module scaffolded (obo.strategy,signed-assertion.strategy, JWKS publisher, encrypted token cache); no v1 consumer yet. Wires in when the first business route needs an Entra-protected API.@RequireMfa()step-up consumer routes (ADR-0011) — guard + decorator shipped; awaiting first sensitive route that needs explicit freshness enforcement beyond the Conditional Access baseline.@RequireScopePrisma-backed resolver + first consumer surface —StubScopeResolverreturnsunrestrictedfor everyone in v1 per ADR-0025 §331. Implementation lands across ADR-0026 (accepted:Person+User+UserScope) and ADR-0027 (accepted:Region/Delegation/Structurewithkinddiscriminator + nullable FINESS / SIRET). Sequencing: ADR-0026 PR 1 + ADR-0027 PR 1 ship schema in parallel; ADR-0026 PR 2 then lands thePrismaScopeResolver+ admin scope-seeding UI + test-tenant seed (which references ADR-0027'sStructure.codevalues). The follow-up ADR-0029 covers Pléiades / Acteurs+ / cascade syncs + facet schemas.- Proto-drift CI gate for the AI relay (ADR-0024) — asserts the vendored
apf-ai-serviceproto files stay in lockstep with the upstream contract. - Admin app — CMS & menu management (ADR-0020) — multilingual static-page editor + navigation menu builder. The user-list + audit-log-viewer modules already exist; the CMS/menu pair is the remaining v1 module scope.
- Strategic security baseline ADR — separate from the implementation-level ADR-0021. Remains paused awaiting RSSI input on the OWASP ASVS reference level and adjacent frameworks (HDS, GDPR, possibly NIS 2). When it lands it will either confirm 0021 or supersede pieces of it.
Commands once the workspace exists
App-scoped — <app> is one of portal-shell, portal-admin, portal-bff:
pnpm nx serve <app> # dev server
pnpm nx build <app>
pnpm nx test <app> # Vitest, all tests for the app
pnpm nx lint <app>
Run a single test file:
pnpm nx test <app> --testFile=path/to/file.spec.ts
Workspace-wide:
pnpm nx run-many -t lint test build
pnpm nx affected -t lint test build # only projects affected by current changes
pnpm nx format:check
Environment conventions
- Two development environments.
local(Windows-WSL or native macOS / Linux on the workstation) anddevelopment(Debian 13 VM at10.100.201.21— the default for new devs, replaces WSL). Ahybridsub-mode runs the IDE + Nx servers on the workstation while reaching the infra services (postgres / redis / otel) on the dev VM through SSH tunnels. Full procedure: docs/setup/01-dev-debian-vm-setup.md. The legacy WSL flow remains documented in docs/setup/02-wsl-terminal-setup.md. - Two IDE flows on the dev VM — VSCode Remote-SSH (default; transparent equivalent of the WSL flow) and Devcontainer (
.devcontainer/devcontainer.jsonshipped, Node + pnpm pinned in the image, mounts the docker socket so the host'sapf-portal-devCompose network is reachable from inside). - Never install Angular globally. Use
pnpm dlxfor one-off CLI invocations and project-localpnpm nx ...for everything else — versions stay pinned per project. - On WSL: work inside the WSL filesystem (
~/Works/...), never under/mnt/c— the latter has severe I/O penalties that break Nx caching and dev-server reload times. On the dev VM the analogous rule is "stay on the VM disk, do not work over SSHFS / network mounts". - pnpm is mandatory (activated via
corepack enable); do not introduce npm or yarn lockfiles. - Prettier config target:
singleQuote: true,semi: true,printWidth: 100.
General Guidelines for working with Nx
- For navigating/exploring the workspace, invoke the
nx-workspaceskill first - it has patterns for querying projects, targets, and dependencies - When running tasks (for example build, lint, test, e2e, etc.), always prefer running the task through
nx(i.e.nx run,nx run-many,nx affected) instead of using the underlying tooling directly - Prefix nx commands with the workspace's package manager (e.g.,
pnpm nx build,npm exec nx test) - avoids using globally installed CLI - You have access to the Nx MCP server and its tools, use them to help the user
- For Nx plugin best practices, check
node_modules/@nx/<plugin>/PLUGIN.md. Not all plugins have this file - proceed without it if unavailable. - NEVER guess CLI flags - always check nx_docs or
--helpfirst when unsure
Scaffolding & Generators
- For scaffolding tasks (creating apps, libs, project structure, setup), ALWAYS invoke the
nx-generateskill FIRST before exploring or calling MCP tools
When to use nx_docs
- USE for: advanced config options, unfamiliar flags, migration guides, plugin configuration, edge cases
- DON'T USE for: basic generator syntax (
nx g @nx/react:app), standard commands, things you already know - The
nx-generateskill handles generator discovery internally - don't call nx_docs just to look up generator syntax