Skip to content

Commit 72bb444

Browse files
committed
#3 text
1 parent e894915 commit 72bb444

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/tools.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ server.tool(
1010
'find_most_critical_design_issue',
1111
to_gpt(
1212
`
13-
Analyze a single Java file and find the most important
14-
design issue that requires immediate attention and refactoring.
15-
Ignore cosmetic problems that are easy to fix.
16-
Find single most important problem the fix of which will
17-
most effectively improve the quality of code, its maintainability
18-
and stability.
13+
Analyze one Java file.
14+
Find the most serious design flaw.
15+
It must need immediate refactoring.
16+
Ignore cosmetic or minor issues.
17+
Fix the one problem that will best improve code quality.
18+
Code quality means maintainability, readability, loose coupling, and high cohesion.
19+
Point out the problem and where it is in the file.
1920
`
2021
),
2122
{ path: z.string() },

0 commit comments

Comments
 (0)