We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abffbf5 commit 1d8019bCopy full SHA for 1d8019b
pkg/inventory/registry.go
@@ -58,6 +58,8 @@ type Inventory struct {
58
filters []ToolFilter
59
// unrecognizedToolsets holds toolset IDs that were requested but don't match any registered toolsets
60
unrecognizedToolsets []string
61
+ // server instructions hold high-lelvel instructions for agents to use the server effectively
62
+ instructions string
63
}
64
65
// UnrecognizedToolsets returns toolset IDs that were passed to WithToolsets but don't
@@ -292,3 +294,7 @@ func (r *Inventory) AvailableToolsets(exclude ...ToolsetID) []ToolsetMetadata {
292
294
293
295
return result
296
297
+
298
+func (r *Inventory) Instructions() string {
299
+ return r.instructions
300
+}
0 commit comments