Help us improve
Share bugs, ideas, or general feedback.
From chittyos-devops
Deploy ChittyOS services to Cloudflare Workers with proper environment handling.
npx claudepluginhub chittyos/chittymarket --plugin chittyos-devopsHow this skill is triggered — by the user, by Claude, or both
Slash command
/chittyos-devops:chitty-deployThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Deploy ChittyOS services to Cloudflare Workers with proper environment handling.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Explores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Share bugs, ideas, or general feedback.
Deploy ChittyOS services to Cloudflare Workers with proper environment handling.
/deploy [service-name] [environment]
| Parameter | Required | Default | Description |
|---|---|---|---|
| service-name | Yes | - | Service to deploy (e.g., chittyid, chittyauth) |
| environment | No | production | Target environment (production, staging, preview) |
Find service in repository structure:
/Volumes/chitty/github.com/CHITTYFOUNDATION/{service}//Volumes/chitty/github.com/CHITTYOS/{service}//Volumes/chitty/workspace/{service}/# Verify wrangler.toml exists
ls -la wrangler.toml
# Check for uncommitted changes
git status
# Run build if package.json has build script
npm run build 2>/dev/null || pnpm build 2>/dev/null
# Production deploy
npx wrangler deploy --env production
# Or using npm script
npm run deploy:production
# Check service health
curl -s https://{service}.chitty.cc/health | jq .
Secrets are managed via 1Password integration:
op run --env-file=/Volumes/chitty/config/cloudflare-chittycorp.env -- npx wrangler deploy
| Service | Domain | Repo Location |
|---|---|---|
| chittyid | id.chitty.cc | CHITTYFOUNDATION/chittyid |
| chittyauth | auth.chitty.cc | CHITTYFOUNDATION/chittyauth |
| chittyconnect | connect.chitty.cc | CHITTYFOUNDATION/chittyconnect |
| chittyapi | api.chitty.cc | workspace/chittyapi |
| chittymcp | mcp.chitty.cc | workspace/chittymcp |
op is authenticated, check env file paths