Implemented the MVP model#2
Conversation
Basically, it receives a GitHub pat with permission from the extension input, saves it, and then makes a graphql request accordingly to display the status. fix #1
d9d4524 to
a86d23b
Compare
Summary of ChangesHello @kubrickcode, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request delivers the Minimum Viable Product (MVP) for a Chrome extension designed to enhance the GitHub issue tracking experience by displaying project statuses directly on issue list pages. The extension securely handles GitHub Personal Access Tokens (PATs) to query the GitHub GraphQL API for project item statuses and visually injects color-coded badges next to issue titles. Beyond the extension's core logic, the PR also sets up a robust TypeScript development environment, includes detailed user and developer documentation, and integrates configurations for an AI agent system, suggesting a broader tooling initiative alongside the extension's development. Highlights
Ignored Files
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a Chrome extension for viewing GitHub project statuses. The overall structure is sound, utilizing a background script for API calls, a content script for DOM manipulation, and a popup for configuration. The use of TypeScript with strict mode is commendable. My review focuses on enhancing security, performance, and maintainability. Key suggestions include using chrome.storage.local for storing the sensitive Personal Access Token, improving the performance of the content script's DOM observation, and increasing type safety and build script robustness.
Basically, it receives a GitHub pat with permission from the extension input, saves it, and then makes a graphql request accordingly to display the status.
fix #1