Merge branch 'main' of ssh://git.shumengya.top:8022/shumengya/sproutclaw

This commit is contained in:
root
2026-06-15 17:08:54 +08:00
5 changed files with 122 additions and 21 deletions

View File

@@ -20,7 +20,7 @@
- 如果用户需要你生成总结文档,教程时,除非用户强制要求,否则默认储存目录为smallmengya的/shumengya/docs 目录下
## 服务器运维规范
- `smallmengya`(本机)作为开发环境、测试环境和 LXC 容器宿主机
- `smallmengya`作为开发环境、测试环境和 LXC 容器宿主机
- `bigmengya`(通过 SSH 连接)作为 Docker 容器机
- `alycd`(通过 SSH 连接)作为内网对外开放的服务器

View File

@@ -73,8 +73,11 @@ function renderSproutclawLogo(theme: any, width: number): string[] {
if (width < 96) {
return [
[
rgb(" ", [100, 200, 255]),
theme.bold(gradientText("SproutClaw")),
theme.fg("dim", ` v${VERSION}`),
rgb(` v${VERSION}`, [170, 235, 255]),
rgb(" · ", [80, 100, 130]),
rgb("萌芽运维开发助手", [190, 170, 255]),
].join(""),
];
}
@@ -134,16 +137,13 @@ export default function (pi: ExtensionAPI) {
divider,
...renderSproutclawLogo(theme, width),
divider,
rgb("萌芽运维开发 Agent 助手", [170, 235, 255]),
"",
rgb("萌芽运维开发Agent助手", [170, 235, 255]),
];
if (expanded) {
lines.push(expandedInstructions);
lines.push("");
lines.push(onboarding);
} else {
lines.push(compactOnboarding);
lines.push("");
lines.push(onboarding);
}
return lines;