Getting started

This tutorial helps a new contributor or user get the repository running locally and run the primary scripts (a small starred-repository scanner and recommender) so you can inspect results quickly.

Audience: new contributors and users (novice-to-intermediate developers)

What you’ll achieve

Prerequisites

Install steps

  1. Clone the repository
git clone https://github.com/MauGx3/ai-tools.git
cd ai-tools
  1. Create and activate a virtual environment (recommended)
python -m venv .venv
source .venv/bin/activate.fish
  1. Install Python dependencies

The repository keeps Python requirements for scripts inside scripts/requirements.txt.

pip install -r scripts/requirements.txt

Run the scanner (quick smoke test)

This project contains example scripts under scripts/.

python scripts/scan_starred_repos.py --help
# or
python scripts/repo_recommender.py --help

Expectations

Troubleshooting

Next steps