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/cubencelineStep 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
你的keywith the API Key created on the platform - Please replace the
commandpath with your actual.claudefile path
macOS Installation Tutorial
Step 1: Install Cubenceline
npm install -g @cubence/cubencelineStep 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.

Last updated on