Skip to content

fix(docs): align homepage feature button with integrations page#496

Merged
jdx merged 1 commit intomainfrom
fix/any-language-button-493
Feb 15, 2026
Merged

fix(docs): align homepage feature button with integrations page#496
jdx merged 1 commit intomainfrom
fix/any-language-button-493

Conversation

@jdx
Copy link
Copy Markdown
Owner

@jdx jdx commented Feb 15, 2026

Summary

  • Renamed the "Any Language" homepage feature button to "Integrations" with an accurate tooltip description
  • The previous tooltip described language-agnostic scripting (which matches /cli/scripts) but linked to /spec/integrations (framework integrations like clap)
  • Now the button label, tooltip, and link target are all consistent

Fixes #493

Test plan

  • Verified fix locally with VitePress dev server + Playwright
  • Button now reads "Integrations" with tooltip "Framework Integrations"
  • Link still navigates to /spec/integrations
  • All existing tests pass

🤖 Generated with Claude Code

The "Any Language" button's tooltip described script usage but linked
to the Integrations page, which covers framework integrations like clap.
Renamed to "Integrations" with a matching description.

Fixes #493

Co-Authored-By: Claude Opus 4.6 <[email protected]>
Copilot AI review requested due to automatic review settings February 15, 2026 13:10
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @jdx, 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 improves the clarity and consistency of the documentation homepage by updating a key navigation element. It addresses a discrepancy where a feature button's label and tooltip did not accurately represent the content of its linked page. The changes ensure that users are now correctly guided to information about framework integrations, enhancing the overall user experience.

Highlights

  • Homepage Button Renaming: The 'Any Language' feature button on the homepage was renamed to 'Integrations' to accurately reflect the content of its linked page.
  • Tooltip Content Update: The tooltip description for the button was updated from 'Language Agnostic' scripting to 'Framework Integrations' to match the new button label and the /spec/integrations page.
  • Improved Consistency: Ensured consistency between the button's label, its tooltip, and the target link, resolving a previous mismatch and enhancing user navigation.
Changelog
  • docs/.vitepress/theme/UsageHero.vue
    • Renamed the 'Any Language' button text to 'Integrations'.
    • Updated the button's tooltip heading from 'Language Agnostic' to 'Framework Integrations'.
    • Revised the tooltip's body text to describe framework integrations instead of language-agnostic scripting.
Activity
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
Contributor

@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 correctly aligns the homepage feature button with the integrations page by updating its label and tooltip. The change improves clarity and consistency for users. I have one suggestion to further improve the readability of the new tooltip text.

<strong>Language Agnostic</strong>
<p>Use with bash scripts or integrate with CLIs written in any language via the usage CLI.</p>
<strong>Framework Integrations</strong>
<p>Generate usage specs from CLI frameworks like clap, with more integrations coming soon.</p>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

To improve readability and visually distinguish clap as a framework name, it's good practice to wrap it in <code> tags. This would also make the styling consistent with how clap is presented on the integrations page.

              <p>Generate usage specs from CLI frameworks like <code>clap</code>, with more integrations coming soon.</p>

@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 15, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 77.81%. Comparing base (1a9a880) to head (afa5610).
⚠️ Report is 7 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #496      +/-   ##
==========================================
+ Coverage   70.71%   77.81%   +7.10%     
==========================================
  Files          47       47              
  Lines        6716     6595     -121     
  Branches     6716     6595     -121     
==========================================
+ Hits         4749     5132     +383     
+ Misses       1277     1105     -172     
+ Partials      690      358     -332     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Copy Markdown
Contributor

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 fixes an inconsistency in the homepage where the "Any Language" feature button's tooltip described language-agnostic scripting but linked to the framework integrations page. The button has been renamed to "Integrations" with an updated tooltip that accurately describes generating usage specs from CLI frameworks like clap, ensuring the button label, tooltip, and link destination are now all aligned.

Changes:

  • Renamed homepage feature button from "Any Language" to "Integrations"
  • Updated tooltip title from "Language Agnostic" to "Framework Integrations"
  • Revised tooltip description to accurately reflect the framework integrations page content

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

