You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: The core blueprint mandates "granular inline GitHub comments with direct feedback". Currently, the Finding model stores fileLocation and codeSnippet, but lacks exact line number tracking. The Octokit API requires precise line numbers to post review comments directly on specific lines of code in a pull request diff.
Proposed Solution:
Update the Prisma schema for the Finding model to include lineStart Int? and lineEnd Int?.
Update the LLM extraction prompt in ArmorIQScanner to output the exact line numbers alongside the code snippet.
Description: The core blueprint mandates "granular inline GitHub comments with direct feedback". Currently, the
Findingmodel storesfileLocationandcodeSnippet, but lacks exact line number tracking. The Octokit API requires precise line numbers to post review comments directly on specific lines of code in a pull request diff.Proposed Solution:
Findingmodel to includelineStart Int?andlineEnd Int?.ArmorIQScannerto output the exact line numbers alongside the code snippet.