MCPcopy Create free account
hub / github.com/coder/coder / mergeTurnSkills

Function mergeTurnSkills

coderd/x/chatd/chatd.go:6712–6720  ·  view source on GitHub ↗
(
	personalSkills []skillspkg.Skill,
	workspaceSkills []chattool.SkillMeta,
)

Source from the content-addressed store, hash-verified

6710}
6711
6712func mergeTurnSkills(
6713 personalSkills []skillspkg.Skill,
6714 workspaceSkills []chattool.SkillMeta,
6715) []skillspkg.ResolvedSkill {
6716 return skillspkg.MergeSkills(
6717 personalSkills,
6718 workspaceSkillsForResolution(workspaceSkills),
6719 )
6720}
6721
6722// buildSystemPrompt applies system-level prompt injections in the
6723// canonical order. It is used by both the initial prompt assembly

Calls 1