Remote Developer - Claude Code instances in isolated Kubernetes pods
Go to file
jordan 32d50a6952
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: make infra provisioning idempotent + aeries-daeya public discovery feed
- Make postgres and redis provisioning idempotent: return success when already
  provisioned with credentials stored, allowing cookbook trees to safely include
  explicit add-db/add-redis steps alongside auto-provisioned project creation
- Update tests to reflect new idempotent behavior
- Consolidate docs CI into single multi-stage Docker build (remove separate
  build-docs step; Dockerfile.nginx now builds Slate then serves with nginx)
- Delete redundant skeleton docs/Dockerfile (replaced by multi-stage nginx image)
- Add watch verb to woodpecker-deployer RBAC (required by kubectl rollout status)
- Aeries Daeya cookbook: add public discovery feed (/) + character profiles (/c/:handle),
  characters.published/handle/tagline fields, dark pink design system, /studio/* routes,
  verify-public-discovery + verify-otp-endpoint smoke test steps
- Fix Input.tsx: remove non-existent --border-hover CSS variable hover effect
2026-02-28 17:32:21 -07:00
.claude/guides
ai-lookup
changelog
cmd feat: implement shared notify host model for platform email delivery 2026-02-25 17:04:11 -07:00
cookbooks feat: make infra provisioning idempotent + aeries-daeya public discovery feed 2026-02-28 17:32:21 -07:00
deployments/k8s/base feat: make infra provisioning idempotent + aeries-daeya public discovery feed 2026-02-28 17:32:21 -07:00
docs
examples
history
ideas/aeres
internal feat: make infra provisioning idempotent + aeries-daeya public discovery feed 2026-02-28 17:32:21 -07:00
pkg/api
scripts feat: add POST /projects/{id}/notify/reprovision to migrate notify host 2026-02-23 21:28:59 -07:00
sdk
tests/e2e
.env.local.example
.gitignore
.gitkeep-ci
.golangci.yml
.woodpecker.yml fix: add event filter to test step in woodpecker pipeline 2026-02-27 00:31:20 -07:00
aeries-preparation-thoughts.md
app-vision-gaps.md
app-vision-roadmap.md
app-vision.md
CHANGELOG.md
CLAUDE.md feat: add session web UI mode + aeries-daeya cookbook tree 2026-02-26 23:14:08 -07:00
CODING_GUIDELINES.md
docker-compose.yaml
Dockerfile feat: add session web UI mode + aeries-daeya cookbook tree 2026-02-26 23:14:08 -07:00
Dockerfile.api
Dockerfile.api.prebuild
Dockerfile.worker
go.mod
go.sum
IMPLEMENTATION_PLAN_V2.md
IMPLEMENTATION_PLAN.md
Makefile feat: add session web UI mode + aeries-daeya cookbook tree 2026-02-26 23:14:08 -07:00
PLAN.md
QUICKSTART.md
README.md
vision.md

rdev - Remote Developer

Run Claude Code in isolated Kubernetes pods on your k3s cluster.

Quick Start

# 1. Set kubeconfig (REQUIRED - this is k3s, not GKE)
export KUBECONFIG=~/.kube/orchard9-k3sf.yaml

# 2. Authenticate Claude locally (if not already)
claude

# 3. Create credentials secret
./scripts/create-credentials-secret.sh

# 4. Deploy
./scripts/deploy.sh

# 5. Verify
./scripts/verify.sh

Usage

# Check Claude version
kubectl exec -n rdev claudebox-0 -- claude --version

# Interactive Claude session
kubectl exec -it -n rdev claudebox-0 -- claude "what can you help me with?"

# Run in workspace
kubectl exec -it -n rdev claudebox-0 -- bash
cd /workspace
claude "create a hello world go program"

Architecture

k3s cluster
└── rdev namespace
    └── claudebox-0 (StatefulSet)
        ├── Claude Code CLI
        ├── /workspace (20Gi PVC via Longhorn)
        └── /root/.claude (credentials from secret)

Roadmap

  • v0.1: Base case - single claudebox pod
  • v0.2: Real workspace mounting (pantheon, aeries)
  • v0.3: Git integration (push/pull)
  • v0.4: Discord bot control
  • v0.5: Streaming output
  • v0.6: Multi-project routing

Development

# Build image locally
docker build -t rdev-claudebox:dev .

# Build and push to Artifact Registry
./scripts/build-push.sh v0.1.0

Troubleshooting

# Check pod status
kubectl get pods -n rdev

# View pod logs
kubectl logs claudebox-0 -n rdev

# Describe pod for events
kubectl describe pod claudebox-0 -n rdev

# Check credentials mount
kubectl exec -n rdev claudebox-0 -- ls -la /root/.claude/