Tutorial

Getting Started with CCJK

CCJK is a production-ready AI dev environment for Claude Code, Codex, and modern coding workflows. This guide walks through the current official setup path.

v9.4.1 · npm v13.5.7

Prerequisites

  • Node.js 18+ installed
  • An Anthropic API key for silent automation flows (interactive setup can start without it)
  • Your favorite code editor and terminal

Installation

Start with npx for the fastest path, or install the ccjk package globally if you want a permanent CLI:

npx
npx ccjk
npm
npm install -g ccjk
yarn
yarn global add ccjk
pnpm
pnpm add -g ccjk

Automation Setup

For CI/CD or repeatable setup, export your key and run silent init:

export ANTHROPIC_API_KEY="sk-ant-..." && npx ccjk init --silent

Basic Commands

CommandDescription
npx ccjkOpen the interactive setup and command hub
npx ccjk boostOptimize your current workspace
ccjk zc --preset devApply the recommended developer preset
ccjk memory --enableEnable persistent project memory
ccjk remote setupConfigure remote control access

Next Steps

Related Tools