Skip to content
Merged
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
16 changes: 11 additions & 5 deletions docs/src/content/docs/setup/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ There are hundreds of other ways to use GitHub Agentic Workflows, which you can

Before installing, ensure you have:

- ✅ **AI Account** - a GitHub Copilot, Anthropic Claude or OpenAI Codex subscription
- ✅ **AI Account** - You need one of the following:
- [GitHub Copilot](https://github.com/features/copilot) subscription
- [Anthropic Claude](https://www.anthropic.com/) API key (recommended for simple setup)
- [OpenAI Codex](https://openai.com/api/) API key
- ✅ **GitHub Repository** - a GitHub repository you are a maintainer on
- ✅ **GitHub Actions** enabled in your repository
- ✅ **GitHub CLI** (`gh`) - A command-line tool for GitHub. [Install here](https://cli.github.com) v2.0.0+ and authenticate with `gh auth login`
Expand Down Expand Up @@ -46,11 +49,14 @@ From your repository root run:
gh aw add githubnext/agentics/daily-repo-status
```

This will take you through an interactive process to
This will take you through an interactive process to:

1. Select an AI Engine to use
2. Add the workflow and set up required secrets
3. Trigger an initial run of the workflow
1. **Select an AI Engine** - You'll be prompted to choose between Claude, Copilot, or Codex
2. **Add the workflow** - Configure your first agentic workflow and set up required secrets
3. **Trigger an initial run** - Start the workflow immediately to see it in action

> [!TIP]
> Don't have a Copilot subscription? No problem! Claude and Codex work just as well for most workflows. Just select your preferred engine when prompted and follow the setup instructions for your API key.

Once your initial run is complete, a new issue will be created in your repository with a "repo status report". The report will be automatically generated by the AI based on recent activity in your repository, including issues, PRs, discussions, releases, and code changes. It will analyze:

Expand Down