agent-sin 0.1.10 → 0.1.11
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/CHANGELOG.md +8 -0
- package/dist/cli/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,14 @@ See the [compatibility policy](https://agent.shingoirie.com/versioning) for deta
|
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
18
|
+
## [0.1.11] — 2026-05-14
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- The interactive startup banner now uses a plain `AGENT-SIN` wordmark on Windows. The previous half-block terminal logo could render slightly misaligned in Windows Terminal depending on font and line-height settings.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
18
26
|
## [0.1.10] — 2026-05-14
|
|
19
27
|
|
|
20
28
|
### Fixed
|
package/dist/cli/index.js
CHANGED
|
@@ -1347,9 +1347,10 @@ function renderStartupBanner(state) {
|
|
|
1347
1347
|
const accent = (text) => paintCode(BRAND_GREEN_ANSI, text, ctx);
|
|
1348
1348
|
const dot = dim(glyph("dot", ctx));
|
|
1349
1349
|
const modelDisplay = resolveDisplayModel(state);
|
|
1350
|
-
if (ctx.ascii) {
|
|
1350
|
+
if (ctx.ascii || process.platform === "win32") {
|
|
1351
1351
|
return [
|
|
1352
1352
|
"",
|
|
1353
|
+
` ${accent("AGENT-SIN")}`,
|
|
1353
1354
|
` ${bold("agent-sin")} ${dim("v" + AGENT_SIN_VERSION)} ${dot} ${dim("model:")} ${modelDisplay}`,
|
|
1354
1355
|
` ${dim("/help · /reset · /exit")}`,
|
|
1355
1356
|
"",
|