@legioncodeinc/honeycomb 0.1.0 → 0.1.5

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 (41) hide show
  1. package/.claude-plugin/marketplace.json +18 -18
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/LICENSE +661 -661
  4. package/README.md +268 -268
  5. package/assets/logos/honeycomb-memory-cluster.svg +17 -17
  6. package/assets/readme.md +117 -117
  7. package/assets/styles.css +11 -11
  8. package/assets/tokens/base.css +76 -76
  9. package/assets/tokens/colors.css +111 -111
  10. package/assets/tokens/fonts.css +32 -32
  11. package/assets/tokens/spacing.css +48 -48
  12. package/assets/tokens/typography.css +38 -38
  13. package/bundle/cli.js +9 -4
  14. package/daemon/index.js +33 -5
  15. package/embeddings/embed-daemon.js +1 -1
  16. package/harnesses/claude-code/.claude-plugin/plugin.json +1 -1
  17. package/harnesses/claude-code/bundle/capture.js +0 -0
  18. package/harnesses/claude-code/bundle/index.js +0 -0
  19. package/harnesses/claude-code/bundle/pre-tool-use.js +0 -0
  20. package/harnesses/claude-code/bundle/session-end.js +0 -0
  21. package/harnesses/claude-code/bundle/session-start.js +0 -0
  22. package/harnesses/claude-code/hooks/hooks.json +86 -86
  23. package/harnesses/codex/bundle/capture.js +0 -0
  24. package/harnesses/codex/bundle/index.js +0 -0
  25. package/harnesses/codex/bundle/pre-tool-use.js +0 -0
  26. package/harnesses/codex/bundle/session-start.js +0 -0
  27. package/harnesses/codex/package.json +1 -1
  28. package/harnesses/cursor/bundle/capture.js +0 -0
  29. package/harnesses/cursor/bundle/index.js +0 -0
  30. package/harnesses/cursor/bundle/pre-tool-use.js +0 -0
  31. package/harnesses/cursor/bundle/session-end.js +0 -0
  32. package/harnesses/cursor/bundle/session-start.js +0 -0
  33. package/harnesses/hermes/bundle/index.js +0 -0
  34. package/harnesses/openclaw/dist/index.js +1 -1
  35. package/harnesses/openclaw/openclaw.plugin.json +1 -1
  36. package/harnesses/openclaw/package.json +1 -1
  37. package/harnesses/pi/bundle/index.js +0 -0
  38. package/mcp/bundle/server.js +1 -1
  39. package/package.json +141 -137
  40. package/scripts/ensure-embed-deps.mjs +67 -67
  41. package/scripts/ensure-tree-sitter.mjs +89 -89
