File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed
Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -161,8 +161,6 @@ The conversion:
161161
162162---
163163
164- ## Instructions
165-
166164When reviewing code, follow these guidelines...
167165```
168166
Original file line number Diff line number Diff line change @@ -105,7 +105,6 @@ func formatSkillResponse(sk *skill.Skill) string {
105105 sb .WriteString (fmt .Sprintf ("# Skill: %s\n \n " , sk .Name ))
106106 sb .WriteString (fmt .Sprintf ("**Description:** %s\n \n " , sk .Description ))
107107 sb .WriteString ("---\n \n " )
108- sb .WriteString ("## Instructions\n \n " )
109108 sb .WriteString (sk .Instructions )
110109
111110 return sb .String ()
Original file line number Diff line number Diff line change @@ -80,9 +80,6 @@ func TestFormatSkillResponse(t *testing.T) {
8080 if ! strings .Contains (response , "**Description:** A test skill" ) {
8181 t .Error ("response missing description" )
8282 }
83- if ! strings .Contains (response , "## Instructions" ) {
84- t .Error ("response missing instructions header" )
85- }
8683 if ! strings .Contains (response , "Do the thing." ) {
8784 t .Error ("response missing instruction content" )
8885 }
You can’t perform that action at this time.
0 commit comments