소스 정보
- 저장소
- circlesac/cgrok
- 최근 소스 활동
- 2026년 3월 20일 08:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/circlesac/cgrok --skill cgrok명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cgrok |
| description | Set up and use cgrok for Cloudflare-based secure tunneling to local development servers |
| user-invocable | true |
| argument-hint | <setup|tunnel> |
cgrok creates secure tunnels from the internet to your local development server using Cloudflare. It works like ngrok but uses your own Cloudflare account and domain.
# npm (requires Node.js)
npm install -g @circlesac/cgrok
# Homebrew
brew install circlesac/tap/cgrok
# Direct download
curl -fsSL https://github.com/circlesac/cgrok/releases/latest/download/install.sh | sh
You need a Cloudflare account with:
The API token needs permissions for:
Configure cgrok with your Cloudflare API token:
cgrok config add-authtoken <your-cloudflare-api-token>
This validates the token, lets you select an account and zone (if you have multiple), and saves the configuration to ~/.config/cgrok/cgrok.json. The selected zone becomes the default domain for all tunnels.
# Tunnel to a local port
cgrok http 3000
# Tunnel to a specific address:port
cgrok http localhost:8080
This generates a random 12-character subdomain under the default zone you selected during setup (e.g., a1b2c3d4e5f6.crcl.es). To change the default zone, re-run cgrok config add-authtoken.
# Use a specific subdomain (appended to default zone, e.g., myapp.crcl.es)
cgrok http 3000 --url myapp
# Use a full domain (must match one of your Cloudflare zones)
cgrok http 3000 --url myapp.example.com
cgrok http 3000 --url myapp --force
cgrok http 3000 --debug
When you run cgrok http <port>:
~/.config/cgrok/cgrok.json--url value)cloudflared locally to serve the tunnelOn Ctrl+C, cgrok cleans up by removing the DNS record and deleting the tunnel.
cloudflared must be installed and available in PATH
brew install cloudflare/cloudflare/cloudflaredcgrok config add-authtoken <token> first--force to overwrite, or choose a different --urlcloudflared tunnel delete <id> and retry