@@ -1,111 +1,111 @@
1
- /* ============================================================
2
- Honeycomb — Color tokens
3
- Dark-native, warm-tinted. Inherits the Legion Code structure
4
- (5 surfaces, 4 text levels, 3 borders, semantic severity) but
5
- shifts the canvas warm and makes HONEY AMBER the one brand hue.
6
-
7
- Two accents only:
8
- --honey : the brand. Memory, recall, the live comb. Scarcity
9
- rule applies — one saturated honey region per view.
10
- --pollinate : violet. Reserved for the Pollinating consolidation
11
- loop and night/maintenance states. Never decorative.
12
- Use these tokens; never raw hex outside this file.
13
- ============================================================ */
14
-
15
- :root {
16
- /* ---- Surfaces (dark — primary; warm near-black) --------------- */
17
- --bg-canvas: #0C0A07;
18
- --bg-surface: #15120B;
19
- --bg-elevated: #1E1A11;
20
- --bg-subtle: #29231799;
21
- --bg-inset: #070501;
22
-
23
- /* ---- Text (warm off-white on dark) --------------------------- */
24
- --text-primary: #F7F3EC;
25
- --text-secondary: #ADA28F;
26
- --text-tertiary: #877E6C;
27
- --text-disabled: #524B3C;
28
- --text-inverse: #0C0A07;
29
-
30
- /* ---- Borders & dividers (on dark) ---------------------------- */
31
- --border-subtle: #221E15;
32
- --border-default: #322B1E;
33
- --border-strong: #483F2C;
34
-
35
- /* ---- Brand: HONEY AMBER (scarcity rule applies) -------------- */
36
- --honey: #F7A823;
37
- --honey-hover: #FFBA47;
38
- --honey-pressed: #D98C0C;
39
- --honey-subtle: rgba(247, 168, 35, 0.12);
40
- --honey-border: rgba(247, 168, 35, 0.32);
41
- --honey-on: #1A1206; /* ink that sits on a honey fill */
42
-
43
- /* ---- Honey scale (comb cells, heat, data viz) ---------------- */
44
- --honey-50: #FFE9C2;
45
- --honey-100: #FFD894;
46
- --honey-200: #FFC661;
47
- --honey-300: #F7A823;
48
- --honey-400: #D98C0C;
49
- --honey-500: #A86A07;
50
- --honey-600: #6E4604;
51
-
52
- /* ---- Pollinate: VIOLET (the Pollinating loop + night states) -------- */
53
- --pollinate: #8B7CF0;
54
- --pollinate-hover: #A89CF5;
55
- --pollinate-pressed: #6E5DDB;
56
- --pollinate-subtle: rgba(139, 124, 240, 0.14);
57
- --pollinate-border: rgba(139, 124, 240, 0.34);
58
- --pollinate-on: #0B0814;
59
-
60
- /* ---- Severity (semantic; never decorative) ------------------- */
61
- --severity-critical: #FF5C63;
62
- --severity-critical-bg: rgba(255, 92, 99, 0.12);
63
- --severity-warning: #FFC24B;
64
- --severity-warning-bg: rgba(255, 194, 75, 0.12);
65
- --severity-info: #5FA8FF;
66
- --severity-info-bg: rgba(95, 168, 255, 0.12);
67
- --severity-success: #3DDC97; /* verified-green: proven / receipts */
68
- --severity-success-bg: rgba(61, 220, 151, 0.12);
69
-
70
- /* ---- Status accents reused across product -------------------- */
71
- --verified: #3DDC97; /* a proven, source-backed memory */
72
- --verified-subtle: rgba(61, 220, 151, 0.12);
73
- }
74
-
75
- /* ---- Light theme — docs, printed/exported reports only --------- */
76
- :root[data-theme="light"],
77
- .theme-light {
78
- --bg-canvas: #FBF7EF;
79
- --bg-surface: #F5EFE2;
80
- --bg-elevated: #FFFFFF;
81
- --bg-subtle: #EFE7D5;
82
- --bg-inset: #F0E8D8;
83
-
84
- --text-primary: #1A1206;
85
- --text-secondary: #5C513C;
86
- --text-tertiary: #877E6C;
87
- --text-disabled: #B5AC97;
88
- --text-inverse: #FBF7EF;
89
-
90
- --border-subtle: #EAE0CD;
91
- --border-default: #DACFB6;
92
- --border-strong: #C2B594;
93
-
94
- --honey: #B7790A;
95
- --honey-hover: #9A6606;
96
- --honey-pressed: #7E5304;
97
- --honey-subtle: rgba(183, 121, 10, 0.10);
98
- --honey-border: rgba(183, 121, 10, 0.30);
99
- --honey-on: #FFFFFF;
100
-
101
- --pollinate: #6E5DDB;
102
- --pollinate-hover: #5B49C6;
103
- --pollinate-subtle: rgba(110, 93, 219, 0.10);
104
- --pollinate-border: rgba(110, 93, 219, 0.28);
105
-
106
- --severity-critical: #D93741;
107
- --severity-warning: #B5790A;
108
- --severity-info: #2E6FD9;
109
- --severity-success: #18A968;
110
- --verified: #18A968;
111
- }
1
+ /* ============================================================
2
+ Honeycomb — Color tokens
3
+ Dark-native, warm-tinted. Inherits the Legion Code structure
4
+ (5 surfaces, 4 text levels, 3 borders, semantic severity) but
5
+ shifts the canvas warm and makes HONEY AMBER the one brand hue.
6
+
7
+ Two accents only:
8
+ --honey : the brand. Memory, recall, the live comb. Scarcity
9
+ rule applies — one saturated honey region per view.
10
+ --pollinate : violet. Reserved for the Pollinating consolidation
11
+ loop and night/maintenance states. Never decorative.
12
+ Use these tokens; never raw hex outside this file.
13
+ ============================================================ */
14
+
15
+ :root {
16
+ /* ---- Surfaces (dark — primary; warm near-black) --------------- */
17
+ --bg-canvas: #0C0A07;
18
+ --bg-surface: #15120B;
19
+ --bg-elevated: #1E1A11;
20
+ --bg-subtle: #29231799;
21
+ --bg-inset: #070501;
22
+
23
+ /* ---- Text (warm off-white on dark) --------------------------- */
24
+ --text-primary: #F7F3EC;
25
+ --text-secondary: #ADA28F;
26
+ --text-tertiary: #877E6C;
27
+ --text-disabled: #524B3C;
28
+ --text-inverse: #0C0A07;
29
+
30
+ /* ---- Borders & dividers (on dark) ---------------------------- */
31
+ --border-subtle: #221E15;
32
+ --border-default: #322B1E;
33
+ --border-strong: #483F2C;
34
+
35
+ /* ---- Brand: HONEY AMBER (scarcity rule applies) -------------- */
36
+ --honey: #F7A823;
37
+ --honey-hover: #FFBA47;
38
+ --honey-pressed: #D98C0C;
39
+ --honey-subtle: rgba(247, 168, 35, 0.12);
40
+ --honey-border: rgba(247, 168, 35, 0.32);
41
+ --honey-on: #1A1206; /* ink that sits on a honey fill */
42
+
43
+ /* ---- Honey scale (comb cells, heat, data viz) ---------------- */
44
+ --honey-50: #FFE9C2;
45
+ --honey-100: #FFD894;
46
+ --honey-200: #FFC661;
47
+ --honey-300: #F7A823;
48
+ --honey-400: #D98C0C;
49
+ --honey-500: #A86A07;
50
+ --honey-600: #6E4604;
51
+
52
+ /* ---- Pollinate: VIOLET (the Pollinating loop + night states) -------- */
53
+ --pollinate: #8B7CF0;
54
+ --pollinate-hover: #A89CF5;
55
+ --pollinate-pressed: #6E5DDB;
56
+ --pollinate-subtle: rgba(139, 124, 240, 0.14);
57
+ --pollinate-border: rgba(139, 124, 240, 0.34);
58
+ --pollinate-on: #0B0814;
59
+
60
+ /* ---- Severity (semantic; never decorative) ------------------- */
61
+ --severity-critical: #FF5C63;
62
+ --severity-critical-bg: rgba(255, 92, 99, 0.12);
63
+ --severity-warning: #FFC24B;
64
+ --severity-warning-bg: rgba(255, 194, 75, 0.12);
65
+ --severity-info: #5FA8FF;
66
+ --severity-info-bg: rgba(95, 168, 255, 0.12);
67
+ --severity-success: #3DDC97; /* verified-green: proven / receipts */
68
+ --severity-success-bg: rgba(61, 220, 151, 0.12);
69
+
70
+ /* ---- Status accents reused across product -------------------- */
71
+ --verified: #3DDC97; /* a proven, source-backed memory */
72
+ --verified-subtle: rgba(61, 220, 151, 0.12);
73
+ }
74
+
75
+ /* ---- Light theme — docs, printed/exported reports only --------- */
76
+ :root[data-theme="light"],
77
+ .theme-light {
78
+ --bg-canvas: #FBF7EF;
79
+ --bg-surface: #F5EFE2;
80
+ --bg-elevated: #FFFFFF;
81
+ --bg-subtle: #EFE7D5;
82
+ --bg-inset: #F0E8D8;
83
+
84
+ --text-primary: #1A1206;
85
+ --text-secondary: #5C513C;
86
+ --text-tertiary: #877E6C;
87
+ --text-disabled: #B5AC97;
88
+ --text-inverse: #FBF7EF;
89
+
90
+ --border-subtle: #EAE0CD;
91
+ --border-default: #DACFB6;
92
+ --border-strong: #C2B594;
93
+
94
+ --honey: #B7790A;
95
+ --honey-hover: #9A6606;
96
+ --honey-pressed: #7E5304;
97
+ --honey-subtle: rgba(183, 121, 10, 0.10);
98
+ --honey-border: rgba(183, 121, 10, 0.30);
99
+ --honey-on: #FFFFFF;
100
+
101
+ --pollinate: #6E5DDB;
102
+ --pollinate-hover: #5B49C6;
103
+ --pollinate-subtle: rgba(110, 93, 219, 0.10);
104
+ --pollinate-border: rgba(110, 93, 219, 0.28);
105
+
106
+ --severity-critical: #D93741;
107
+ --severity-warning: #B5790A;
108
+ --severity-info: #2E6FD9;
109
+ --severity-success: #18A968;
110
+ --verified: #18A968;
111
+ }
@@ -1,32 +1,32 @@
1
- /* ============================================================
2
- Honeycomb — Webfonts
3
- Inter (UI + prose) and JetBrains Mono (the texture of trust:
4
- memory keys, recall queries, hashes, file paths, timestamps).
5
- Both inherited from the parent Legion Code brand.
6
- ============================================================ */
7
-
8
- /* ---- Inter — variable (opsz + wght axes) ---------------------- */
9
- @font-face {
10
- font-family: 'Inter';
11
- font-style: normal;
12
- font-weight: 100 900;
13
- font-display: swap;
14
- src: url('../logos/fonts/Inter-VariableFont_opsz_wght.ttf') format('truetype-variations'),
15
- url('../logos/fonts/Inter-VariableFont_opsz_wght.ttf') format('truetype');
16
- font-variation-settings: 'opsz' 16;
17
- }
18
- @font-face {
19
- font-family: 'Inter';
20
- font-style: italic;
21
- font-weight: 100 900;
22
- font-display: swap;
23
- src: url('../logos/fonts/Inter-Italic-VariableFont_opsz_wght.ttf') format('truetype-variations'),
24
- url('../logos/fonts/Inter-Italic-VariableFont_opsz_wght.ttf') format('truetype');
25
- font-variation-settings: 'opsz' 16;
26
- }
27
-
28
- /* ---- JetBrains Mono — local static cuts ----------------------- */
29
- @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('../logos/fonts/JetBrainsMono-Regular.woff2') format('woff2'); }
30
- @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('../logos/fonts/JetBrainsMono-Medium.woff2') format('woff2'); }
31
- @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url('../logos/fonts/JetBrainsMono-SemiBold.woff2') format('woff2'); }
32
- @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url('../logos/fonts/JetBrainsMono-Bold.woff2') format('woff2'); }
1
+ /* ============================================================
2
+ Honeycomb — Webfonts
3
+ Inter (UI + prose) and JetBrains Mono (the texture of trust:
4
+ memory keys, recall queries, hashes, file paths, timestamps).
5
+ Both inherited from the parent Legion Code brand.
6
+ ============================================================ */
7
+
8
+ /* ---- Inter — variable (opsz + wght axes) ---------------------- */
9
+ @font-face {
10
+ font-family: 'Inter';
11
+ font-style: normal;
12
+ font-weight: 100 900;
13
+ font-display: swap;
14
+ src: url('../logos/fonts/Inter-VariableFont_opsz_wght.ttf') format('truetype-variations'),
15
+ url('../logos/fonts/Inter-VariableFont_opsz_wght.ttf') format('truetype');
16
+ font-variation-settings: 'opsz' 16;
17
+ }
18
+ @font-face {
19
+ font-family: 'Inter';
20
+ font-style: italic;
21
+ font-weight: 100 900;
22
+ font-display: swap;
23
+ src: url('../logos/fonts/Inter-Italic-VariableFont_opsz_wght.ttf') format('truetype-variations'),
24
+ url('../logos/fonts/Inter-Italic-VariableFont_opsz_wght.ttf') format('truetype');
25
+ font-variation-settings: 'opsz' 16;
26
+ }
27
+
28
+ /* ---- JetBrains Mono — local static cuts ----------------------- */
29
+ @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('../logos/fonts/JetBrainsMono-Regular.woff2') format('woff2'); }
30
+ @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('../logos/fonts/JetBrainsMono-Medium.woff2') format('woff2'); }
31
+ @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url('../logos/fonts/JetBrainsMono-SemiBold.woff2') format('woff2'); }
32
+ @font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url('../logos/fonts/JetBrainsMono-Bold.woff2') format('woff2'); }
@@ -1,48 +1,48 @@
1
- /* ============================================================
2
- Honeycomb — Spacing, radii, elevation, motion
3
- 4px base unit; every value a multiple of 4. Five-step radius
4
- ladder. Subtle elevation only (no decorative shadows). Brief,
5
- disciplined motion. Inherited from Legion Code.
6
- ============================================================ */
7
-
8
- :root {
9
- /* ---- Spacing (4px base) --------------------------------------- */
10
- --space-1: 4px;
11
- --space-2: 8px;
12
- --space-3: 12px;
13
- --space-4: 16px;
14
- --space-5: 20px;
15
- --space-6: 24px;
16
- --space-8: 32px;
17
- --space-10: 40px;
18
- --space-12: 48px;
19
- --space-16: 64px;
20
- --space-20: 80px;
21
- --space-24: 96px;
22
-
23
- /* ---- Radii ---------------------------------------------------- */
24
- --radius-sm: 4px; /* chips, tags */
25
- --radius-md: 8px; /* buttons, inputs */
26
- --radius-lg: 12px; /* cards */
27
- --radius-xl: 16px; /* hero / panels */
28
- --radius-2xl: 20px;
29
- --radius-full: 9999px; /* avatars, dots */
30
-
31
- /* ---- Elevation (subtle; cards carry border, not shadow) ------- */
32
- --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.45);
33
- --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.55);
34
- --shadow-lg: 0 12px 32px -6px rgba(0,0,0,0.65);
35
- /* honey glow — the ONE expressive shadow, for the active comb /
36
- a focused recall hit. Use sparingly. */
37
- --glow-honey: 0 0 0 1px var(--honey-border), 0 8px 28px -10px rgba(247,168,35,0.5);
38
- --glow-pollinate: 0 0 0 1px var(--pollinate-border), 0 8px 28px -10px rgba(139,124,240,0.5);
39
- --ring-focus: 0 0 0 2px var(--bg-canvas), 0 0 0 4px var(--honey);
40
-
41
- /* ---- Motion --------------------------------------------------- */
42
- --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1); /* @kind other */
43
- --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
44
- --dur-fast: 120ms; /* @kind other */
45
- --dur-base: 200ms; /* @kind other */
46
- --dur-slow: 400ms; /* @kind other */
47
- --dur-pollinate: 900ms; /* @kind other */
48
- }
1
+ /* ============================================================
2
+ Honeycomb — Spacing, radii, elevation, motion
3
+ 4px base unit; every value a multiple of 4. Five-step radius
4
+ ladder. Subtle elevation only (no decorative shadows). Brief,
5
+ disciplined motion. Inherited from Legion Code.
6
+ ============================================================ */
7
+
8
+ :root {
9
+ /* ---- Spacing (4px base) --------------------------------------- */
10
+ --space-1: 4px;
11
+ --space-2: 8px;
12
+ --space-3: 12px;
13
+ --space-4: 16px;
14
+ --space-5: 20px;
15
+ --space-6: 24px;
16
+ --space-8: 32px;
17
+ --space-10: 40px;
18
+ --space-12: 48px;
19
+ --space-16: 64px;
20
+ --space-20: 80px;
21
+ --space-24: 96px;
22
+
23
+ /* ---- Radii ---------------------------------------------------- */
24
+ --radius-sm: 4px; /* chips, tags */
25
+ --radius-md: 8px; /* buttons, inputs */
26
+ --radius-lg: 12px; /* cards */
27
+ --radius-xl: 16px; /* hero / panels */
28
+ --radius-2xl: 20px;
29
+ --radius-full: 9999px; /* avatars, dots */
30
+
31
+ /* ---- Elevation (subtle; cards carry border, not shadow) ------- */
32
+ --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.45);
33
+ --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.55);
34
+ --shadow-lg: 0 12px 32px -6px rgba(0,0,0,0.65);
35
+ /* honey glow — the ONE expressive shadow, for the active comb /
36
+ a focused recall hit. Use sparingly. */
37
+ --glow-honey: 0 0 0 1px var(--honey-border), 0 8px 28px -10px rgba(247,168,35,0.5);
38
+ --glow-pollinate: 0 0 0 1px var(--pollinate-border), 0 8px 28px -10px rgba(139,124,240,0.5);
39
+ --ring-focus: 0 0 0 2px var(--bg-canvas), 0 0 0 4px var(--honey);
40
+
41
+ /* ---- Motion --------------------------------------------------- */
42
+ --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1); /* @kind other */
43
+ --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
44
+ --dur-fast: 120ms; /* @kind other */
45
+ --dur-base: 200ms; /* @kind other */
46
+ --dur-slow: 400ms; /* @kind other */
47
+ --dur-pollinate: 900ms; /* @kind other */
48
+ }
@@ -1,38 +1,38 @@
1
- /* ============================================================
2
- Honeycomb — Typography tokens
3
- Inter for UI + prose. JetBrains Mono is the TEXTURE OF TRUST:
4
- every memory key, recall query, session id, hash, file path,
5
- token count, and timestamp is set in mono. Modular 1.25 scale,
6
- 16px base. Inherited from Legion Code.
7
- ============================================================ */
8
-
9
- :root {
10
- /* ---- Families ------------------------------------------------- */
11
- --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
12
- --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
13
-
14
- /* ---- Type scale (size / line-height) -------------------------- */
15
- --text-xs: 12px; --lh-xs: 16px;
16
- --text-sm: 14px; --lh-sm: 20px;
17
- --text-base: 16px; --lh-base: 24px;
18
- --text-lg: 18px; --lh-lg: 28px;
19
- --text-xl: 20px; --lh-xl: 28px;
20
- --text-2xl: 24px; --lh-2xl: 32px;
21
- --text-3xl: 30px; --lh-3xl: 38px;
22
- --text-4xl: 36px; --lh-4xl: 44px;
23
- --text-5xl: 48px; --lh-5xl: 56px;
24
- --text-6xl: 60px; --lh-6xl: 68px;
25
- --text-7xl: 76px; --lh-7xl: 82px;
26
-
27
- /* ---- Weights -------------------------------------------------- */
28
- --weight-regular: 400;
29
- --weight-medium: 500;
30
- --weight-semibold: 600;
31
- --weight-bold: 700;
32
-
33
- /* ---- Tracking ------------------------------------------------- */
34
- --tracking-tight: -0.03em; /* display + headings */
35
- --tracking-snug: -0.01em;
36
- --tracking-normal: 0;
37
- --tracking-wide: 0.08em; /* mono eyebrows / labels */
38
- }
1
+ /* ============================================================
2
+ Honeycomb — Typography tokens
3
+ Inter for UI + prose. JetBrains Mono is the TEXTURE OF TRUST:
4
+ every memory key, recall query, session id, hash, file path,
5
+ token count, and timestamp is set in mono. Modular 1.25 scale,
6
+ 16px base. Inherited from Legion Code.
7
+ ============================================================ */
8
+
9
+ :root {
10
+ /* ---- Families ------------------------------------------------- */
11
+ --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
12
+ --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
13
+
14
+ /* ---- Type scale (size / line-height) -------------------------- */
15
+ --text-xs: 12px; --lh-xs: 16px;
16
+ --text-sm: 14px; --lh-sm: 20px;
17
+ --text-base: 16px; --lh-base: 24px;
18
+ --text-lg: 18px; --lh-lg: 28px;
19
+ --text-xl: 20px; --lh-xl: 28px;
20
+ --text-2xl: 24px; --lh-2xl: 32px;
21
+ --text-3xl: 30px; --lh-3xl: 38px;
22
+ --text-4xl: 36px; --lh-4xl: 44px;
23
+ --text-5xl: 48px; --lh-5xl: 56px;
24
+ --text-6xl: 60px; --lh-6xl: 68px;
25
+ --text-7xl: 76px; --lh-7xl: 82px;
26
+
27
+ /* ---- Weights -------------------------------------------------- */
28
+ --weight-regular: 400;
29
+ --weight-medium: 500;
30
+ --weight-semibold: 600;
31
+ --weight-bold: 700;
32
+
33
+ /* ---- Tracking ------------------------------------------------- */
34
+ --tracking-tight: -0.03em; /* display + headings */
35
+ --tracking-snug: -0.01em;
36
+ --tracking-normal: 0;
37
+ --tracking-wide: 0.08em; /* mono eyebrows / labels */
38
+ }
package/bundle/cli.js CHANGED
@@ -16804,6 +16804,11 @@ async function start(deps, out) {
16804
16804
  out("daemon: started on 127.0.0.1:3850.");
16805
16805
  return { exitCode: 0 };
16806
16806
  }
