Update README.md#1847
Conversation
Quick mention of Custom GPT update date
There was a problem hiding this comment.
Pull Request Overview
This PR adds an update date to the KH Assistant Custom-GPT mention in the README.md file, indicating when the tool was last updated.
- Adds "(Updated: 28th July 2025)" to the existing KH Assistant promotional text
Comments suppressed due to low confidence (1)
README.md:15
- The update date shows July 28th, 2025, but it is currently July 2025. This future date appears to be incorrect and should be verified or corrected to reflect the actual update date.
🔥 Introducing <a href="https://chatgpt.com/g/g-67df95cd1e0c8191baedfa3179061581-kh-assistant" target="_blank">KH Assistant</a>, our Custom-GPT kube.tf generator to get you going fast, just tell it what you need! 🚀 (Updated: 28th July 2025)
There was a problem hiding this comment.
Summary of Changes
Hello @mysticaltech, 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 focuses on maintaining up-to-date documentation by adding a crucial detail to the README.md. The change provides users with more accurate information regarding the freshness of the 'KH Assistant' Custom GPT, ensuring that the project's documentation remains current and reliable.
Highlights
- Documentation Update: I've updated the
README.mdfile to include a specific update date for the 'KH Assistant' Custom GPT link. This clarifies when the linked resource was last refreshed.
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 in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.
| 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 issue 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 or fill out our survey to provide feedback.
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
-
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. ↩
There was a problem hiding this comment.
Code Review
This pull request adds an update date for the Custom GPT assistant in the README. My feedback focuses on the maintainability of using a hardcoded, specific date. I've suggested using a more general date format (e.g., month and year) to reduce the maintenance burden and prevent the information from becoming stale.
| <hr /> | ||
| <p align="center"> | ||
| 🔥 Introducing <a href="https://chatgpt.com/g/g-67df95cd1e0c8191baedfa3179061581-kh-assistant" target="_blank">KH Assistant</a>, our Custom-GPT kube.tf generator to get you going fast, just tell it what you need! 🚀 | ||
| 🔥 Introducing <a href="https://chatgpt.com/g/g-67df95cd1e0c8191baedfa3179061581-kh-assistant" target="_blank">KH Assistant</a>, our Custom-GPT kube.tf generator to get you going fast, just tell it what you need! 🚀 (Updated: 28th July 2025) |
There was a problem hiding this comment.
While adding an update date is helpful for users, hardcoding a specific date creates a maintenance burden. This date can easily become stale if not updated with every change, potentially misleading users.
A few suggestions to improve this:
- Use a less specific date: Using just the month and year (e.g.,
July 2025) is less likely to become inaccurate and requires fewer updates. - Standardize date format: For technical documentation, it's common to use formats like
YYYY-MM-DDorMonth DD, YYYY. The use of an ordinal suffix like "th" is a bit informal.
Here is a suggestion that uses a more general date, which should be easier to maintain.
| 🔥 Introducing <a href="https://chatgpt.com/g/g-67df95cd1e0c8191baedfa3179061581-kh-assistant" target="_blank">KH Assistant</a>, our Custom-GPT kube.tf generator to get you going fast, just tell it what you need! 🚀 (Updated: 28th July 2025) | |
| 🔥 Introducing <a href="https://chatgpt.com/g/g-67df95cd1e0c8191baedfa3179061581-kh-assistant" target="_blank">KH Assistant</a>, our Custom-GPT kube.tf generator to get you going fast, just tell it what you need! 🚀 (Updated: July 2025) |
Quick mention of Custom GPT update date