Searches git commit history using a combination of semantic search over mined memories and keyword search over git log. Returns commits and patterns that match your query, ranked by relevance. Requires that stellarion_mine_git_history has been run at least once to populate the semantic index.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | — | Natural language query describing what you are looking for |
since | string | No | — | Time filter (e.g., "3 months ago", "2024-01-01") |
maxResults | number | No | 10 | Maximum number of results to return |
Search git history for commits related to "rate limiting".
Finds commits where rate limiting was added, modified, or fixed — even if the commit message does not literally say "rate limiting".
What authentication-related changes were made in the last 3 months?
Uses since: "3 months ago" to scope the search.
When was the payment retry logic first introduced?
Searches for the earliest commits related to payment retry.
Search for commits that fixed null pointer exceptions in the parser.
Finds commits related to null/nil/None handling in parser code.
Returns a ranked list of results, each containing:
Results combine semantic matches (from mined memories) and keyword matches (from git log), de-duplicated and ranked by relevance.
stellarion_mine_git_history first — without it, only keyword search over git log is availablesince to narrow results when the repository has a long historystellarion_mine_git_history_for_file to first build file-specific context, then search within it