We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 663dcb8 commit bd3b133Copy full SHA for bd3b133
1 file changed
docs/extending.md
@@ -40,7 +40,7 @@ pub trait CompilerExtension {
40
fn required_hosts(&self) -> Vec<String>; // AWF network allowlist
41
fn required_bash_commands(&self) -> Vec<String>; // Agent bash allow-list
42
fn prompt_supplement(&self) -> Option<String>; // Agent prompt markdown
43
- fn prepare_steps(&self) -> Vec<String>; // Agent job steps (install, etc.)
+ fn prepare_steps(&self, ctx: &CompileContext) -> Vec<String>; // Agent job steps (install, etc.)
44
fn setup_steps(&self, ctx: &CompileContext) -> Result<Vec<String>>; // Setup job steps (gates, pre-checks)
45
fn mcpg_servers(&self, ctx: &CompileContext) -> Result<Vec<(String, McpgServerConfig)>>; // MCPG entries
46
fn allowed_copilot_tools(&self) -> Vec<String>; // --allow-tool values
0 commit comments