From b3a7c93504d9b104dec4760473ada583ab3d2c1a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Aug 2026 20:23:56 +0000 Subject: [PATCH 1/2] Initial plan From 560d1f35a2c34a2c4c78e9991fcbc44838cf9954 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Aug 2026 20:31:07 +0000 Subject: [PATCH 2/2] docs: clarify init copilot-specific artifacts Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/src/content/docs/setup/cli.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/content/docs/setup/cli.md b/docs/src/content/docs/setup/cli.md index 57a80f3923c..6335962ef93 100644 --- a/docs/src/content/docs/setup/cli.md +++ b/docs/src/content/docs/setup/cli.md @@ -148,14 +148,14 @@ Commands are organized by workflow lifecycle: creating, building, testing, monit #### `init` -Initialize repository for agentic workflows. Configures `.gitattributes`, creates the dispatcher skill file (`.github/skills/agentic-workflows/SKILL.md`), creates the Agentic Workflows custom agent (`.github/agents/agentic-workflows.md`), and performs non-interactive setup. Enables MCP server integration by default (use `--no-mcp` to skip). Use `--no-skill` or `--no-agent` to skip either artifact, or `--engine` to select a non-Copilot engine and skip Copilot-specific artifacts. +Initialize repository for agentic workflows. Configures `.gitattributes`, creates the dispatcher skill file (`.github/skills/agentic-workflows/SKILL.md`), and performs non-interactive setup. With the Copilot engine (`--engine copilot`), it also creates the Agentic Workflows custom agent (`.github/agents/agentic-workflows.md`) and enables MCP server integration by default (use `--no-mcp`/`--no-agent` to skip these Copilot-specific artifacts). Use `--no-skill` to skip dispatcher skill creation. Non-Copilot engines skip Copilot-specific artifacts. ```bash wrap gh aw init # Initialize repository with defaults (non-interactive) gh aw init --engine claude # Skip Copilot-specific artifacts -gh aw init --no-mcp # Skip MCP server integration +gh aw init --no-mcp # Skip MCP server integration (Copilot engine) gh aw init --no-skill # Skip dispatcher skill creation -gh aw init --no-agent # Skip custom agent creation +gh aw init --no-agent # Skip custom agent creation (Copilot engine) gh aw init --codespaces # Configure Codespaces for current repo only gh aw init --codespaces=repo1,repo2 # Configure Codespaces with additional repos gh aw init --completions # Install shell completions