Skip to content

Implemented the MVP model#2

Merged
kubrickcode merged 4 commits into
mainfrom
develop/shlee/1
Oct 5, 2025
Merged

Implemented the MVP model#2
kubrickcode merged 4 commits into
mainfrom
develop/shlee/1

Conversation

@kubrickcode
Copy link
Copy Markdown
Owner

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

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
@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello @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

  • GitHub Extension MVP: Implemented the core functionality for a Chrome extension that displays GitHub Project statuses on issue pages, including PAT input, GraphQL requests, and UI badge injection.
  • AI Agent Configuration: Introduced a suite of configuration files for an AI agent system (.claude/agents and .claude/commands), defining roles for various specialists (e.g., backend architect, code reviewer, GraphQL architect) and utility commands (e.g., commit message generation, handover summaries).
  • Development Environment Setup: Established a new TypeScript-based development environment with package.json, tsconfig.json, yarn.lock, and justfile scripts for building, watching, cleaning, and type-checking.
  • Documentation: Added a comprehensive README.md detailing the extension's features, installation, usage, development workflow, and technical specifics.
  • Git Ignore Simplification: Streamlined the .gitignore file, removing numerous specific entries and focusing on common build artifacts and logs.
Ignored Files
  • Ignored by pattern: .gemini/** (2)
    • .gemini/config.yaml
    • .gemini/styleguide.md
Using Gemini Code Assist

The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.

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

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Comment thread package.json
Comment thread src/background.ts
Comment thread src/background.ts
Comment thread src/content.ts
Comment thread src/content.ts
Comment thread src/popup.ts
@kubrickcode kubrickcode added the feature New feature label Oct 5, 2025
@kubrickcode kubrickcode merged commit 9c84a24 into main Oct 5, 2025
1 check passed
@kubrickcode kubrickcode deleted the develop/shlee/1 branch October 6, 2025 06:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

feature New feature

Projects

None yet

Development

Successfully merging this pull request may close these issues.

MVP development

1 participant