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
Since @2.0.2 version, AutoDev supports project rule. The project rule is a set of rules that are used to validate the project
11
+
structure and configuration. The project rule is defined under `prompts/rules` directory. The project rule is a Markdown file that contains the following fields:
12
+
13
+
For example, the project rule file is defined as follows:
14
+
15
+
```bash
16
+
promtps/rules/
17
+
├── service.md
18
+
├── controller.md
19
+
├── rpc.md
20
+
└── README.md # will always load this file default !!
21
+
```
22
+
23
+
Then the LLM will auto handle the project rule by RuleInsCommand, like:
0 commit comments