linear-grab-bridge 0.23.0 → 0.23.1

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.
@@ -28,7 +28,7 @@ const flag = (name, fallback) => {
28
28
  const PORT = Number(flag('--port', '4577'));
29
29
  const DIR = flag('--dir', process.cwd());
30
30
  const CLAUDE_BIN = flag('--claude', 'claude');
31
- const VERSION = '0.23.0';
31
+ const VERSION = '0.23.1';
32
32
 
33
33
  /** Best-effort command runner (git/gh introspection). Never throws. */
34
34
  function run(cmd, args, cwd = DIR) {
@@ -880,9 +880,29 @@ createServer(async (req, res) => {
880
880
  json(res, 500, { error: err instanceof Error ? err.message : String(err) });
881
881
  }
882
882
  }).listen(PORT, '127.0.0.1', () => {
883
- console.log(`linear-grab bridge v${VERSION}`);
884
- console.log(` repo: ${DIR}`);
885
- console.log(` listen: http://127.0.0.1:${PORT} (localhost only)`);
886
- console.log(` tasks run: ${CLAUDE_BIN} -p (interactive stream-json, acceptEdits)`);
883
+ const B = '\x1b[1m';
884
+ const D = '\x1b[2m';
885
+ const C = '\x1b[36m';
886
+ const G = '\x1b[32m';
887
+ const R = '\x1b[0m';
888
+ console.log('');
889
+ console.log(`${B}◆ linear-grab bridge${R} ${D}v${VERSION}${R}`);
890
+ console.log(`${D}──────────────────────────────────────────────────${R}`);
891
+ console.log(` repo ${C}${DIR}${R}`);
892
+ console.log(` listen ${C}http://127.0.0.1:${PORT}${R} ${D}(localhost only)${R}`);
893
+ console.log(` agent ${C}${CLAUDE_BIN} -p${R} ${D}(interactive stream-json)${R}`);
894
+ console.log('');
895
+ console.log(`${B}react-scan telemetry${R} ${D}(when the app loads react-scan-banihani)${R}`);
896
+ console.log(` events ${G}.lineargrab/scan.ndjson${R} ${D}— newest last, gitignored${R}`);
897
+ console.log(` report ${G}curl -s http://127.0.0.1:${PORT}/scan/report${R}`);
898
+ console.log('');
899
+ console.log(`${B}point Claude Code at the render logs${R} — paste one of these:`);
900
+ console.log(` ${D}»${R} Check the live render telemetry: read the newest lines of`);
901
+ console.log(` .lineargrab/scan.ndjson and summarize the slow components.`);
902
+ console.log(` ${D}»${R} curl -s http://127.0.0.1:${PORT}/scan/report ${D}(aggregated view)${R}`);
903
+ console.log(` ${D}tip: add a line to your repo's AGENTS.md/CLAUDE.md so agents find it`);
904
+ console.log(` on their own: "Live render telemetry: .lineargrab/scan.ndjson`);
905
+ console.log(` (react-scan via linear-grab bridge); aggregate: GET /scan/report"${R}`);
906
+ console.log(`${D}──────────────────────────────────────────────────${R}`);
887
907
  loadHistory();
888
908
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linear-grab-bridge",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "description": "Local bridge for Linear Grab — delegate issues from the browser panel to headless Claude Code sessions running in your repo, with live status and an upload relay.",
5
5
  "type": "module",
6
6
  "bin": {