AI Agent Skill
Overview#
glci skill install downloads the glci skill file and installs it for your AI coding agent. The skill teaches the agent how to run pipelines, debug jobs, and manage configuration.
Supported agents: Claude Code, Cursor, Windsurf, VS Code (Copilot), GitLab Duo, Codex (OpenAI), OpenCode.
Interactive installation#
glci skill install
Prompts for agent selection (multi-select) and scope (project or global). The skill file is fetched from the glci repository at the same commit as your installed binary.
Scripted installation#
# Single agent, global scope
glci skill install --agent claude-code --scope global
# Multiple agents, project scope (default)
glci skill install --agent cursor,windsurf
# All-in-one
glci skill install --agent claude-code,cursor,vscode --scope project
| Flag | Description |
|---|---|
--agent | Target agent(s): claude-code, cursor, windsurf, vscode, gitlab-duo, codex, opencode (comma-separated) |
--scope | Installation scope: project (default) or global |
Scope#
- Project — installs the skill in the current directory (e.g.
.claude/skills/glci/SKILL.md). Only available when working in that project. - Global — installs to the home directory (e.g.
~/.claude/skills/glci/SKILL.md). Available across all projects. Supported by Claude Code, GitLab Duo, Codex, and OpenCode.
Installation paths#
| Agent | Project path | Global path |
|---|---|---|
| Claude Code | .claude/skills/glci/SKILL.md | ~/.claude/skills/glci/SKILL.md |
| Cursor | .cursor/rules/glci.mdc | — |
| Windsurf | .windsurf/rules/glci.md | — |
| VS Code (Copilot) | .github/instructions/glci.instructions.md | — |
| GitLab Duo | skills/glci/SKILL.md | ~/.gitlab/duo/skills/glci/SKILL.md |
| Codex (OpenAI) | .agents/skills/glci/SKILL.md | ~/.agents/skills/glci/SKILL.md |
| OpenCode | .opencode/skills/glci/SKILL.md | ~/.config/opencode/skills/glci/SKILL.md |
Verifying#
After installing, ask your agent:
How do I run a specific job with glci?
The agent should reference glci commands and flags from the skill file.