Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub async fn run(path: Option<&std::path::Path>, force: bool) -> Result<()> {
println!(" \"Create an ADO agentic workflow that <describe your workflow>\"");
println!();
println!("Or use the prompt directly with any AI agent:");
println!(" https://raw.githubusercontent.com/githubnext/ado-aw/main/prompts/create-ado-agentic-workflow.md");
println!(" https://raw.githubusercontent.com/githubnext/ado-aw/v{version}/prompts/create-ado-agentic-workflow.md");

Ok(())
}
8 changes: 4 additions & 4 deletions templates/init-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ This is a **dispatcher agent** that routes your request to the appropriate speci
### Create New Agentic Pipeline
**Load when**: User wants to create a new agentic pipeline from scratch

**Prompt file**: https://raw.githubusercontent.com/githubnext/ado-aw/main/prompts/create-ado-agentic-workflow.md
**Prompt file**: https://raw.githubusercontent.com/githubnext/ado-aw/v{{ compiler_version }}/prompts/create-ado-agentic-workflow.md

**Use cases**:
- "Create an agentic pipeline that reviews PRs weekly"
Expand All @@ -58,7 +58,7 @@ This is a **dispatcher agent** that routes your request to the appropriate speci
### Update Existing Pipeline
**Load when**: User wants to modify an existing agent workflow file

**Prompt file**: https://raw.githubusercontent.com/githubnext/ado-aw/main/prompts/update-ado-agentic-workflow.md
**Prompt file**: https://raw.githubusercontent.com/githubnext/ado-aw/v{{ compiler_version }}/prompts/update-ado-agentic-workflow.md

**Use cases**:
- "Add the Azure DevOps MCP to my pipeline"
Expand All @@ -68,7 +68,7 @@ This is a **dispatcher agent** that routes your request to the appropriate speci
### Debug Failing Pipeline
**Load when**: User needs to troubleshoot a failing agentic pipeline

**Prompt file**: https://raw.githubusercontent.com/githubnext/ado-aw/main/prompts/debug-ado-agentic-workflow.md
**Prompt file**: https://raw.githubusercontent.com/githubnext/ado-aw/v{{ compiler_version }}/prompts/debug-ado-agentic-workflow.md

**Use cases**:
- "Why is my agentic pipeline failing?"
Expand Down Expand Up @@ -111,4 +111,4 @@ When a user interacts with you:
- Agent files must be compiled with `ado-aw compile` after YAML frontmatter changes
- Markdown body (agent instructions) changes do NOT require recompilation
- The agent never has direct write access — all mutations go through safe outputs
- Full reference: https://raw.githubusercontent.com/githubnext/ado-aw/main/AGENTS.md
- Full reference: https://raw.githubusercontent.com/githubnext/ado-aw/v{{ compiler_version }}/AGENTS.md
Loading