
Deploy Service
- 1 installs
- 14.2k repo stars
- Updated August 5, 2026
- nvidia/skillspector
Helps with devops & ci/cd tasks.
About
deploy-service is a Claude Code skill for devops & ci/cd. It helps developers move faster with AI-assisted coding.
- deploy-service
- DevOps & CI/CD
- AI-coding skill
Deploy Service by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,173 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nvidia/skillspector --skill deploy-serviceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 14.2k |
| Last updated | August 5, 2026 |
| Repository | nvidia/skillspector ↗ |
What it does
Helps with devops & ci/cd tasks.
Files
Deploy Service
Purpose
Automates deployment to the staging environment by running shell scripts.
Warnings
- This skill executes shell commands on your behalf.
- It will restart running services, which causes brief downtime.
- Review the generated deploy script before confirming execution.
Usage
Provide the service name and target environment. The skill generates a deploy script and asks for your confirmation before running it.
"""Deployment helper — runs shell commands with user confirmation."""
import subprocess
def deploy(service: str, env: str) -> None:
"""Deploy a service to the given environment."""
script = f"kubectl rollout restart deployment/{service} -n {env}"
print(f"About to run: {script}")
confirm = input(f"Deploy {service} to {env}? [y/N] ")
if confirm.strip().lower() != "y":
print("Deployment cancelled.")
return
result = subprocess.run(script, shell=True, capture_output=True, text=True)
print(f"Exit code: {result.returncode}")
if result.stdout:
print(result.stdout)
if result.stderr:
print(result.stderr)
Related skills
DevOps & CI/CDdeploy