Skip to main content

Repositories

You can ask questions about entire GitHub repositories, both Public and Private. Adrenaline processes code by building up an index of your entire codebase.

Usage Tips

Adding files to context

You can search for files and directly add them to context - Adrenaline will look at the files you give us first, and then explore the rest of the codebase, if necessary for your answer.

Here are some tips for getting the most out of Repository questions:

Move long errors to snippets:

Avoid pasting large error logs directly into your query. Instead, use the Add Snippet feature. This improves readability and allows for easier debugging.

  • Example: "Why is this function not running properly in my repository?" [Attach the stacktrace using 'Add Snippet' feature]

Mention specific methods/classes:

If your question targets a particular method or class, be specific about its name.

  • Example: "Why isn't the 'initiatePayment' method in the 'payment.java' file working in my XYZ repository?"

Describe expected behavior:

If your code isn't working as intended, explain what you expected the outcome to be.

  • Example: "Why isn't the function sortArray in arrayFunctions.js sorting the array in ascending order?"