You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+24-2Lines changed: 24 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This file defines repository-wide guidance for AI agents working in Ignite UI fo
4
4
5
5
## Project Overview
6
6
7
-
Ignite UI for Angular is a comprehensive UI component library built on Angular 21+. It provides 60+ components including grids, charts, form controls, layout containers, and data visualization widgets.
7
+
Ignite UI for Angular is a comprehensive UI component library built on the Angular framework.
8
8
9
9
-**Language**: TypeScript (strict mode)
10
10
-**Framework**: Angular 21+
@@ -115,4 +115,26 @@ Feature implementation is handled by a set of specialized agents in `.github/age
115
115
|`bug-fixing-agent`|`bug-fixing-agent.md`| Investigates and fixes bugs following a TDD workflow |
116
116
|`migration-agent`|`migration-agent.md`| Creates `ng update` migration schematics for breaking changes |
117
117
|`changelog-agent`|`changelog-agent.md`| Updates `CHANGELOG.md` following repo conventions |
118
-
|`validator-agent`|`validator-agent.md`| Runs lint, build, and all test suites to verify correctness |
118
+
119
+
## Commit Message Conventions
120
+
121
+
When creating or suggesting a commit message, follow this format:
122
+
123
+
`<type>(<scope>): <subject>`
124
+
125
+
Allowed `<type>` values:
126
+
-`feat` — new feature
127
+
-`fix` — bug fix
128
+
-`test` — tests added or updated
129
+
-`docs` — documentation only
130
+
-`refactor` — code change without fixing a bug or adding a feature
131
+
-`perf` — performance improvement
132
+
-`style` — formatting or style-only changes with no logic change
133
+
-`chore` — maintenance, tooling, or housekeeping work
134
+
-`ci` — CI/CD or workflow changes
135
+
136
+
Rules:
137
+
- Use a clear subject with at least 15 characters.
138
+
- Keep each line within 80 characters.
139
+
- If the scope is unclear, use `(*)`.
140
+
- Use the current component, directive, service, or area as the scope when possible.
0 commit comments