Skip to content

Commit a094138

Browse files
feat: 对齐构建时的目标
1 parent c65abc7 commit a094138

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

build.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ rmSync(outdir, { recursive: true, force: true })
1111
// Default features that match the official CLI build.
1212
// Additional features can be enabled via FEATURE_<NAME>=1 env vars.
1313
const DEFAULT_BUILD_FEATURES = [
14+
'BUDDY',
15+
'TRANSCRIPT_CLASSIFIER',
16+
'BRIDGE_MODE',
1417
'AGENT_TRIGGERS_REMOTE',
1518
'CHICAGO_MCP',
1619
'VOICE_MODE',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-code-best",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal",
55
"type": "module",
66
"author": "claude-code-best <claude-code-best@proton.me>",

packages/remote-control-server/web/pages.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,12 @@
201201
padding: 28px 32px;
202202
display: flex;
203203
flex-direction: column;
204-
min-height: calc(100vh - 56px);
204+
height: calc(100vh - 56px);
205+
overflow: hidden;
205206
}
206207

208+
#permission-area { flex-shrink: 0; }
209+
207210
.back-link {
208211
font-size: 0.85rem;
209212
color: var(--text-secondary);
@@ -216,7 +219,7 @@
216219
}
217220
.back-link:hover { color: var(--accent); text-decoration: none; }
218221

219-
.session-header { margin-bottom: 24px; }
222+
.session-header { margin-bottom: 24px; flex-shrink: 0; }
220223

221224
.session-detail-title {
222225
font-family: var(--font-display);

0 commit comments

Comments
 (0)