A comprehensive Claude Code skill for the Codesphere cloud IDE and deployment platform.
- Generates and validates Codesphere CI pipeline configurations (
ci.yml) - Handles all deployments using
schemaVersion: v0.2, including single-app and multi-service landscapes - Provides deployment guidance including domains, scaling, environment variables, and networking
- Covers the full platform: CI/CD, workspaces, CLI (
cs-go), Public API, and GitHub Actions integration
Copy the codesphere/ directory to your Claude Code skills folder:
cp -r codesphere/ ~/.claude/skills/codesphere/Clone and symlink:
git clone https://github.com/LeonHartmann/codesphere-skill.git
ln -s "$(pwd)/codesphere-skill/codesphere" ~/.claude/skills/codespherecodesphere/
SKILL.md # Main skill reference
references/
ci-pipeline.md # CI schema specification, examples per framework
landscape-deployments.md # Multi-service v0.2, networking, managed services
deployment-guide.md # Domains, scaling, modes, env vars, troubleshooting
cli-and-api.md # cs-go CLI, Public API, GitHub Actions, GitLab CI
Once installed, Claude Code will automatically use this skill when you:
- Ask to deploy an application to Codesphere
- Ask to create or fix a
ci.ymlfile - Ask about Codesphere configuration, scaling, or networking
- Mention landscape deployments or
schemaVersion: v0.2 - Troubleshoot Codesphere deployment issues
"Create a ci.yml for my Next.js app"
"Set up a landscape deployment with a frontend, backend, and PostgreSQL database"
"Why isn't my Codesphere deployment working?"
"How do I configure path-based routing for my microservices?"
- CI Pipeline Configuration —
schemaVersion: v0.2with examples for 10+ frameworks - Landscape Deployments — Multi-service architecture, private networking, managed databases
- Critical Constraints — Port 3000, host 0.0.0.0, persistent storage, Nix packages
- Environment Variables — Setting, propagation, built-in variables
- Custom Domains — DNS setup, path-based routing, zero-downtime releases
- Horizontal Scaling — Replicas, autoscaling, shared filesystem patterns
- CLI & API — cs-go commands, REST API endpoints, CI/CD integrations
MIT