diff --git a/docs/src/content/docs/labs.mdx b/docs/src/content/docs/labs.mdx index 279b23beab..17252882ad 100644 --- a/docs/src/content/docs/labs.mdx +++ b/docs/src/content/docs/labs.mdx @@ -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) | - | - | diff --git a/docs/src/content/docs/setup/cli.md b/docs/src/content/docs/setup/cli.md index 713102eae3..322e991369 100644 --- a/docs/src/content/docs/setup/cli.md +++ b/docs/src/content/docs/setup/cli.md @@ -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`.