A command-line tool built to obtain in-depth, actionable information about GitHub repositories that is often challenging to decipher manually.
Note
You should have Python 3+ installed before using this tool. Download from python.org.
Check out the examples and read the usage instructions to start using this tool.
- Usage Instructions
- Configuration
- Command Structure
- Error Handling
- Example Run
- Contributing
- Code of Conduct
- License
- Author
-
Open Terminal/Command Prompt.
-
Install the Tool:
pip install gh-echo
-
Verify Installation: To check if the tool was installed correctly, run:
gh-echo --version
If successful, this will display the version of the tool.
-
View Available Commands: To view the commands and their descriptions:
gh-echo --help
This tool uses a configuration file named .github-echo.toml
located in your home directory. The file allows you to set default values for various options, such as the LLM to use, token usage, and output file paths.
To generate the .github-echo.toml
configuration file, use the following command:
gh-echo init
This will create the configuration file at your home directory. The configuration file will look like this:
[settings]
model = "gemini"
token_usage = true
[api_keys]
# google_gemini_api_key=''
# github_api_token=''
# groq_api_key=''
- model: The default LLM to use (options:
gemini
,groq
). - token_usage: A boolean flag indicating whether to track token usage.
To use Gemini or Groq, you'll need API keys. You can obtain them from the following sources:
- Gemini API Key: Google Gemini API
- Groq API Key: Groq API
Make sure to replace YOUR_GEMINI_API_KEY
and YOUR_GROQ_API_KEY
in the configuration file with your actual API keys. If you want to use the GitHub API, you'll also need a GitHub API token. You can generate one here.
Add your keys to the api_keys
section in the .github-echo.toml
file. You can also choose to provide them as command-line options.
To remove the .github-echo.toml
configuration file from your home directory, use the following command:
gh-echo remove-config
The general command structure for the tool is as follows:
gh-echo [OPTIONS] COMMAND [ARGS]...
You can see a list of available commands by running:
gh-echo --help
Command | Description | Example Command |
---|---|---|
analyze |
Analyze a GitHub repository and optionally output the results to a file. | gh-echo analyze https://github.com/username/repository -o result.md |
init |
Create the .github-echo.toml config file in the user's home directory. |
gh-echo init |
remove-config |
Remove the .github-echo.toml configuration file from the user's home directory. |
gh-echo remove-config |
The analyze
command analyzes a specified GitHub repository and generates insights. You can configure various options like model choice, temperature setting, and whether to track token usage.
gh-echo analyze [OPTIONS] GITHUB_REPOSITORY_URL
Argument | Description | Required |
---|---|---|
GITHUB_REPOSITORY_URL |
The URL of the GitHub repository to analyze. | Yes |
Option | Description | Default |
---|---|---|
-m, --model |
Choose the LLM to generate insights (gemini or groq ). |
gemini |
-t, --model-temperature |
Set the temperature for the model (ranges from 0.0 to 1.0 ). |
0.5 |
--show-token-usage |
Flag to print token usage during the process. | False |
-o, --output-file |
Specify an output file path to save the results. Could be an absolute or a relative path. | None |
gh-echo analyze https://github.com/AryanK1511/github-echo -o result.md -t 0.5 -m gemini --show-token-usage
If you encounter errors, the tool will print relevant messages to the console. For instance, missing configuration files will trigger a warning, and exceptions during the analysis process will be handled and displayed in the console.
Let's walk through an example of using the analyze
command:
-
First, create the configuration file:
gh-echo init
-
Next, use the
analyze
command with the desired options:gh-echo analyze https://github.com/AryanK1511/github-echo -o result.md -t 0.5 -m gemini --show-token-usage
-
This will analyze the specified GitHub repository, use the Gemini model with a temperature of 0.5, and save the results to
result.md
.
This tool is designed to help you easily analyze GitHub repositories and generate insights. By configuring the .github-echo.toml
file and using the appropriate command-line options, you can customize the analysis process to suit your needs.
For more information:
For contributions, please refer to the CONTRIBUTING file.
Please read and adhere to our CODE_OF_CONDUCT.
This project is licensed under the MIT License - see the LICENSE file for details.