@jdx jdx merged commit f973fd8 into main Feb 15, 2026
17 checks passed
@jdx jdx deleted the fix/any-language-button-493 branch February 15, 2026 13:13
jdx pushed a commit that referenced this pull request Feb 16, 2026
### 🚀 Features

- add Cobra (Go) integration for generating usage specs by
[@jdx](https://github.com/jdx) in
[#498](#498)
- Add support for nushell by [@abusch](https://github.com/abusch) in
[#485](#485)

### 🐛 Bug Fixes

- **(docs)** align homepage feature button with integrations page by
[@jdx](https://github.com/jdx) in
[#496](#496)

### 📚 Documentation

- add integrations directory with framework tracker by
[@jdx](https://github.com/jdx) in
[#497](#497)
- add integrations directory with framework tracker by
[@jdx](https://github.com/jdx) in
[#499](#499)

### 🔍 Other Changes

- mise up by [@muzimuzhi](https://github.com/muzimuzhi) in
[#492](#492)

### 📦️ Dependency Updates

- update actions/checkout digest to de0fac2 by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#494](#494)
- update taiki-e/upload-rust-binary-action digest to f391289 by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#495](#495)
- lock file maintenance by
[@renovate[bot]](https://github.com/renovate[bot]) in
[#500](#500)

### New Contributors

- @abusch made their first contribution in
[#485](#485)
tmeijn pushed a commit to tmeijn/dotfiles that referenced this pull request Feb 17, 2026
This MR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [usage](https://github.com/jdx/usage) | minor | `2.16.2` → `2.17.0` |

MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot).

**Proposed changes to behavior should be submitted there as MRs.**

---

### Release Notes

<details>
<summary>jdx/usage (usage)</summary>

### [`v2.17.0`](https://github.com/jdx/usage/blob/HEAD/CHANGELOG.md#2170---2026-02-16)

[Compare Source](jdx/usage@v2.16.2...v2.17.0)

##### 🚀 Features

- add Cobra (Go) integration for generating usage specs by [@&#8203;jdx](https://github.com/jdx) in [#&#8203;498](jdx/usage#498)
- Add support for nushell by [@&#8203;abusch](https://github.com/abusch) in [#&#8203;485](jdx/usage#485)

##### 🐛 Bug Fixes

- **(docs)** align homepage feature button with integrations page by [@&#8203;jdx](https://github.com/jdx) in [#&#8203;496](jdx/usage#496)

##### 📚 Documentation

- add integrations directory with framework tracker by [@&#8203;jdx](https://github.com/jdx) in [#&#8203;497](jdx/usage#497)
- add integrations directory with framework tracker by [@&#8203;jdx](https://github.com/jdx) in [#&#8203;499](jdx/usage#499)

##### 🔍 Other Changes

- mise up by [@&#8203;muzimuzhi](https://github.com/muzimuzhi) in [#&#8203;492](jdx/usage#492)

##### 📦️ Dependency Updates

- update actions/checkout digest to [`de0fac2`](jdx/usage@de0fac2) by [@&#8203;renovate\[bot\]](https://github.com/renovate\[bot]) in [#&#8203;494](jdx/usage#494)
- update taiki-e/upload-rust-binary-action digest to [`f391289`](jdx/usage@f391289) by [@&#8203;renovate\[bot\]](https://github.com/renovate\[bot]) in [#&#8203;495](jdx/usage#495)
- lock file maintenance by [@&#8203;renovate\[bot\]](https://github.com/renovate\[bot]) in [#&#8203;500](jdx/usage#500)

##### New Contributors

- [@&#8203;abusch](https://github.com/abusch) made their first contribution in [#&#8203;485](jdx/usage#485)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this MR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box

---

This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNS4yIiwidXBkYXRlZEluVmVyIjoiNDMuMTUuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiUmVub3ZhdGUgQm90IiwiYXV0b21hdGlvbjpib3QtYXV0aG9yZWQiLCJkZXBlbmRlbmN5LXR5cGU6Om1pbm9yIl19-->
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.

'Any Language' feature button on homepage

2 participants