Skip to content

Commit 2b9325e

Browse files
committed
Merge branch 'night-shift/skills-mcp-server-2yp'
2 parents 6c9165c + 6a873eb commit 2b9325e

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,6 @@ The conversion:
161161
162162
---
163163
164-
## Instructions
165-
166164
When reviewing code, follow these guidelines...
167165
```
168166

internal/server/server.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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()

internal/server/server_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)