Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,19 @@
- Structured CLI errors: `src/commands/intent-based-actions/intent-errors.ts`
- Repeatable `key=value` and JSON input parsing: `src/commands/intent-based-actions/kv.ts`

## CI & Packaging

- The `verify-plugin-export.yaml` workflow builds the CLI with `yarn pack`,
then installs the resulting tarball via `npm install -g`. Dependencies in
`package.json` must therefore use npm-compatible version specifiers — do not
use Yarn-specific protocols (`patch:`, `portal:`, `workspace:`) in the
`dependencies` field. Avoiding them in `devDependencies` is also recommended
for consistency, though only `dependencies` are resolved during the CI
install step.
- The Verify workflow runs against 9 plugin workspaces (adoption-insights,
bulk-import, extensions, global-header, homepage, orchestrator, quickstart,
scorecard, theme) from the `rhdh-plugin-export-overlays` repo.

## PR Conventions

- PR titles must follow [Conventional Commits](https://www.conventionalcommits.org/) — enforced by CI (`pr-semantic.yaml`)
Expand Down
Loading