Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 1.92 KB

File metadata and controls

65 lines (43 loc) · 1.92 KB

🔍 Repo Ask

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.

Installation

# Install the 'gh aw' extension
gh extension install github/gh-aw

# Add the workflow to your repository
gh aw add-wizard githubnext/agentics/repo-ask

This walks you through adding the workflow to your repository.

How It Works

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]
Loading

The workflow searches for relevant documentation online, looks up technical information, and runs repository analysis commands to answer questions.

Usage

This workflow triggers from issue or PR comments - you cannot start it manually.

Usage as a General-Purpose Assistant

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?

Configuration

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.

Human in the Loop

  • Review research findings and answers provided
  • Ask follow-up questions or request clarification
  • Validate technical recommendations before implementing