Skip to Content
EnCubenceline Setup

Cubenceline Installation and Configuration

Introduction

Cubenceline is a status bar tool for Claude terminal that displays additional status information when using Claude Code.

Windows Installation Tutorial

Step 1: Install Cubenceline

npm install -g @cubence/cubenceline

Step 2: Configure settings.json

Locate or create the ~/.claude/settings.json file and add the following configuration:

{ "env": { "ANTHROPIC_AUTH_TOKEN": "你的key", "ANTHROPIC_BASE_URL": "https://api.cubence.com", "CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": 1 }, "statusLine": { "type": "command", "command": "C:/xxxxxxx/.claude/ccline/cubenceline.exe", "padding": 0 } }

Note:

  • Please replace 你的key with the API Key created on the platform
  • Please replace the command path with your actual .claude file path

macOS Installation Tutorial

Step 1: Install Cubenceline

npm install -g @cubence/cubenceline

Step 2: Configure settings.json

Locate or create the ~/.claude/settings.json file and add the following configuration:

{ "env": { "ANTHROPIC_AUTH_TOKEN": "你的key", "ANTHROPIC_BASE_URL": "https://api.cubence.com", "CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": 1 }, "statusLine": { "type": "command", "command": "~/.claude/ccline/cubenceline", "padding": 0 } }

Note: Please replace 你的key with the API Key created on the platform

Usage Effect

After configuration, when using Claude Code, the terminal status bar will display relevant status information.

mac_cubenceline
Last updated on