Skip to content

Commit bd3b133

Browse files
docs: fix CompilerExtension::prepare_steps signature in extending.md (#677)
1 parent 663dcb8 commit bd3b133

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/extending.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub trait CompilerExtension {
4040
fn required_hosts(&self) -> Vec<String>; // AWF network allowlist
4141
fn required_bash_commands(&self) -> Vec<String>; // Agent bash allow-list
4242
fn prompt_supplement(&self) -> Option<String>; // Agent prompt markdown
43-
fn prepare_steps(&self) -> Vec<String>; // Agent job steps (install, etc.)
43+
fn prepare_steps(&self, ctx: &CompileContext) -> Vec<String>; // Agent job steps (install, etc.)
4444
fn setup_steps(&self, ctx: &CompileContext) -> Result<Vec<String>>; // Setup job steps (gates, pre-checks)
4545
fn mcpg_servers(&self, ctx: &CompileContext) -> Result<Vec<(String, McpgServerConfig)>>; // MCPG entries
4646
fn allowed_copilot_tools(&self) -> Vec<String>; // --allow-tool values

0 commit comments

Comments
 (0)