For an overview of all available workflows, see the main README.
Run daily to update a planning issue for the team with current priorities
The Daily Plan workflow reads repository contents and pull request metadata, assesses priorities, and creates or updates planning issues that other workflows can reference for team priorities.
# Install the 'gh aw' extension
gh extension install github/gh-aw
# Add the workflow to your repository
gh aw add-wizard githubnext/agentics/daily-planThis walks you through adding the workflow to your repository.
graph LR
A[Read Repository] --> B[Analyze PRs & Issues]
B --> C[Assess Priorities]
C --> D{Plan Exists?}
D -->|No| E[Create Planning Issue]
D -->|Yes| F[Update Planning Issue]
This workflow requires no configuration and works out of the box. You can customize the planning and report format.
After editing run gh aw compile to update the workflow and commit all changes to the default branch.
You can start a run of this workflow immediately by running:
gh aw run daily-plan