@@ -10,7 +10,7 @@ func ProjectPrompt() Prompt {
10
10
return Prompt {
11
11
Category : CategoryDebug ,
12
12
Prompt : mcp .NewPrompt ("project" ,
13
- mcp .WithPromptDescription ("A prompt to debug a project build failures" ),
13
+ mcp .WithPromptDescription ("A prompt to debug project build failures" ),
14
14
mcp .WithArgument ("prompt" ,
15
15
mcp .ArgumentDescription ("the user prompt with project information" ),
16
16
),
@@ -19,7 +19,7 @@ func ProjectPrompt() Prompt {
19
19
prompt := request .Params .Arguments ["prompt" ]
20
20
21
21
return mcp .NewGetPromptResult (
22
- "A prompt to debug a project build failures" ,
22
+ "A prompt to debug project build failures" ,
23
23
[]mcp.PromptMessage {
24
24
mcp .NewPromptMessage (
25
25
mcp .RoleAssistant ,
@@ -55,7 +55,7 @@ func IngredientPrompt() Prompt {
55
55
return Prompt {
56
56
Category : CategoryDebug ,
57
57
Prompt : mcp .NewPrompt ("ingredient" ,
58
- mcp .WithPromptDescription ("A prompt to debug a ingredient build failure" ),
58
+ mcp .WithPromptDescription ("A prompt to debug an ingredient build failure" ),
59
59
mcp .WithArgument ("prompt" ,
60
60
mcp .ArgumentDescription ("the user prompt with ingredient information" ),
61
61
),
@@ -64,7 +64,7 @@ func IngredientPrompt() Prompt {
64
64
prompt := request .Params .Arguments ["prompt" ]
65
65
66
66
return mcp .NewGetPromptResult (
67
- "A prompt to debug a project build failures" ,
67
+ "A prompt to debug ingredient build failures" ,
68
68
[]mcp.PromptMessage {
69
69
mcp .NewPromptMessage (
70
70
mcp .RoleAssistant ,
0 commit comments