Skip to content

Conversation

@exKAZUu
Copy link
Member

@exKAZUu exKAZUu commented Dec 10, 2025

No description provided.

Copilot AI review requested due to automatic review settings December 10, 2025 17:04
@gemini-code-assist
Copy link

Summary of Changes

Hello @exKAZUu, 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 integrates 'willbooster' practices into the repository by introducing a new, consistent guideline for test debugging across several documentation files. It also streamlines project configuration by removing specific SQLite file patterns from ignore lists and updates two development dependencies to their latest patch versions, ensuring a more robust and up-to-date development environment.

Highlights

  • Documentation Update: A new guideline has been added to multiple documentation files, instructing to gather debug information (logging and screenshots) before attempting to fix tests.
  • Configuration Cleanup: The *.sqlite3* entry has been removed from both .gitignore and .prettierignore files within the packages/wb directory.
  • Dependency Updates: The yarn.lock file has been updated to bump baseline-browser-mapping from version 2.9.0 to 2.9.2 and update-browserslist-db from 1.2.1 to 1.2.2.
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

@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

このプルリクエストは、willboosterifyによるリポジトリの自動更新のようです。いくつかのドキュメントファイルに新しい指示が追加され、.gitignore.prettierignoreからSQLiteファイルの無視設定が削除されています。また、yarn.lockファイルが更新され、依存関係がアップデートされています。全体的に問題ない変更ですが、ignoreファイルからSQLiteのパターンが削除された点について、意図した変更かどうか確認が必要です。データベースファイルをバージョン管理に含めることは、一般的に推奨されません。

temp/
tmp/
*.sqlite3*

Choose a reason for hiding this comment

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

high

*.sqlite3*.gitignore から削除されています。これにより、SQLiteデータベースファイルがGitの追跡対象に含まれるようになります。データベースファイルはサイズが大きくなったり、機密情報を含んだりする可能性があるため、一般的にはバージョン管理に含めるべきではありません。意図した変更でない場合は、このパターンを再度追加することを検討してください。

*.sqlite3*

temp/
tmp/
*.sqlite3*

Choose a reason for hiding this comment

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

medium

*.sqlite3*.prettierignore から削除されています。これにより、PrettierがSQLiteデータベースファイルをフォーマットしようとする可能性があります。これは不要な動作であり、バイナリファイルをフォーマットしようとするとエラーが発生する可能性もあります。意図した変更でない場合は、このパターンを再度追加することを検討してください。

*.sqlite3*

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR applies willboosterify standardization to the repository, updating dependencies, refining ignore patterns, and enhancing AI agent instructions with a new testing guideline.

  • Dependency updates: baseline-browser-mapping (2.9.0 → 2.9.2) and update-browserslist-db (1.2.1 → 1.2.2)
  • Removed *.sqlite3* pattern from .gitignore and .prettierignore in packages/wb
  • Added new instruction to gather debug information before fixing tests across all AI instruction files

Reviewed changes

Copilot reviewed 6 out of 7 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
yarn.lock Updated checksums for baseline-browser-mapping and update-browserslist-db package versions
packages/wb/.prettierignore Removed sqlite3 pattern from prettier ignore list
packages/wb/.gitignore Removed sqlite3 pattern from git ignore list
GEMINI.md Added instruction to gather debug info before modifying tests
CLAUDE.md Added instruction to gather debug info before modifying tests
AGENTS.md Added instruction to gather debug info before modifying tests
.cursor/rules/general.mdc Added instruction to gather debug info before modifying tests

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@willbooster/
dist/
temp/
tmp/
Copy link

Copilot AI Dec 10, 2025

Choose a reason for hiding this comment

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

Removing *.sqlite3* from .prettierignore may cause SQLite database files to be formatted by prettier, which could corrupt binary database files. The codebase uses several sqlite3 files (e.g., prod.sqlite3, restored.sqlite3) in db/ and prisma/ directories. Binary database files should not be formatted. Consider adding back *.sqlite3* or more specific patterns like *.sqlite3 and *.sqlite3-*.

Copilot uses AI. Check for mistakes.
temp/
tmp/
*.sqlite3*

Copy link

Copilot AI Dec 10, 2025

Choose a reason for hiding this comment

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

Removing *.sqlite3* from .gitignore may cause SQLite database files to be tracked by git. The codebase uses several sqlite3 files (e.g., prod.sqlite3, restored.sqlite3) in db/ and prisma/ directories as seen in src/commands/prisma.ts and src/scripts/prismaScripts.ts. These database files should remain ignored to prevent them from being committed to the repository. Consider adding back *.sqlite3* or more specific patterns like *.sqlite3 and *.sqlite3-*.

Suggested change
# Ignore SQLite database files
*.sqlite3
*.sqlite3-*

Copilot uses AI. Check for mistakes.
@exKAZUu exKAZUu merged commit 40a9ff3 into main Dec 11, 2025
10 checks passed
@exKAZUu exKAZUu deleted the wbfy branch December 11, 2025 03:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants