Skip to content

feat(core): support shipping built-in skills with the CLI#16300

Merged
NTaylorMullen merged 2 commits into
mainfrom
ntm/gh.16289
Jan 12, 2026
Merged

feat(core): support shipping built-in skills with the CLI#16300
NTaylorMullen merged 2 commits into
mainfrom
ntm/gh.16289

Conversation

@NTaylorMullen
Copy link
Copy Markdown
Collaborator

@NTaylorMullen NTaylorMullen commented Jan 10, 2026

Summary

This PR enables the Gemini CLI to ship with built-in skills. It updates SkillManager to load skills from the packages/core/src/skills/builtin directory and includes this directory in the core package build.

Details

  • Implements discoverBuiltinSkills in SkillManager to load skills from the package bundle.
  • Updates copy_files.js to ensure the skills/builtin directory is included in the core package build.
  • Marks built-in skills with an isBuiltin flag, allowing them to be filtered in UI.

Related Issues

Fixes #16289

How to Validate

  1. Run npm run build from the root.
  2. Verify that any built-in skills added to packages/core/src/skills/builtin are copied to packages/core/dist/skills/builtin.
  3. Start the CLI and verify built-in skills are loaded by SkillManager.

Pre-Merge Checklist

  • Updated relevant documentation and README (if needed)
  • Added/updated tests (if needed)
  • Noted breaking changes (if any)
  • Validated on required platforms/methods:
    • MacOS
      • npm run
      • npx
      • Docker
      • Podman
      • Seatbelt
    • Windows
      • npm run
      • npx
      • Docker
    • Linux
      • npm run
      • npx
      • Docker

@NTaylorMullen NTaylorMullen requested a review from a team as a code owner January 10, 2026 06:42
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @NTaylorMullen, 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 introduces the capability for the Gemini CLI to ship with pre-packaged, built-in skills. It modifies the skill loading mechanism to include a new discovery process for these skills and updates the build script to ensure they are correctly bundled with the core package. This enhancement streamlines the distribution of essential functionalities directly within the CLI.

Highlights

  • Built-in Skill Discovery: The SkillManager has been updated to discover and load built-in skills from a dedicated packages/core/src/skills/builtin directory within the package bundle.
  • Build Process Integration: The copy_files.js script now ensures that the skills/builtin directory is included in the core package build, making these built-in skills available at runtime.
  • Skill Identification: Discovered built-in skills are now explicitly marked with an isBuiltin flag, which can be used for filtering or special handling in the UI or other parts of the application.
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 introduces support for shipping built-in skills with the Gemini CLI. The changes in SkillManager to discover skills from a new builtin directory are well-implemented and robust, correctly handling cases where the directory might not exist. The accompanying change to the build script copy_files.js correctly copies these skills into the distribution package. The overall implementation is clean, correct, and aligns with the project's existing structure. I have reviewed the changes and found no issues of high or critical severity.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Jan 10, 2026

Size Change: +450 B (0%)

Total Size: 22.3 MB

ℹ️ View Unchanged
Filename Size Change
./bundle/gemini.js 22.3 MB +450 B (0%)
./bundle/sandbox-macos-permissive-closed.sb 1.03 kB 0 B
./bundle/sandbox-macos-permissive-open.sb 890 B 0 B
./bundle/sandbox-macos-permissive-proxied.sb 1.31 kB 0 B
./bundle/sandbox-macos-restrictive-closed.sb 3.29 kB 0 B
./bundle/sandbox-macos-restrictive-open.sb 3.36 kB 0 B
./bundle/sandbox-macos-restrictive-proxied.sb 3.56 kB 0 B

compressed-size-action

@gemini-cli gemini-cli Bot added the area/core Issues related to User Interface, OS Support, Core Functionality label Jan 10, 2026
@NTaylorMullen NTaylorMullen force-pushed the ntm/gh.16289 branch 2 times, most recently from be1b6c9 to 2733d0b Compare January 12, 2026 02:25
- Implemented built-in skill discovery in SkillManager to load skills from the package's 'builtin' directory.
- Updated build scripts (copy_files.js and copy_bundle_assets.js) to ensure built-in skills and their assets are correctly bundled for distribution.
- Refined the pr-creator skill documentation for better readability and consistent formatting.

Fixes #16289
Comment thread packages/core/src/skills/skillManager.test.ts
Comment thread scripts/copy_bundle_assets.js
- Added a test case to SkillManager to verify that built-in skills are correctly discovered and marked with the isBuiltin flag.
- Mocked loadSkillsFromDir in skillManager.test.ts to enable isolated testing of built-in skill loading.

Fixes #16289
@NTaylorMullen NTaylorMullen added this pull request to the merge queue Jan 12, 2026
Merged via the queue into main with commit e9c9dd1 Jan 12, 2026
26 checks passed
@NTaylorMullen NTaylorMullen deleted the ntm/gh.16289 branch January 12, 2026 23:53
theerud pushed a commit to theerud/gemini-cli that referenced this pull request Jan 13, 2026
thacio added a commit to thacio/auditaria that referenced this pull request Jan 24, 2026
kuishou68 pushed a commit to iOfficeAI/gemini-cli-pro that referenced this pull request Feb 27, 2026
@sripasg sripasg added the size/m A medium sized PR label Jun 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/core Issues related to User Interface, OS Support, Core Functionality size/m A medium sized PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Support shipping "built-in" skills with the CLI

3 participants