16807
+ const status3 = await deps.lifecycle.status();
16808
+ if (status3.running) {
16809
+ out(`daemon: starting \u2014 the process is up (pid ${status3.pid ?? "?"}) but has not answered /health within the start budget; it is likely still warming up. Re-check with \`honeycomb daemon status\`.`);
16810
+ return { exitCode: 0 };
16811
+ }
16807
16812
  out("daemon: failed to start (did not become reachable on 127.0.0.1:3850).");
16808
16813
  return { exitCode: 1 };
16809
16814
  }
@@ -16980,7 +16985,7 @@ function appendSent(state, record2) {
16980
16985
 
16981
16986
  // dist/src/daemon/runtime/telemetry/emit.js
16982
16987
  import { arch, platform, release } from "node:os";
16983
- var POSTHOG_KEY = true ? "" : "";
16988
+ var POSTHOG_KEY = true ? "phc_wjWdFZfMRtUATshcoBRkZ3FiSMmAKEuVuP6ftraTCiPz" : "";
16984
16989
  var POSTHOG_HOST = "https://us.i.posthog.com".length > 0 ? "https://us.i.posthog.com" : "https://us.i.posthog.com";
16985
16990
  var POSTHOG_CAPTURE_PATH = "/i/v0/e/";
16986
16991
  function captureUrl(host = POSTHOG_HOST) {
@@ -17042,7 +17047,7 @@ function buildAllowedProperties(input) {
17042
17047
  }
17043
17048
  var systemTelemetryClock = () => (/* @__PURE__ */ new Date()).toISOString();
17044
17049
  var DEFAULT_EMIT_TIMEOUT_MS = 2e3;
17045
- var HONEYCOMB_VERSION = true ? "0.1.0" : "0.0.0-dev";
17050
+ var HONEYCOMB_VERSION = true ? "0.1.5" : "0.0.0-dev";
17046
17051
  async function emitTelemetry(event, opts, deps = {}) {
17047
17052
  const env = deps.env ?? process.env;
17048
17053
  const key = deps.posthogKey ?? POSTHOG_KEY;
@@ -17185,7 +17190,7 @@ function renderGlassBoxText(view) {
17185
17190
  // dist/src/shared/constants.js
17186
17191
  var DAEMON_PORT = 3850;
17187
17192
  var DAEMON_HOST = "127.0.0.1";
17188
- var HONEYCOMB_VERSION2 = true ? "0.1.0" : "0.0.0-dev";
17193
+ var HONEYCOMB_VERSION2 = true ? "0.1.5" : "0.0.0-dev";
17189
17194
  var PRODUCT_SLUG = "honeycomb";
17190
17195
 
17191
17196
  // dist/src/commands/install.js
@@ -19859,7 +19864,7 @@ function resolveDaemonEntry() {
19859
19864
  const devSibling = resolve7(here, "..", "..", "..", "daemon", "index.js");
19860
19865
  return process.env.HONEYCOMB_DAEMON_ENTRY ?? bundledSibling ?? devSibling;
19861
19866
  }
19862
- var DEFAULT_START_TIMEOUT_MS = 8e3;
19867
+ var DEFAULT_START_TIMEOUT_MS = 45e3;
19863
19868
  var START_POLL_INTERVAL_MS = 150;
19864
19869
  function runtimeDir() {
19865
19870
  return join12(homedir12(), ".honeycomb");
package/daemon/index.js CHANGED
@@ -7369,7 +7369,7 @@ var require_dist = __commonJS({
7369
7369
  // dist/src/shared/constants.js
7370
7370
  var DAEMON_PORT = 3850;
7371
7371
  var DAEMON_HOST = "127.0.0.1";
7372
- var HONEYCOMB_VERSION = true ? "0.1.0" : "0.0.0-dev";
7372
+ var HONEYCOMB_VERSION = true ? "0.1.5" : "0.0.0-dev";
7373
7373
 
7374
7374
  // node_modules/zod/v4/classic/external.js
7375
7375
  var external_exports = {};
@@ -26867,6 +26867,14 @@ var DeepLakeJobQueueService = class {
26867
26867
  clock;
26868
26868
  target;
26869
26869
  reaperHandle;
26870
+ /**
26871
+ * Re-entrancy guard for the reaper. A single sweep over a large append-only table
26872
+ * resolves every job id sequentially and can take many seconds; the reaper runs on a
26873
+ * `setInterval`, so without this guard a slow sweep would stack under the interval and
26874
+ * stampede the backend with overlapping scans. A sweep already in flight makes the next
26875
+ * tick a no-op.
26876
+ */
26877
+ reaping = false;
26870
26878
  idSeq = 0;
26871
26879
  constructor(deps) {
26872
26880
  this.storage = deps.storage;
@@ -27219,10 +27227,30 @@ var DeepLakeJobQueueService = class {
27219
27227
  */
27220
27228
  async start() {
27221
27229
  await this.ensureTable();
27222
- await this.reapExpiredLeases();
27223
27230
  this.reaperHandle = this.clock.setTimer(() => {
27224
- void this.reapExpiredLeases();
27231
+ void this.reapSweep();
27225
27232
  }, this.cfg.reaperIntervalMs);
27233
+ void this.reapSweep();
27234
+ }
27235
+ /**
27236
+ * One reaper sweep, guarded against overlap (FR-5). A sweep already in flight makes
27237
+ * this a no-op so a slow scan over a large table cannot stack under the reaper interval
27238
+ * or the boot-time immediate kick. Errors are swallowed to a structured event — a reaper
27239
+ * failure must never crash the daemon (the next tick retries).
27240
+ */
27241
+ async reapSweep() {
27242
+ if (this.reaping)
27243
+ return;
27244
+ this.reaping = true;
27245
+ try {
27246
+ await this.reapExpiredLeases();
27247
+ } catch (err) {
27248
+ this.logger?.event("reaper.sweep.failed", {
27249
+ reason: err instanceof Error ? err.message : String(err)
27250
+ });
27251
+ } finally {
27252
+ this.reaping = false;
27253
+ }
27226
27254
  }
27227
27255
  /** Stop the queue: clear the reaper timer. Idempotent. */
27228
27256
  stop() {
@@ -28175,7 +28203,7 @@ function appendSent(state, record2) {
28175
28203
 
28176
28204
  // dist/src/daemon/runtime/telemetry/emit.js
28177
28205
  import { arch, platform, release } from "node:os";
28178
- var POSTHOG_KEY = true ? "" : "";
28206
+ var POSTHOG_KEY = true ? "phc_wjWdFZfMRtUATshcoBRkZ3FiSMmAKEuVuP6ftraTCiPz" : "";
28179
28207
  var POSTHOG_HOST = "https://us.i.posthog.com".length > 0 ? "https://us.i.posthog.com" : "https://us.i.posthog.com";
28180
28208
  var POSTHOG_CAPTURE_PATH = "/i/v0/e/";
28181
28209
  function captureUrl(host = POSTHOG_HOST) {
@@ -28237,7 +28265,7 @@ function buildAllowedProperties(input) {
28237
28265
  }
28238
28266
  var systemTelemetryClock = () => (/* @__PURE__ */ new Date()).toISOString();
28239
28267
  var DEFAULT_EMIT_TIMEOUT_MS = 2e3;
28240
- var HONEYCOMB_VERSION2 = true ? "0.1.0" : "0.0.0-dev";
28268
+ var HONEYCOMB_VERSION2 = true ? "0.1.5" : "0.0.0-dev";
28241
28269
  async function emitTelemetry(event, opts, deps = {}) {
28242
28270
  const env = deps.env ?? process.env;
28243
28271
  const key = deps.posthogKey ?? POSTHOG_KEY;
@@ -2,7 +2,7 @@
2
2
  import { createServer } from "node:http";
3
3
 
4
4
  // dist/src/shared/constants.js
5
- var HONEYCOMB_VERSION = true ? "0.1.0" : "0.0.0-dev";
5
+ var HONEYCOMB_VERSION = true ? "0.1.5" : "0.0.0-dev";
6
6
 
7
7
  // dist/embeddings/src/index.js
8
8
  var EMBED_DIMS = 768;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "honeycomb",
3
3
  "description": "Honeycomb — persistent memory for Claude Code sessions via the local Honeycomb daemon",
4
- "version": "0.1.0",
4
+ "version": "0.1.5",
5
5
  "author": {
6
6
  "name": "Honeycomb"
7
7
  },
File without changes
File without changes
File without changes
File without changes
File without changes