AllPrompts returns all prompts with their embedded toolset metadata. Prompt functions return ServerPrompt directly with toolset info.
(t translations.TranslationHelperFunc)
| 8 | // AllPrompts returns all prompts with their embedded toolset metadata. |
| 9 | // Prompt functions return ServerPrompt directly with toolset info. |
| 10 | func AllPrompts(t translations.TranslationHelperFunc) []inventory.ServerPrompt { |
| 11 | return []inventory.ServerPrompt{ |
| 12 | // Issue prompts |
| 13 | AssignCodingAgentPrompt(t), |
| 14 | IssueToFixWorkflowPrompt(t), |
| 15 | } |
| 16 | } |