正式なドキュメントは英語版であり、この日本語訳はAI支援翻訳により作成された参考用のものです。日本語訳の一部の内容は人間によるレビューがまだ行われていないため、翻訳のタイミングにより英語版との間に差異が生じることがあります。最新かつ正確な情報については、英語版をご参照ください。

Set up AI coding agents with the Orbit skill

  • Tier: Free, Premium, Ultimate
  • Offering: GitLab.com, GitLab Self-Managed, GitLab Dedicated
  • Status: Experiment

The Orbit skill gives AI coding agents structured guidance for querying the GitLab Knowledge Graph. It includes:

  • Query recipes - paste-ready JSON bodies for common questions (blast radius, pipeline history, contributor patterns).
  • DSL reference - the full query language so agents compose valid queries on the first attempt.
  • Troubleshooting - exit codes, empty-result diagnostics, and common pitfalls.
  • Repository map helpers - scripts that summarize codebase structure from a local checkout or from Orbit Remote.

The skill works with both Orbit Remote and Orbit Local.

Prerequisites

  • GitLab CLI (glab) v1.95.0 or later, which introduced glab skills install. If the subcommand is not recognized, update glab first.

Install the skill

Install globally (available to every project):

glab skills install --global orbit

This installs the skill to ~/.agents/skills/orbit.

Install for the current project only:

glab skills install orbit

This installs the skill to .agents/skills/orbit in the project root.

If the skill is already installed, glab reports that SKILL.md exists and suggests --force to overwrite.

Update the skill

To update to the latest version, re-run the install command with --force:

glab skills install --global --force orbit