@mrciphersmith/keryx 0.2.63 → 0.2.64

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.
Files changed (2) hide show
  1. package/dist/cli.js +17 -7
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -53556,7 +53556,7 @@ import { spawnSync as spawnSync2 } from "child_process";
53556
53556
  // package.json
53557
53557
  var package_default = {
53558
53558
  name: "@mrciphersmith/keryx",
53559
- version: "0.2.63",
53559
+ version: "0.2.64",
53560
53560
  description: "Version-controlled project context for AI coding agents: code graph, architecture wiki, project memory, relevant tests, quality signals, and task flows.",
53561
53561
  private: false,
53562
53562
  publishConfig: {
@@ -57939,13 +57939,23 @@ function renderAgentPanel(game, parent, core, renderer, args2) {
57939
57939
  fg: args2.modelBusy ? theme.focus : idle ? theme.text : theme.error
57940
57940
  }));
57941
57941
  parent.add(statusCard);
57942
- const sysLines = game.systemPrompt().split(`
57943
- `);
57944
- const sysShown = sysLines.length > 6 ? [...sysLines.slice(0, 6), `\u2026 (+${sysLines.length - 6} more)`] : sysLines;
57945
- const sysCard = card("game-system-card", { width: "100%", marginTop: 1 });
57942
+ const sysCard = new core.ScrollBoxRenderable(renderer, {
57943
+ id: "game-system-card",
57944
+ width: "100%",
57945
+ flexGrow: 1,
57946
+ minHeight: 0,
57947
+ marginTop: 1,
57948
+ border: true,
57949
+ borderStyle: "rounded",
57950
+ borderColor: theme.border,
57951
+ backgroundColor: theme.panel,
57952
+ paddingLeft: 1,
57953
+ paddingRight: 1,
57954
+ scrollY: true,
57955
+ contentOptions: { flexDirection: "column" }
57956
+ });
57946
57957
  sysCard.add(text({ id: "game-system-title", content: "system prompt", fg: theme.muted }));
57947
- sysCard.add(text({ id: "game-system", content: sysShown.join(`
57948
- `), fg: theme.muted }));
57958
+ sysCard.add(text({ id: "game-system", content: game.systemPrompt(), fg: theme.muted }));
57949
57959
  parent.add(sysCard);
57950
57960
  const lt = args2.lastTurn;
57951
57961
  const tot = args2.totals;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrciphersmith/keryx",
3
- "version": "0.2.63",
3
+ "version": "0.2.64",
4
4
  "description": "Version-controlled project context for AI coding agents: code graph, architecture wiki, project memory, relevant tests, quality signals, and task flows.",
5
5
  "private": false,
6
6
  "publishConfig": {