Skip to content

update showcase#5

Merged
wangxingjun778 merged 1 commit intomainfrom
dev
Feb 12, 2026
Merged

update showcase#5
wangxingjun778 merged 1 commit intomainfrom
dev

Conversation

@wangxingjun778
Copy link
Collaborator

No description provided.

@wangxingjun778 wangxingjun778 merged commit 462e2ef into main Feb 12, 2026
1 check passed
@gemini-code-assist
Copy link

Summary of Changes

Hello @wangxingjun778, 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 refactors the Sirchmunk showcase section by integrating the detailed descriptions and demonstrations of MCP integration and the Web UI directly into the main showcase landing page. This change streamlines the user experience by presenting all key showcase information on a single page, eliminating the need for separate sub-pages and simplifying navigation.

Highlights

  • Content Consolidation: The detailed showcase content for MCP integration and the Web UI has been moved from separate pages directly into the main showcase landing page.
  • Page Removal: Dedicated sub-pages for MCP integration and Web UI (both English and Chinese versions) have been removed to streamline the site structure.
  • Description Updates: The main showcase page's title, description, and hero text have been updated to reflect the consolidated content and provide a clearer overview of Sirchmunk's capabilities.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • content/showcase/_index.md
    • Updated the page description to reflect the new content structure.
    • Modified the hero section text for better clarity.
    • Replaced the 'collection' block with two 'markdown' blocks to embed detailed information and GIFs for MCP integration and Web UI directly.
  • content/showcase/_index.zh.md
    • Updated the Chinese page description to reflect the new content structure.
    • Modified the Chinese hero section text for better clarity.
    • Replaced the 'collection' block with two 'markdown' blocks to embed detailed Chinese information and GIFs for MCP integration and Web UI directly.
  • content/showcase/mcp-integration/index.md
    • Removed the dedicated page for MCP integration showcase.
  • content/showcase/mcp-integration/index.zh.md
    • Removed the dedicated Chinese page for MCP integration showcase.
  • content/showcase/web-ui/index.md
    • Removed the dedicated page for Web UI showcase.
  • content/showcase/web-ui/index.zh.md
    • Removed the dedicated Chinese page for Web UI showcase.
Activity
  • No human activity has been recorded on this pull request yet.
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

This pull request refactors the showcase page by consolidating content from individual showcase items into the main index page. This is a good change that simplifies the site structure and makes the content more accessible. The implementation is solid, but I've identified a minor issue with inline CSS styling for images, which could be improved for better maintainability by using a shared CSS class.

Comment on lines +30 to +41
<img src="/media/Sirchmunk_mcp_cursor.gif" alt="Sirchmunk MCP integration in Cursor IDE" style="width:100%; border-radius:8px; margin:1rem 0;" />
design:
spacing:
padding: ['3rem', '1rem', '3rem', '1rem']
- block: markdown
content:
title: "Web UI — Real-Time Chat & Search"
subtitle: "A Full-Featured Interface for Intelligent Document Search"
text: |
Sirchmunk's Web UI provides a chat-based interface for intelligent document search. Ask questions in natural language and receive real-time streaming answers with inline search logs, source citations, and evidence highlights.

<img src="/media/Sirchmunk_Web.gif" alt="Sirchmunk Web UI demo" style="width:100%; border-radius:8px; margin:1rem 0;" />

Choose a reason for hiding this comment

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

medium

The <img> tags on lines 30 and 41 use identical inline styles. To improve maintainability and ensure consistency, it's better to extract these styles into a shared CSS class.

For example, you could define a class in your stylesheet:

.showcase-image {
  width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
}

Then apply it to your images:

<img src="..." alt="..." class="showcase-image" />

Comment on lines +30 to +41
<img src="/media/Sirchmunk_mcp_cursor.gif" alt="Sirchmunk MCP 在 Cursor IDE 中的集成" style="width:100%; border-radius:8px; margin:1rem 0;" />
design:
spacing:
padding: ['3rem', '1rem', '3rem', '1rem']
- block: markdown
content:
title: "Web UI — 实时聊天与搜索"
subtitle: "功能完善的智能文档搜索界面"
text: |
Sirchmunk 的 Web UI 提供了基于对话的智能文档搜索界面。用户可以使用自然语言提问,实时获得流式回答,并附带内嵌搜索日志、来源引用和证据高亮。

<img src="/media/Sirchmunk_Web.gif" alt="Sirchmunk Web UI 演示" style="width:100%; border-radius:8px; margin:1rem 0;" />

Choose a reason for hiding this comment

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

medium

Similar to the English version of this file, the <img> tags on lines 30 and 41 use identical inline styles. It's recommended to extract these styles into a shared CSS class to improve maintainability and ensure consistency across the site.

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.

1 participant