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
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,13 @@
1
-
# SQL Parser in Rust
1
+
# Extensible SQL Lexer and Parser for Rust Agents Guidelines
2
2
3
-
## Agent Workflow
3
+
## General Agent Workflow
4
+
1. You will receive a coding task from your operator.
5
+
2. You will analyze the task and come up with a code change to complete it.
6
+
3. You will write unit tests to ensure your code change is working as expected.
7
+
4. You will run the commands in the Pre Commit Checks section below to ensure your change is ready for a pull request.
8
+
5. When instructed to open a PR, you will follow the instructions in the Pull Request Guidelines section below.
9
+
10
+
## Agent Workflow for Fixing Parsing Issues in SQL Statements
4
11
1. You will receive a SQL statement that is not parsed correctly by the project. Typically parsing will fail with an error.
5
12
2. You will add a unit test to check that the SQL statement is indeed unparsed. Follow the instructions in the "Unit Tests" section below.
6
13
3. You will analyze why the SQL statement is not parsed correctly, pointing to the code section that you think is faulty. See more info in the Analyzing Parsing Issues and General Coding Guidelines below.
0 commit comments