In this guide you will add an existing, pre-baked workflow to an existing GitHub repository where you are a maintainer - the automated Daily Repo Status Report, running in GitHub Actions.
Install the extension, add a workflow, and trigger a run from the CLI
The aim here is to become familiar with automated AI: to install something that will run automatically, recurringly, in the context of your repository.
gh aw add-wizard githubnext/agentics/daily-repo-status
add-wizard accepts workflow references in <owner>/<repo>/<workflow-name> format. In this example, githubnext/agentics/daily-repo-status references the daily-repo-status workflow hosted in the public githubnext/agentics examples repository.
This will take you through an interactive process to:
Under Permissions → Account permissions, set Copilot Requests to Read, then generate the token.
Add it as a repository secret from your repository root with gh secret set COPILOT_GITHUB_TOKEN < /path/to/token.txt, or use the GitHub UI. See Authentication for more detail.
Add it as a repository secret from your repository root with gh secret set ANTHROPIC_API_KEY < /path/to/key.txt, or use the GitHub UI. See Authentication for more detail.
Once your initial run is complete, a new issue will be created in your repository with a “Daily Repo Report”. The report will be automatically generated and will analyze:
With GitHub Agentic Workflows, you are in control! Your repository automation is fully customizable. You should shape your repo automation to match your priorities and your needs.
To customize it now:
Open the workflow markdown file located at .github/workflows/daily-repo-status.md in your repository.
Edit the section “What to include” to list things you are having trouble with regularly in your repository: your issue backlog, your CI setup, your testing, the performance of your software, your roadmap. Any or all of these, or anything else you want to improve. You can also customize the style and process sections to guide the coding agent’s behavior.
If you changed the frontmatter (the configuration block between the --- markers at the top of the file), regenerate the compiled workflow by running:
gh aw compile
For example, set your engine in frontmatter:
---
engine: claude
---
Commit and push to your repository.
Optionally trigger another run by running:
gh aw run daily-repo-status
After waiting for the workflow to complete, check the new issue created with your updated report!