validSkillMD returns a valid SKILL.md with the given name and description.
(name, description string)
| 22 | // validSkillMD returns a valid SKILL.md with the given name and |
| 23 | // description. |
| 24 | func validSkillMD(name, description string) string { |
| 25 | return "---\nname: " + name + "\ndescription: " + description + "\n---\n\n# Instructions\n\nDo the thing.\n" |
| 26 | } |
| 27 | |
| 28 | func responseName(t *testing.T, resp fantasy.ToolResponse) string { |
| 29 | t.Helper() |
no outgoing calls
no test coverage detected