Claude Code plugins for devproxy — local HTTPS dev subdomains for Docker Compose projects
npx claudepluginhub foundra-build/devproxyClaude Code plugin for setting up and using devproxy — local HTTPS dev subdomains for Docker Compose projects
Local HTTPS dev subdomains for Docker Compose projects. One label, one command, real TLS.
# docker-compose.yml
services:
web:
build: .
labels:
- devproxy.port=3000
devproxy up
# → https://swift-penguin-myapp.mysite.dev
devproxy up --slug my-app
# → https://my-app-myapp.mysite.dev
rcgen (no mkcert)curl -fsSL https://raw.githubusercontent.com/foundra-build/devproxy/main/install.sh | sh
To install a specific version:
export DEVPROXY_VERSION=v0.0.1
curl -fsSL https://raw.githubusercontent.com/foundra-build/devproxy/main/install.sh | sh
# one-time setup (no sudo needed — uses launchd/systemd socket activation)
devproxy init --domain mysite.dev
# in any project with devproxy.port label
devproxy up
| Command | Description |
|---|---|
devproxy init | One-time setup: certs, CA trust, daemon |
devproxy up | Start project, assign slug, proxy it |
devproxy up --slug | Start project with a custom slug prefix |
devproxy down | Stop project, remove override and slug |
devproxy stop | Stop containers (preserves slug for restart) |
devproxy start | Start previously stopped containers |
devproxy restart | Restart app containers |
devproxy ls | List running projects with URLs |
devproxy open | Open project URL in browser |
devproxy status | Daemon health check |
devproxy daemon restart | Restart the background daemon |
devproxy update | Check for updates and self-update |
devproxy --version | Show installed version |
devproxy includes a Claude Code plugin with skills for guided setup and usage help.
/plugin marketplace add foundra-build/devproxy
/plugin install devproxy@devproxy
| Skill | Trigger | What it does |
|---|---|---|
devproxy | Mention "devproxy", Docker HTTPS, dev subdomains | Commands reference, troubleshooting, how-it-works |
setup | "set up devproxy", "install devproxy" | Guided interactive walkthrough for first-time setup |
Use /devproxy:setup for a step-by-step guided installation, or just ask about devproxy and the general skill will activate automatically.
just setup # bootstrap: cargo build
just dev # cargo watch for dev
just check # clippy + tests
See docs/spec.md for the full specification.
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations