@dahawa/hawa-code 1.38.4 → 1.38.6
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/cli.js +512 -510
- package/hands.js +390 -388
- package/package.json +1 -1
- package/webServer/app.js +44 -41
- package/webServer/style.css +30 -0
package/webServer/style.css
CHANGED
|
@@ -56,14 +56,24 @@ html, body {
|
|
|
56
56
|
flex-shrink: 0;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
+
.header-spacer {
|
|
60
|
+
flex: 1;
|
|
61
|
+
min-width: 0;
|
|
62
|
+
}
|
|
63
|
+
|
|
59
64
|
.header-title {
|
|
65
|
+
flex: 0 0 auto;
|
|
60
66
|
font-size: 14px;
|
|
61
67
|
font-weight: 600;
|
|
62
68
|
color: var(--accent-blue);
|
|
69
|
+
text-align: center;
|
|
63
70
|
}
|
|
64
71
|
|
|
65
72
|
.header-status {
|
|
73
|
+
flex: 1;
|
|
74
|
+
min-width: 0;
|
|
66
75
|
display: flex;
|
|
76
|
+
justify-content: flex-end;
|
|
67
77
|
align-items: center;
|
|
68
78
|
gap: 8px;
|
|
69
79
|
font-size: 11px;
|
|
@@ -696,3 +706,23 @@ html, body {
|
|
|
696
706
|
font-size: 12px;
|
|
697
707
|
color: var(--text-secondary);
|
|
698
708
|
}
|
|
709
|
+
|
|
710
|
+
/* Cwd 工具结果 - 与其他 Agent Viewer 工具风格一致,直接显示路径 */
|
|
711
|
+
.tool-result-cwd .cwd-path {
|
|
712
|
+
color: var(--text-primary);
|
|
713
|
+
word-break: break-all;
|
|
714
|
+
font-size: 12px;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
/* MCP 工具输入参数摘要 */
|
|
718
|
+
.tool-use-mcp .mcp-input-summary {
|
|
719
|
+
word-break: break-all;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
/* MCP 工具结果 */
|
|
723
|
+
.tool-result-mcp .mcp-image-note {
|
|
724
|
+
color: var(--text-dimmed);
|
|
725
|
+
font-size: 11px;
|
|
726
|
+
font-style: italic;
|
|
727
|
+
margin-top: 4px;
|
|
728
|
+
}
|