claude-scope 0.8.14 → 0.8.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/claude-scope.cjs +51 -41
- package/package.json +1 -1
package/dist/claude-scope.cjs
CHANGED
|
@@ -6997,6 +6997,11 @@ function generateBalancedLayout(style, themeName) {
|
|
|
6997
6997
|
bar: theme.context.bar
|
|
6998
6998
|
}
|
|
6999
6999
|
},
|
|
7000
|
+
{
|
|
7001
|
+
id: "lines",
|
|
7002
|
+
style,
|
|
7003
|
+
colors: { added: theme.lines.added, removed: theme.lines.removed }
|
|
7004
|
+
},
|
|
7000
7005
|
{
|
|
7001
7006
|
id: "cost",
|
|
7002
7007
|
style,
|
|
@@ -7006,11 +7011,6 @@ function generateBalancedLayout(style, themeName) {
|
|
|
7006
7011
|
id: "duration",
|
|
7007
7012
|
style,
|
|
7008
7013
|
colors: { value: theme.duration.value, unit: theme.duration.unit }
|
|
7009
|
-
},
|
|
7010
|
-
{
|
|
7011
|
-
id: "lines",
|
|
7012
|
-
style,
|
|
7013
|
-
colors: { added: theme.lines.added, removed: theme.lines.removed }
|
|
7014
7014
|
}
|
|
7015
7015
|
],
|
|
7016
7016
|
"1": [
|
|
@@ -7019,6 +7019,11 @@ function generateBalancedLayout(style, themeName) {
|
|
|
7019
7019
|
style,
|
|
7020
7020
|
colors: { branch: theme.git.branch, changes: theme.git.changes }
|
|
7021
7021
|
},
|
|
7022
|
+
{
|
|
7023
|
+
id: "git-tag",
|
|
7024
|
+
style,
|
|
7025
|
+
colors: { base: theme.base.text }
|
|
7026
|
+
},
|
|
7022
7027
|
{
|
|
7023
7028
|
id: "cache-metrics",
|
|
7024
7029
|
style,
|
|
@@ -7033,21 +7038,7 @@ function generateBalancedLayout(style, themeName) {
|
|
|
7033
7038
|
{
|
|
7034
7039
|
id: "config-count",
|
|
7035
7040
|
style,
|
|
7036
|
-
colors: {
|
|
7037
|
-
base: theme.base.muted
|
|
7038
|
-
}
|
|
7039
|
-
},
|
|
7040
|
-
{
|
|
7041
|
-
id: "active-tools",
|
|
7042
|
-
style,
|
|
7043
|
-
colors: {
|
|
7044
|
-
running: theme.tools.running,
|
|
7045
|
-
completed: theme.tools.completed,
|
|
7046
|
-
error: theme.tools.error,
|
|
7047
|
-
name: theme.tools.name,
|
|
7048
|
-
target: theme.tools.target,
|
|
7049
|
-
count: theme.tools.count
|
|
7050
|
-
}
|
|
7041
|
+
colors: { base: theme.base.muted }
|
|
7051
7042
|
}
|
|
7052
7043
|
]
|
|
7053
7044
|
}
|
|
@@ -7115,14 +7106,14 @@ function generateRichLayout(style, themeName) {
|
|
|
7115
7106
|
}
|
|
7116
7107
|
},
|
|
7117
7108
|
{
|
|
7118
|
-
id: "
|
|
7109
|
+
id: "lines",
|
|
7119
7110
|
style,
|
|
7120
|
-
colors: {
|
|
7111
|
+
colors: { added: theme.lines.added, removed: theme.lines.removed }
|
|
7121
7112
|
},
|
|
7122
7113
|
{
|
|
7123
|
-
id: "
|
|
7114
|
+
id: "cost",
|
|
7124
7115
|
style,
|
|
7125
|
-
colors: {
|
|
7116
|
+
colors: { amount: theme.cost.amount, currency: theme.cost.currency }
|
|
7126
7117
|
},
|
|
7127
7118
|
{
|
|
7128
7119
|
id: "duration",
|
|
@@ -7141,20 +7132,6 @@ function generateRichLayout(style, themeName) {
|
|
|
7141
7132
|
style,
|
|
7142
7133
|
colors: { base: theme.base.text }
|
|
7143
7134
|
},
|
|
7144
|
-
{
|
|
7145
|
-
id: "active-tools",
|
|
7146
|
-
style,
|
|
7147
|
-
colors: {
|
|
7148
|
-
running: theme.tools.running,
|
|
7149
|
-
completed: theme.tools.completed,
|
|
7150
|
-
error: theme.tools.error,
|
|
7151
|
-
name: theme.tools.name,
|
|
7152
|
-
target: theme.tools.target,
|
|
7153
|
-
count: theme.tools.count
|
|
7154
|
-
}
|
|
7155
|
-
}
|
|
7156
|
-
],
|
|
7157
|
-
"2": [
|
|
7158
7135
|
{
|
|
7159
7136
|
id: "cache-metrics",
|
|
7160
7137
|
style,
|
|
@@ -7171,6 +7148,39 @@ function generateRichLayout(style, themeName) {
|
|
|
7171
7148
|
style,
|
|
7172
7149
|
colors: { base: theme.base.muted }
|
|
7173
7150
|
}
|
|
7151
|
+
],
|
|
7152
|
+
"2": [
|
|
7153
|
+
{
|
|
7154
|
+
id: "dev-server",
|
|
7155
|
+
style,
|
|
7156
|
+
colors: {
|
|
7157
|
+
name: theme.devServer.name,
|
|
7158
|
+
status: theme.devServer.status,
|
|
7159
|
+
label: theme.devServer.label
|
|
7160
|
+
}
|
|
7161
|
+
},
|
|
7162
|
+
{
|
|
7163
|
+
id: "docker",
|
|
7164
|
+
style,
|
|
7165
|
+
colors: {
|
|
7166
|
+
label: theme.docker.label,
|
|
7167
|
+
count: theme.docker.count,
|
|
7168
|
+
running: theme.docker.running,
|
|
7169
|
+
stopped: theme.docker.stopped
|
|
7170
|
+
}
|
|
7171
|
+
},
|
|
7172
|
+
{
|
|
7173
|
+
id: "active-tools",
|
|
7174
|
+
style,
|
|
7175
|
+
colors: {
|
|
7176
|
+
running: theme.tools.running,
|
|
7177
|
+
completed: theme.tools.completed,
|
|
7178
|
+
error: theme.tools.error,
|
|
7179
|
+
name: theme.tools.name,
|
|
7180
|
+
target: theme.tools.target,
|
|
7181
|
+
count: theme.tools.count
|
|
7182
|
+
}
|
|
7183
|
+
}
|
|
7174
7184
|
]
|
|
7175
7185
|
}
|
|
7176
7186
|
};
|
|
@@ -7222,19 +7232,19 @@ async function selectLayout() {
|
|
|
7222
7232
|
const layoutChoices = [
|
|
7223
7233
|
{
|
|
7224
7234
|
name: "Balanced",
|
|
7225
|
-
description: "2 lines:
|
|
7235
|
+
description: "2 lines: Model|Context|Lines|Cost|Duration + Git|GitTag|Cache|Config",
|
|
7226
7236
|
value: "balanced",
|
|
7227
7237
|
getConfig: (s, t) => generateBalancedLayout(s, t)
|
|
7228
7238
|
},
|
|
7229
7239
|
{
|
|
7230
7240
|
name: "Compact",
|
|
7231
|
-
description: "1 line: Model
|
|
7241
|
+
description: "1 line: Model|Context|Cost|Git|Duration",
|
|
7232
7242
|
value: "compact",
|
|
7233
7243
|
getConfig: (s, t) => generateCompactLayout(s, t)
|
|
7234
7244
|
},
|
|
7235
7245
|
{
|
|
7236
7246
|
name: "Rich",
|
|
7237
|
-
description: "3 lines:
|
|
7247
|
+
description: "3 lines: + Dev Server|Docker|Active Tools on line 3",
|
|
7238
7248
|
value: "rich",
|
|
7239
7249
|
getConfig: (s, t) => generateRichLayout(s, t)
|
|
7240
7250
|
}
|