chore(multiagent) skills instructions toggle (#18596)

## Summary
Support toggling the skills message off.

## Test Plan
- [x] Updated unit tests
This commit is contained in:
Dylan Hurd
2026-04-19 21:11:52 -07:00
committed by GitHub
parent d58d3ccfec
commit 49403e3676
6 changed files with 155 additions and 21 deletions

View File

@@ -27,6 +27,10 @@ pub struct SkillsConfig {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub bundled: Option<BundledSkillsConfig>,
/// Whether turns receive the automatic skills instructions block.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub include_instructions: Option<bool>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub config: Vec<SkillConfig>,
}