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
1 change: 1 addition & 0 deletions docs/src/content/docs/labs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ These are experimental agentic workflows used by the GitHub Next team to learn,
| [Multi-Device Docs Tester](https://github.com/githubnext/gh-aw/blob/main/.github/workflows/daily-multi-device-docs-tester.md) | claude | [![Multi-Device Docs Tester](https://github.com/githubnext/gh-aw/actions/workflows/daily-multi-device-docs-tester.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/daily-multi-device-docs-tester.lock.yml) | - | - |
| [Organization Health Report](https://github.com/githubnext/gh-aw/blob/main/.github/workflows/org-health-report.md) | copilot | [![Organization Health Report](https://github.com/githubnext/gh-aw/actions/workflows/org-health-report.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/org-health-report.lock.yml) | - | - |
| [Plan Command](https://github.com/githubnext/gh-aw/blob/main/.github/workflows/plan.md) | copilot | [![Plan Command](https://github.com/githubnext/gh-aw/actions/workflows/plan.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/plan.lock.yml) | - | - |
| [Playground Assign to Agent](https://github.com/githubnext/gh-aw/blob/main/.github/workflows/playground-assign-to-agent.md) | copilot | [![Playground Assign to Agent](https://github.com/githubnext/gh-aw/actions/workflows/playground-assign-to-agent.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/playground-assign-to-agent.lock.yml) | - | - |
| [Playground: Org project update issue](https://github.com/githubnext/gh-aw/blob/main/.github/workflows/playground-org-project-update-issue.md) | copilot | [![Playground: Org project update issue](https://github.com/githubnext/gh-aw/actions/workflows/playground-org-project-update-issue.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/playground-org-project-update-issue.lock.yml) | - | - |
| [Poem Bot - A Creative Agentic Workflow](https://github.com/githubnext/gh-aw/blob/main/.github/workflows/poem-bot.md) | copilot | [![Poem Bot - A Creative Agentic Workflow](https://github.com/githubnext/gh-aw/actions/workflows/poem-bot.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/poem-bot.lock.yml) | - | - |
| [PR Nitpick Reviewer 🔍](https://github.com/githubnext/gh-aw/blob/main/.github/workflows/pr-nitpick-reviewer.md) | copilot | [![PR Nitpick Reviewer 🔍](https://github.com/githubnext/gh-aw/actions/workflows/pr-nitpick-reviewer.lock.yml/badge.svg)](https://github.com/githubnext/gh-aw/actions/workflows/pr-nitpick-reviewer.lock.yml) | - | - |
Expand Down
11 changes: 9 additions & 2 deletions docs/src/content/docs/setup/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,17 @@ Commands are organized by workflow lifecycle: creating, building, testing, monit
Initialize repository for agentic workflows. Configures `.gitattributes`, Copilot instructions, prompt files, and logs `.gitignore`. Enables MCP server integration by default (use `--no-mcp` to skip).

```bash wrap
gh aw init # With MCP integration (default)
gh aw init --no-mcp # Skip MCP server integration
gh aw init # With MCP integration (default)
gh aw init --no-mcp # Skip MCP server integration
gh aw init --tokens --engine copilot # Check Copilot token configuration
gh aw init --codespaces # Configure devcontainer for current repo
gh aw init --codespaces repo1,repo2 # Configure devcontainer for additional repos
gh aw init --campaign # Enable campaign functionality
gh aw init --completions # Install shell completions
```

**Options:** `--no-mcp`, `--tokens`, `--engine` (copilot, claude, codex), `--codespaces`, `--campaign`, `--completions`

#### `add`

Add workflows from The Agentics collection or other repositories to `.github/workflows`.
Expand Down