reps CLI
Workflow
- Add the repository (if not already added).
- (Optional) Check configured repos with
reps list. - Ask a question with
reps ask.
Commands
Add a git repository:
reps add https://github.com/owner/repo -n short-name
Add a local directory:
reps add /absolute/path/to/project -n short-name
-b branch to specify a branch (default: main). -g for global scope.
List configured repositories:
reps list
Ask a question about a repository:
reps ask -r short-name -q "How does the routing system work?"
-m provider/model to override the AI model.
Delete a repository:
reps delete short-name
-g for global scope.
Configure the default AI model:
reps config model provider/model-name
-g for global scope.
Notes
- Repos are cloned lazily on first
reps ask, not onreps add. - Names must be alphanumeric (plus
.,-,_), max 64 chars. - Project-scoped config (
.reps/) takes priority over global (~/.reps/). - If
repsis not found, install withbun install -g https://github.com/AaLexUser/RepoScout.
