issues Search Results · language:Dune language:JavaScript language:JavaScript linked:pr language:JavaScript
Filter by
1.8M results
SSoC26 Issue Proposal: Task-Specific Context Retrieval Ranking
- Component/Target Repository: $repository
- Difficulty: Hard
Motivation
Replace flat string matching with a retrieval algorithm that ...
Hard
SSoC26
In backend/utils/analysisCache.js lines 98-108:
_startSweeper(intervalMs = 60000) {
if (this._sweeper) return;
this._sweeper = setInterval(() = {
const now = Date.now();
for (const [key, ...
In backend/index.js lines 359-368:
try {
const octokit = new Octokit({ auth: process.env.GITHUB_PAT || undefined });
const { data: repoData } = await octokit.rest.repos.get({ owner, repo: repoName ...
In frontend/src/pages/Dashboard.tsx, the handleAnalyze function reads aiSettings.batchSize from localStorage but never
includes it in the request body:
body: JSON.stringify({
repoUrl, company, language, ...
In vscode-extension/src/extension.ts line 117 and api.ts line 29:
const result = await reviewFileContent(fileName, fileContent, apiKey);
If the backend is unreachable or hangs, the fetch call in api.ts ...
In frontend/src/components/SettingsModal.tsx lines 199-217, the type= number input for maxTokens has no min/max
attributes and handleSave does not validate. A user can save negative, zero, or absurdly ...
In frontend/src/utils/exportUtils.ts line 132:
const errData = await response.json().catch(() = ({}));
throw new Error(errData.error || Failed to export HTML report. );
If the backend returns a non-JSON ...
In backend/index.js line 751:
setTimeout(() = {
const set = reviewedShas.get(shaKey);
if (set) { set.delete(headSha); ... }
}, 3600000);
This 1-hour setTimeout has no .unref(), keeping the Node.js ...
In backend/utils/complexityAnalyzer.js line 97:
/^\s*(?:async\s+)?\w+\s*\([^)]*\)\s*\{/g.test(trimmed)
A regex with the g flag retains lastIndex across .test() calls. On alternating calls for different ...
In backend/index.js line 166, the CSRF token cookie is set without the Secure flag:
res.setHeader( Set-Cookie , [sessionCookie, `${CSRF_COOKIE_NAME}=${csrfToken}; HttpOnly=false; SameSite=Strict; Path=/`]); ...

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip! Restrict your search to the title by using the in:title qualifier.