Skip to content

Commit 83205b1

Browse files
authored
[agent] git message tags (#431)
1 parent d179939 commit 83205b1

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docs/git-msg-tags.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Guideline to Git Commit Message Tags
2+
3+
## Generic
4+
- [enhancement]: Refactors or other non-functional changes that improve the codebase.
5+
- [bugfix]: Bug fixes.
6+
- [docs]: Documentation changes.
7+
- [agent]: Changes related to AI-powered development tools, and rules.
8+
9+
## Frontend-related
10+
- [dsl]: Changes the public interfaces exposed to users.
11+
- [sugar]: Changes that did not change the core public interfaces, but improve the usability with more friendly wrappers or syntactic sugars.
12+
13+
## Backend-related
14+
- [codegen.sim]: Changes related code gen Rust simulator.
15+
- [runtime.sim]: Changes related to the runtime for the Rust simulator.
16+
- [codegen.rtl]: Changes related to RTL code gen using PyCDE.
17+
- [uarch.rtl]: Changes related to the runtime for RTL, particularly the FIFO, and credit counter.
18+
19+
## Test-related
20+
- [test.unit]: Unit tests.
21+
- [test.ci]: Continuous integration tests.
22+
23+
When two or more tags apply, concatenate them, e.g., `[test.unit][bugfix]`.

0 commit comments

Comments
 (0)