For an overview of all available workflows, see the main README.
Intelligent research assistant for your repository
The Repo Ask workflow provides accurate, well-researched answers to questions about your codebase, features, documentation, or any repository-related topics by leveraging web search, repository analysis, and bash commands.
# Install the 'gh aw' extension
gh extension install github/gh-aw
# Add the workflow to your repository
gh aw add-wizard githubnext/agentics/repo-askThis walks you through adding the workflow to your repository.
graph LR
A[/repo-ask Question] --> B[Analyze Repository]
B --> C[Search Codebase]
C --> D[Research Online]
D --> E[Compose Answer]
E --> F[Post Comment]
The workflow searches for relevant documentation online, looks up technical information, and runs repository analysis commands to answer questions.
This workflow triggers from issue or PR comments - you cannot start it manually.
Trigger on any issue or PR:
/repo-ask How does the authentication system work in this project?
Example commands:
/repo-ask Has anyone reported similar issues in the past?
/repo-ask What are the testing requirements for this type of change?
/repo-ask How does this PR affect the existing authentication flow?
/repo-ask What's the best way to test this feature locally?
This workflow requires no configuration and works out of the box. You can customize research behavior and response format.
After editing run gh aw compile to update the workflow and commit all changes to the default branch.
- Review research findings and answers provided
- Ask follow-up questions or request clarification
- Validate technical recommendations before implementing