1.7 KiB
1.7 KiB
AGENTS.md
Dev environment tips
- Install dependencies with
npm installbefore running scaffolds. - Use
npm run devfor the interactive TypeScript session that powers local experimentation. - Run
npm run buildto refresh the CommonJS bundle indist/before shipping changes. - Store generated artefacts in
.context/so reruns stay deterministic.
Testing instructions
- Execute
npm run testto run the Jest suite. - Append
-- --watchwhile iterating on a failing spec. - Trigger
npm run build && npm run testbefore opening a PR to mimic CI. - Add or update tests alongside any generator or CLI changes.
PR instructions
- Follow Conventional Commits (for example,
feat(scaffolding): add doc links). - Cross-link new scaffolds in
docs/README.mdandagents/README.mdso future agents can find them. - Attach sample CLI output or generated markdown when behaviour shifts.
- Confirm the built artefacts in
dist/match the new source changes.
Repository map
angular.json/— explain what lives here and when agents should edit it.browserslist/— explain what lives here and when agents should edit it.docker-compose.yml/— explain what lives here and when agents should edit it.Dockerfile/— explain what lives here and when agents should edit it.e2e/— explain what lives here and when agents should edit it.k8s/— explain what lives here and when agents should edit it.karma.conf.js/— explain what lives here and when agents should edit it.kendo-ui-license.txt/— explain what lives here and when agents should edit it.
AI Context References
- Documentation index:
.context/docs/README.md - Agent playbooks:
.context/agents/README.md - Contributor guide:
CONTRIBUTING.md