Loading...
Loading...
Manage GoCD pipelines, pipeline groups, agents, environments, config repos, server administration, users, roles, authorization configs, plugins, backups, materials, artifact stores, elastic agent profiles, cluster profiles, stages, jobs, server configuration, templates, packages, package repositories, notification filters, dashboard, access tokens, secret configs, and server version using the orbit CLI. Use this skill whenever the user asks about GoCD pipelines, agents, environments, config repos, server health, maintenance mode, CI/CD operations, pipeline groups, users, roles, auth configs, plugins, backups, materials, artifact stores, elastic agents, stages, jobs, templates, packages, package repositories, notification filters, dashboard, access tokens, secret configs, or server version on GoCD. Trigger on phrases like 'list pipelines', 'create pipeline', 'delete pipeline', 'pipeline status', 'trigger a build', 'pause pipeline', 'list agents', 'enable agent', 'disable agent', 'kill running tasks', 'agent job history', 'list environments', 'create environment', 'patch environment', 'config repo status', 'create config repo', 'preflight check', 'server health', 'maintenance mode', 'encrypt a value', 'list users', 'create user', 'list roles', 'auth config', 'list plugins', 'schedule backup', 'list materials', 'artifact store', 'elastic agent profile', 'cluster profile', 'cancel stage', 'run stage', 'run job', 'site url', 'job timeout', 'mail server config', 'pipeline group', 'list templates', 'create template', 'dashboard', 'access tokens', 'secret config', 'compare pipelines', 'lock pipeline', 'unlock pipeline', 'server version', 'notification filters', 'list packages', 'package repository', 'current user', or any GoCD-related task — even casual references like 'what pipelines are running', 'is the agent idle', 'check the build', 'schedule a run', 'put server in maintenance', 'check config repo sync', 'who has access', 'what plugins are installed', or 'GoCD status'. The orbit CLI alias is `cd`.
npx skill4agent add jorgemuza/orbit gocdorbitorbitgocd~/.config/orbit/config.yamlop://base_urlorbit -p <profile> gocd <command> [flags]orbit -p <profile> cd <command> [flags]-o json-o yamlreferences/commands.md| Group | Alias | Description |
|---|---|---|
| Pipeline CRUD, status, history, trigger, pause/unpause, comment, export, compare, lock/unlock | |
| | Pipeline group CRUD |
| Agent list, get, enable, disable, delete, kill-task, update, job-history | |
| | Environment CRUD, patch |
| | Config repo CRUD, status, trigger, definitions, preflight |
| Server health, maintenance mode | |
| | Site URL, artifact config, job timeout, mail server |
| User CRUD, bulk delete, current user | |
| Security role CRUD | |
| | Authorization config CRUD |
| Plugin info, settings CRUD | |
| Backup config CRUD, schedule | |
| Material list, get, usage, trigger-update | |
| Artifact store CRUD | |
| | Elastic agent cluster profile CRUD |
| | Elastic agent profile CRUD, usage |
| Stage cancel, run | |
| Job run | |
| Encrypt values | |
| | Pipeline template CRUD |
| | Package repository CRUD |
| | Package CRUD, usage |
| | Notification filter CRUD |
| Dashboard overview | |
| Server version info | |
| | Access token CRUD (user and admin) |
| | Secret configuration CRUD |
# List all pipelines by group
orbit -p myprofile gocd pipeline list
# Create a pipeline from file
orbit -p myprofile cd pipeline create --group my-group --from-file pipeline.yaml
# Update a pipeline configuration
orbit -p myprofile cd pipeline update my-pipeline --from-file pipeline.yaml
# Delete a pipeline
orbit -p myprofile cd pipeline delete my-pipeline
# Check pipeline status
orbit -p myprofile cd pipeline status my-pipeline
# View pipeline run history
orbit -p myprofile gocd pipeline history my-pipeline --limit 5
# Get a specific pipeline instance
orbit -p myprofile gocd pipeline get my-pipeline --counter 42
# Trigger a pipeline run
orbit -p myprofile cd pipeline trigger my-pipeline
# Pause/unpause a pipeline
orbit -p myprofile gocd pipeline pause my-pipeline --reason "Maintenance window"
orbit -p myprofile gocd pipeline unpause my-pipeline
# Comment on a pipeline instance
orbit -p myprofile cd pipeline comment my-pipeline --counter 42 --message "Deployed to staging"
# Export pipeline configuration
orbit -p myprofile cd pipeline export my-pipeline --plugin-id yaml.config.plugin
# Compare two pipeline instances
orbit -p myprofile cd pipeline compare my-pipeline --from 1 --to 5
# Lock/unlock a pipeline
orbit -p myprofile gocd pipeline lock my-pipeline
orbit -p myprofile gocd pipeline unlock my-pipeline# List pipeline groups
orbit -p myprofile gocd pipeline-group list
orbit -p myprofile cd pg list
# Get pipeline group details
orbit -p myprofile cd pg get my-group
# Create/update/delete pipeline groups
orbit -p myprofile cd pg create --from-file group.yaml
orbit -p myprofile cd pg update my-group --from-file group.yaml
orbit -p myprofile cd pg delete my-group# List all agents
orbit -p myprofile gocd agent list
# View agent details
orbit -p myprofile cd agent get <uuid>
# Enable/disable agents
orbit -p myprofile gocd agent enable <uuid>
orbit -p myprofile gocd agent disable <uuid>
# Update agent configuration
orbit -p myprofile cd agent update <uuid> --from-file agent.yaml
# View agent job history
orbit -p myprofile cd agent job-history <uuid>
# Kill running tasks on an agent
orbit -p myprofile cd agent kill-task <uuid>
# Delete an agent
orbit -p myprofile gocd agent delete <uuid># List environments
orbit -p myprofile gocd environment list
# View environment details
orbit -p myprofile cd env get production
# Create environment with pipelines
orbit -p myprofile gocd environment create staging --pipeline my-app --pipeline my-api
# Update environment from file
orbit -p myprofile cd env update staging --from-file env.yaml
# Patch environment (add/remove pipelines and agents)
orbit -p myprofile cd env patch staging --add-pipeline my-app --remove-pipeline old-app --add-agent agent1
# Delete environment
orbit -p myprofile gocd environment delete staging# List config repos
orbit -p myprofile gocd cr list
# Get config repo details
orbit -p myprofile cd cr get my-repo
# Create/update/delete config repos
orbit -p myprofile cd cr create --from-file repo.yaml
orbit -p myprofile cd cr update my-repo --from-file repo.yaml
orbit -p myprofile cd cr delete my-repo
# Check sync status
orbit -p myprofile cd cr status my-repo
# Trigger config repo update
orbit -p myprofile cd cr trigger my-repo
# View definitions from a config repo
orbit -p myprofile cd cr definitions my-repo
# Run preflight check
orbit -p myprofile cd cr preflight --plugin-id yaml.config.plugin --from-file pipeline.yaml# List users
orbit -p myprofile gocd user list
# Get user details
orbit -p myprofile cd user get admin
# Create/update/delete users
orbit -p myprofile cd user create --from-file user.yaml
orbit -p myprofile cd user update admin --from-file user.yaml
orbit -p myprofile cd user delete admin
# Bulk delete users
orbit -p myprofile cd user delete-bulk --user user1 --user user2
# View current authenticated user
orbit -p myprofile cd user current
# Update current user
orbit -p myprofile cd user update-current --from-file user.yaml# List roles
orbit -p myprofile gocd role list
# CRUD roles
orbit -p myprofile cd role get my-role
orbit -p myprofile cd role create --from-file role.yaml
orbit -p myprofile cd role update my-role --from-file role.yaml
orbit -p myprofile cd role delete my-role
# List authorization configs
orbit -p myprofile cd auth-config list
# CRUD authorization configs
orbit -p myprofile cd auth-config get my-auth
orbit -p myprofile cd auth-config create --from-file auth.yaml
orbit -p myprofile cd auth-config update my-auth --from-file auth.yaml
orbit -p myprofile cd auth-config delete my-auth# List plugins
orbit -p myprofile gocd plugin list
# Get plugin info
orbit -p myprofile cd plugin get my-plugin-id
# Plugin settings CRUD
orbit -p myprofile cd plugin get-settings my-plugin-id
orbit -p myprofile cd plugin create-settings --from-file settings.yaml
orbit -p myprofile cd plugin update-settings my-plugin-id --from-file settings.yaml# View backup configuration
orbit -p myprofile gocd backup get-config
# Create/delete backup config
orbit -p myprofile cd backup create-config --from-file backup.yaml
orbit -p myprofile cd backup delete-config
# Schedule a backup
orbit -p myprofile cd backup schedule# List materials
orbit -p myprofile gocd material list
# Get material details
orbit -p myprofile cd material get <fingerprint>
# View material usage (which pipelines use it)
orbit -p myprofile cd material usage <fingerprint>
# Trigger material update check
orbit -p myprofile cd material trigger-update <fingerprint># List artifact stores
orbit -p myprofile gocd artifact list-store
# CRUD artifact stores
orbit -p myprofile cd artifact get-store my-store
orbit -p myprofile cd artifact create-store --from-file store.yaml
orbit -p myprofile cd artifact update-store my-store --from-file store.yaml
orbit -p myprofile cd artifact delete-store my-store# Cluster profiles
orbit -p myprofile cd cp list
orbit -p myprofile cd cp get my-cluster
orbit -p myprofile cd cp create --from-file cluster.yaml
orbit -p myprofile cd cp update my-cluster --from-file cluster.yaml
orbit -p myprofile cd cp delete my-cluster
# Elastic agent profiles
orbit -p myprofile cd eap list
orbit -p myprofile cd eap get my-profile
orbit -p myprofile cd eap create --from-file profile.yaml
orbit -p myprofile cd eap update my-profile --from-file profile.yaml
orbit -p myprofile cd eap delete my-profile
orbit -p myprofile cd eap usage my-profile# Cancel a running stage
orbit -p myprofile cd stage cancel --pipeline my-pipeline --counter 5 --stage build --stage-counter 1
# Run/re-run a stage
orbit -p myprofile cd stage run --pipeline my-pipeline --counter 5 --stage build
# Run specific jobs in a stage
orbit -p myprofile cd job run --pipeline my-pipeline --stage build --pipeline-counter 5 --stage-counter 1 --job unit-test --job integration-test# Server health
orbit -p myprofile gocd server health
# Maintenance mode
orbit -p myprofile cd server maintenance
orbit -p myprofile cd server maintenance-on
orbit -p myprofile cd server maintenance-off
# Site URLs
orbit -p myprofile cd sc site-url get
orbit -p myprofile cd sc site-url update --url https://gocd.example.com --secure-url https://gocd.example.com
# Artifact config
orbit -p myprofile cd sc artifact-config get
orbit -p myprofile cd sc artifact-config update --from-file artifact.yaml
# Job timeout
orbit -p myprofile cd sc job-timeout get
orbit -p myprofile cd sc job-timeout update --timeout 30
# Mail server
orbit -p myprofile cd sc mail-server get
orbit -p myprofile cd sc mail-server update --from-file mail.yaml
orbit -p myprofile cd sc mail-server delete
# Encryption
orbit -p myprofile gocd encrypt my-secret-password# List templates
orbit -p myprofile gocd template list
orbit -p myprofile cd tmpl list
# Get template details
orbit -p myprofile cd tmpl get my-template
# Create/update/delete templates
orbit -p myprofile cd tmpl create --from-file template.yaml
orbit -p myprofile cd tmpl update my-template --from-file template.yaml
orbit -p myprofile cd tmpl delete my-template# List package repositories
orbit -p myprofile gocd package-repo list
orbit -p myprofile cd pkg-repo list
# CRUD package repositories
orbit -p myprofile cd pkg-repo get repo-id
orbit -p myprofile cd pkg-repo create --from-file repo.yaml
orbit -p myprofile cd pkg-repo update repo-id --from-file repo.yaml
orbit -p myprofile cd pkg-repo delete repo-id
# List packages
orbit -p myprofile gocd package list
orbit -p myprofile cd pkg list
# CRUD packages
orbit -p myprofile cd pkg get pkg-id
orbit -p myprofile cd pkg create --from-file package.yaml
orbit -p myprofile cd pkg update pkg-id --from-file package.yaml
orbit -p myprofile cd pkg delete pkg-id
# View package usage (which pipelines use it)
orbit -p myprofile cd pkg usage pkg-id# List notification filters
orbit -p myprofile gocd notification-filter list
orbit -p myprofile cd nf list
# Get/create/delete notification filters
orbit -p myprofile cd nf get 1
orbit -p myprofile cd nf create --from-file filter.yaml
orbit -p myprofile cd nf delete 1# View dashboard overview
orbit -p myprofile gocd dashboard
# Check server version
orbit -p myprofile gocd version# List your access tokens
orbit -p myprofile gocd access-token list
orbit -p myprofile cd token list
# Create a new token
orbit -p myprofile cd token create --description "CI token"
# Revoke a token
orbit -p myprofile cd token revoke 42 --cause "No longer needed"
# Admin: list all tokens across users
orbit -p myprofile cd token list-all
# Admin: revoke any user's token
orbit -p myprofile cd token revoke-admin 42 --cause "Security review"# List secret configurations
orbit -p myprofile gocd secret-config list
orbit -p myprofile cd secret list
# CRUD secret configurations
orbit -p myprofile cd secret get my-secret
orbit -p myprofile cd secret create --from-file secret.yaml
orbit -p myprofile cd secret update my-secret --from-file secret.yaml
orbit -p myprofile cd secret delete my-secret--from-fileorbit -p myprofile cd pipeline create --group my-group --from-file pipeline.yaml
orbit -p myprofile cd cr create --from-file config-repo.json
orbit -p myprofile cd role create --from-file role.yaml--from-fileorbit -p myprofile cd cr status my-config-repo
orbit -p myprofile cd cr definitions my-config-repo
orbit -p myprofile cd cr trigger my-config-repoorbit -p myprofile cd agent list
orbit -p myprofile cd server maintenance-on
# ... perform maintenance ...
orbit -p myprofile cd server maintenance-off--servicebase_urltablejsonyaml