open-think 0.3.1 → 0.3.2

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/index.js +2 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2223,11 +2223,13 @@ async function showMemories(opts) {
2223
2223
  const ts = m.ts.slice(0, 16).replace("T", " ");
2224
2224
  const preview = m.content.length > 80 ? m.content.slice(0, 80) + "..." : m.content;
2225
2225
  console.log(`${chalk13.gray(ts)} ${chalk13.dim(m.author + ":")} ${preview}`);
2226
+ printDecisions(m);
2226
2227
  }
2227
2228
  } else {
2228
2229
  for (const m of memories) {
2229
2230
  const ts = m.ts.slice(0, 16).replace("T", " ");
2230
2231
  console.log(`${chalk13.gray(ts)} ${chalk13.dim(m.author + ":")} ${m.content}`);
2232
+ printDecisions(m);
2231
2233
  }
2232
2234
  }
2233
2235
  console.log(chalk13.dim(`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-think",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "type": "module",
5
5
  "description": "Local-first CLI that gives AI agents persistent, curated memory",
6
6
  "bin": {