@mnemom/mnemom 0.9.1 → 0.11.0

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.
@@ -24,6 +24,10 @@ export declare const fmt: {
24
24
  * Dim label with value
25
25
  */
26
26
  label(key: string, val: string): string;
27
+ /**
28
+ * Dim text (for inline annotations and footnotes).
29
+ */
30
+ dim(text: string): string;
27
31
  /**
28
32
  * Syntax-highlighted JSON output
29
33
  */
@@ -38,6 +38,12 @@ export const fmt = {
38
38
  label(key, val) {
39
39
  return `${chalk.dim(key)} ${val}`;
40
40
  },
41
+ /**
42
+ * Dim text (for inline annotations and footnotes).
43
+ */
44
+ dim(text) {
45
+ return chalk.dim(text);
46
+ },
41
47
  /**
42
48
  * Syntax-highlighted JSON output
43
49
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mnemom/mnemom",
3
- "version": "0.9.1",
3
+ "version": "0.11.0",
4
4
  "description": "Transparent AI agent tracing",
5
5
  "type": "module",
6
6
  "bin": {